Searched refs:PadWithZero (Results 1 – 1 of 1) sorted by relevance
| /llvm-project-15.0.7/compiler-rt/lib/scudo/standalone/ |
| H A D | string_utils.cpp | 29 u8 Base, u8 MinNumberLength, bool PadWithZero, in appendNumber() argument 39 if (Negative && PadWithZero) in appendNumber() 57 char c = (PadWithZero || Pos == 0) ? '0' : ' '; in appendNumber() 60 if (Negative && !PadWithZero) in appendNumber() 72 u8 Base, u8 MinNumberLength, bool PadWithZero, in appendUnsigned() argument 75 PadWithZero, /*Negative=*/false, Upper); in appendUnsigned() 79 u8 MinNumberLength, bool PadWithZero) { in appendSignedDecimal() argument 85 PadWithZero, Negative, /*Upper=*/false); in appendSignedDecimal() 138 const bool PadWithZero = (*Cur == '0'); in formatString() local 165 Res += appendSignedDecimal(&Buffer, BufferEnd, DVal, Width, PadWithZero); in formatString() [all …]
|