Lines Matching refs:format
95 int msvc_snprintf(char* s, size_t n, const char* format, ...);
96 int msvc_vsnprintf(char* s, size_t n, const char* format, va_list arg);
5997 int msvc_vsnprintf(char* s, size_t n, const char* format, va_list arg) {
5999 return _vscprintf(format, arg);
6001 int ret = _vsnprintf_s(s, n, _TRUNCATE, format, arg);
6003 ret = _vscprintf(format, arg);
6008 int msvc_snprintf(char* s, size_t n, const char* format, ...) {
6010 va_start(arg, format);
6011 int ret = msvc_vsnprintf(s, n, format, arg);
8554 * OPT: This is not optimized at all. It uses printf() which parses the format
9117 /* For encoding Any value field in binary format. */
9121 /* For decoding Any value field in json format. */
12397 ** This currently uses snprintf() to format primitives, and could be optimized
12566 /* Helpers that format floating point values according to our custom formats.