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
   64     Digit = static_cast<char>((Digit < 10) ? '0' + Digit
   64     Digit = static_cast<char>((Digit < 10) ? '0' + Digit
   64     Digit = static_cast<char>((Digit < 10) ? '0' + Digit
   65                                            : (Upper ? 'A' : 'a') + Digit - 10);
   66     Res += appendChar(Buffer, BufferEnd, Digit);