Searched refs:buff_end (Results 1 - 1 of 1) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cc33 static int AppendChar(char **buff, const char *buff_end, char c) { argument
34 if (*buff < buff_end) {
44 static int AppendNumber(char **buff, const char *buff_end, u64 absolute_value, argument
56 result += AppendChar(buff, buff_end, '-');
74 result += AppendChar(buff, buff_end, c);
76 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
79 result += AppendChar(buff, buff_end, (digit < 10) ? '0' + digit
85 static int AppendUnsigned(char **buff, const char *buff_end, u64 num, u8 base, argument
87 return AppendNumber(buff, buff_end, num, base, minimal_num_length,
91 static int AppendSignedDecimal(char **buff, const char *buff_end, s6 argument
98 AppendString(char **buff, const char *buff_end, int precision, const char *s) argument
111 AppendPointer(char **buff, const char *buff_end, u64 ptr_value) argument
125 const char *buff_end = &buff[buff_length - 1]; local
[all...]

Completed in 195 milliseconds