Lines Matching refs:zeroFill
112 void formatInt(long long x, char *buf, int bufSize, bool zeroFill, int width, int base, const char …
114 void formatUInt(unsigned long long x, char *buf, int bufSize, bool zeroFill, int width, int base, c…
161 bool reverseAlign, zeroFill; in appendfv() local
201 zeroFill = *p0 == '0'; in appendfv()
311 formatInt(arg.i, buf, sizeof(buf), zeroFill, width, 10, &str, &len); in appendfv()
314 formatInt(arg.i, buf, sizeof(buf), zeroFill, width, 16, &str, &len); in appendfv()
317 formatInt(arg.i, buf, sizeof(buf), zeroFill, width, 16, &str, &len, true); in appendfv()
320 formatInt(arg.i, buf, sizeof(buf), zeroFill, width, 8, &str, &len); in appendfv()
323 formatInt(arg.i, buf, sizeof(buf), zeroFill, width, 2, &str, &len); in appendfv()
326 formatUInt(arg.ui, buf, sizeof(buf), zeroFill, width, 10, &str, &len); in appendfv()
329 formatUInt(arg.ui, buf, sizeof(buf), zeroFill, width, 16, &str, &len); in appendfv()
332 formatUInt(arg.ui, buf, sizeof(buf), zeroFill, width, 16, &str, &len, true); in appendfv()
335 formatUInt(arg.ui, buf, sizeof(buf), zeroFill, width, 8, &str, &len); in appendfv()
338 formatUInt(arg.ui, buf, sizeof(buf), zeroFill, width, 2, &str, &len); in appendfv()
341 formatInt(arg.l, buf, sizeof(buf), zeroFill, width, 10, &str, &len); in appendfv()
344 formatInt(arg.l, buf, sizeof(buf), zeroFill, width, 16, &str, &len); in appendfv()
347 formatInt(arg.l, buf, sizeof(buf), zeroFill, width, 16, &str, &len, true); in appendfv()
350 formatInt(arg.l, buf, sizeof(buf), zeroFill, width, 8, &str, &len); in appendfv()
353 formatInt(arg.l, buf, sizeof(buf), zeroFill, width, 2, &str, &len); in appendfv()
356 formatUInt(arg.ul, buf, sizeof(buf), zeroFill, width, 10, &str, &len); in appendfv()
359 formatUInt(arg.ul, buf, sizeof(buf), zeroFill, width, 16, &str, &len); in appendfv()
362 formatUInt(arg.ul, buf, sizeof(buf), zeroFill, width, 16, &str, &len, true); in appendfv()
365 formatUInt(arg.ul, buf, sizeof(buf), zeroFill, width, 8, &str, &len); in appendfv()
368 formatUInt(arg.ul, buf, sizeof(buf), zeroFill, width, 2, &str, &len); in appendfv()
371 formatInt(arg.ll, buf, sizeof(buf), zeroFill, width, 10, &str, &len); in appendfv()
374 formatInt(arg.ll, buf, sizeof(buf), zeroFill, width, 16, &str, &len); in appendfv()
377 formatInt(arg.ll, buf, sizeof(buf), zeroFill, width, 16, &str, &len, true); in appendfv()
380 formatInt(arg.ll, buf, sizeof(buf), zeroFill, width, 8, &str, &len); in appendfv()
383 formatInt(arg.ll, buf, sizeof(buf), zeroFill, width, 2, &str, &len); in appendfv()
386 formatUInt(arg.ull, buf, sizeof(buf), zeroFill, width, 10, &str, &len); in appendfv()
389 formatUInt(arg.ull, buf, sizeof(buf), zeroFill, width, 16, &str, &len); in appendfv()
392 formatUInt(arg.ull, buf, sizeof(buf), zeroFill, width, 16, &str, &len, true); in appendfv()
395 formatUInt(arg.ull, buf, sizeof(buf), zeroFill, width, 8, &str, &len); in appendfv()
398 formatUInt(arg.ull, buf, sizeof(buf), zeroFill, width, 2, &str, &len); in appendfv()
478 void formatInt(long long x, char *buf, int bufSize, bool zeroFill, int width, int base, const char … in formatInt() argument
500 if (zeroFill) { in formatInt()
512 void formatUInt(unsigned long long x, char *buf, int bufSize, bool zeroFill, int width, int base, c… in formatUInt() argument
526 if (zeroFill) { in formatUInt()