Home | History | Annotate | Download | only in sanitizer_common

Lines Matching refs:AppendChar

32 static int AppendChar(char **buff, const char *buff_end, char c) {
55 result += AppendChar(buff, buff_end, '-');
73 result += AppendChar(buff, buff_end, c);
75 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
78 result += AppendChar(buff, buff_end, (digit < 10) ? '0' + digit
102 result += AppendChar(buff, buff_end, *s);
126 result += AppendChar(&buff, buff_end, *cur);
175 result += AppendChar(&buff, buff_end, va_arg(args, int));
180 result += AppendChar(&buff, buff_end, '%');
189 AppendChar(&buff, buff_end + 1, '\0');