Searched defs:AppendChar (Results 1 - 2 of 2) sorted by path

/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_printf.cpp30 static int AppendChar(char **buff, const char *buff_end, char c) { function in namespace:__sanitizer
48 RAW_CHECK(minimal_num_length < kMaxLen); int result = 0; if (negative && minimal_num_length) --minimal_num_length; if (negative && pad_with_zero) result += AppendChar(buff, buff_end, �); uptr num_buffer[kMaxLen]; int pos = 0; do { RAW_CHECK_MSG((uptr)pos < kMaxLen, �); num_buffer[pos++] = absolute_value % base; absolute_value /= base; } while (absolute_value > 0); if (pos < minimal_num_length) { internal_memset(&num_buffer[pos], 0, sizeof(num_buffer[0]) * (minimal_num_length - pos)); pos = minimal_num_length; } RAW_CHECK(pos > 0); pos--; for (; pos >= 0 && num_buffer[pos] == 0; pos--) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp277 void FormatEntity::Entry::AppendChar(char ch) { function in class:FormatEntity::Entry
[all...]

Completed in 109 milliseconds