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

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_printf.cc 31 static int AppendChar(char **buff, const char *buff_end, char c) {
54 result += AppendChar(buff, buff_end, '-');
72 result += AppendChar(buff, buff_end, c);
74 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
78 result += AppendChar(buff, buff_end, digit);
112 result += AppendChar(buff, buff_end, *s);
116 result += AppendChar(buff, buff_end, ' ');
141 result += AppendChar(&buff, buff_end, *cur);
207 result += AppendChar(&buff, buff_end, va_arg(args, int));
212 result += AppendChar(&buff, buff_end, '%')
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_printf.cpp 30 static int AppendChar(char **buff, const char *buff_end, char c) {
53 result += AppendChar(buff, buff_end, '-');
71 result += AppendChar(buff, buff_end, c);
73 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
77 result += AppendChar(buff, buff_end, digit);
111 result += AppendChar(buff, buff_end, *s);
115 result += AppendChar(buff, buff_end, ' ');
140 result += AppendChar(&buff, buff_end, *cur);
208 result += AppendChar(&buff, buff_end, va_arg(args, int));
213 result += AppendChar(&buff, buff_end, '%')
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_printf.cpp 30 static int AppendChar(char **buff, const char *buff_end, char c) {
53 result += AppendChar(buff, buff_end, '-');
71 result += AppendChar(buff, buff_end, c);
73 if (negative && !pad_with_zero) result += AppendChar(buff, buff_end, '-');
77 result += AppendChar(buff, buff_end, digit);
111 result += AppendChar(buff, buff_end, *s);
115 result += AppendChar(buff, buff_end, ' ');
140 result += AppendChar(&buff, buff_end, *cur);
208 result += AppendChar(&buff, buff_end, va_arg(args, int));
213 result += AppendChar(&buff, buff_end, '%')
    [all...]

Completed in 58 milliseconds