Home
last modified time | relevance | path

Searched refs:PadWithZero (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp21 bool PadWithZero, bool Negative, bool Upper) { in appendNumber() argument
29 if (Negative && PadWithZero) { in appendNumber()
48 char c = (PadWithZero || Pos == 0) ? '0' : ' '; in appendNumber()
51 if (Negative && !PadWithZero) in appendNumber()
62 bool PadWithZero, bool Upper) { in appendUnsigned() argument
63 appendNumber(Num, Base, MinNumberLength, PadWithZero, /*Negative=*/false, in appendUnsigned()
68 bool PadWithZero) { in appendSignedDecimal() argument
73 appendNumber(UnsignedNum, 10, MinNumberLength, PadWithZero, Negative, in appendSignedDecimal()
128 const bool PadWithZero = (*Cur == '0'); in vappend() local
155 appendSignedDecimal(DVal, Width, PadWithZero); in vappend()
[all …]
H A Dstring_utils.h36 bool PadWithZero, bool Negative, bool Upper);
37 void appendUnsigned(u64 Num, u8 Base, u8 MinNumberLength, bool PadWithZero,
39 void appendSignedDecimal(s64 Num, u8 MinNumberLength, bool PadWithZero);