Searched refs:zeroes (Results 1 – 2 of 2) sorted by relevance
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | vfwprintf.c | 344 static wchar_t zeroes[PADSIZE] = in __vfwprintf() local 984 PAD(width - realsz, zeroes); in __vfwprintf() 987 PAD(dprec - size, zeroes); in __vfwprintf() 998 PRINT(zeroes, 1); in __vfwprintf() 1001 PAD(-expt, zeroes); in __vfwprintf() 1006 lead, zeroes); in __vfwprintf() 1011 PRINTANDPAD(cp, convbuf + ndig, prec, zeroes); in __vfwprintf() 1018 PAD(prec - ndig, zeroes); in __vfwprintf()
|
D | vfprintf.c | 346 static char zeroes[PADSIZE] = in __vfprintf() local 1008 PAD(width - realsz, zeroes); in __vfprintf() 1011 PAD(dprec - size, zeroes); in __vfprintf() 1022 PRINT(zeroes, 1); in __vfprintf() 1025 PAD(-expt, zeroes); in __vfprintf() 1029 PRINTANDPAD(cp, dtoaend, lead, zeroes); in __vfprintf() 1034 PRINTANDPAD(cp, dtoaend, prec, zeroes); in __vfprintf() 1041 PAD(prec - ndig, zeroes); in __vfprintf()
|