Searched defs:pad_with_zero (Results 1 - 1 of 1) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cc43 // on the value of |pad_with_zero|.
45 u8 base, u8 minimal_num_length, bool pad_with_zero,
55 if (negative && pad_with_zero)
73 char c = (pad_with_zero || pos == 0) ? '0' : ' ';
76 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
86 u8 minimal_num_length, bool pad_with_zero) {
88 pad_with_zero, false /* negative */);
92 u8 minimal_num_length, bool pad_with_zero) {
95 minimal_num_length, pad_with_zero, negative);
135 bool pad_with_zero local
44 AppendNumber(char **buff, const char *buff_end, u64 absolute_value, u8 base, u8 minimal_num_length, bool pad_with_zero, bool negative) argument
85 AppendUnsigned(char **buff, const char *buff_end, u64 num, u8 base, u8 minimal_num_length, bool pad_with_zero) argument
91 AppendSignedDecimal(char **buff, const char *buff_end, s64 num, u8 minimal_num_length, bool pad_with_zero) argument
[all...]

Completed in 95 milliseconds