reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/scudo/standalone/string_utils.cpp
   44     RAW_CHECK_MSG(static_cast<uptr>(Pos) < MaxLen,
   46     NumBuffer[Pos++] = static_cast<uptr>(AbsoluteValue % Base);
   49   if (Pos < MinNumberLength) {
   50     memset(&NumBuffer[Pos], 0,
   51            sizeof(NumBuffer[0]) * static_cast<uptr>(MinNumberLength - Pos));
   52     Pos = MinNumberLength;
   54   RAW_CHECK(Pos > 0);
   55   Pos--;
   56   for (; Pos >= 0 && NumBuffer[Pos] == 0; Pos--) {
   56   for (; Pos >= 0 && NumBuffer[Pos] == 0; Pos--) {
   56   for (; Pos >= 0 && NumBuffer[Pos] == 0; Pos--) {
   57     char c = (PadWithZero || Pos == 0) ? '0' : ' ';
   62   for (; Pos >= 0; Pos--) {
   62   for (; Pos >= 0; Pos--) {
   63     char Digit = static_cast<char>(NumBuffer[Pos]);