Searched refs:zeroes (Results 1 – 2 of 2) sorted by relevance
/bionic/libc/stdio/ |
D | vfwprintf.cpp | 111 static CHAR_TYPE zeroes[PADSIZE] = { in FUNCTION_NAME() local 613 if ((flags & (LADJUST | ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes); in FUNCTION_NAME() 616 PAD(dprec - size, zeroes); in FUNCTION_NAME() 625 PRINT(zeroes, 1); in FUNCTION_NAME() 627 PAD(-expt, zeroes); in FUNCTION_NAME() 631 PRINTANDPAD(cp, convbuf + ndig, lead, zeroes); in FUNCTION_NAME() 635 PRINTANDPAD(cp, convbuf + ndig, prec, zeroes); in FUNCTION_NAME() 642 PAD(prec - ndig, zeroes); in FUNCTION_NAME()
|
D | vfprintf.cpp | 111 static CHAR_TYPE zeroes[PADSIZE] = { in FUNCTION_NAME() local 624 if ((flags & (LADJUST | ZEROPAD)) == ZEROPAD) PAD(width - realsz, zeroes); in FUNCTION_NAME() 627 PAD(dprec - size, zeroes); in FUNCTION_NAME() 636 PRINT(zeroes, 1); in FUNCTION_NAME() 638 PAD(-expt, zeroes); in FUNCTION_NAME() 642 PRINTANDPAD(cp, dtoaend, lead, zeroes); in FUNCTION_NAME() 646 PRINTANDPAD(cp, dtoaend, prec, zeroes); in FUNCTION_NAME() 653 PAD(prec - ndig, zeroes); in FUNCTION_NAME()
|