HomeSort by: relevance | last modified time | path
    Searched defs:pad_with_zero (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_printf.cc 41 // on the value of |pad_with_zero|.
43 u8 base, u8 minimal_num_length, bool pad_with_zero,
53 if (negative && pad_with_zero)
71 char c = (pad_with_zero || pos == 0) ? '0' : ' ';
74 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
84 u8 minimal_num_length, bool pad_with_zero,
87 pad_with_zero, false /* negative */, uppercase);
91 u8 minimal_num_length, bool pad_with_zero) {
94 minimal_num_length, pad_with_zero, negative,
125 true /* pad_with_zero */, false /* uppercase */)
149 bool pad_with_zero = (*cur == '0'); local in function:__sanitizer::VSNPrintf
    [all...]
sanitizer_printf.cc 41 // on the value of |pad_with_zero|.
43 u8 base, u8 minimal_num_length, bool pad_with_zero,
53 if (negative && pad_with_zero)
71 char c = (pad_with_zero || pos == 0) ? '0' : ' ';
74 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
84 u8 minimal_num_length, bool pad_with_zero,
87 pad_with_zero, false /* negative */, uppercase);
91 u8 minimal_num_length, bool pad_with_zero) {
94 minimal_num_length, pad_with_zero, negative,
125 true /* pad_with_zero */, false /* uppercase */)
149 bool pad_with_zero = (*cur == '0'); local in function:__sanitizer::VSNPrintf
    [all...]

Completed in 81 milliseconds