Searched refs:zeroes (Results 1 – 6 of 6) sorted by relevance
/picolibc-latest/newlib/libc/stdio/ |
D | nano-vfscanf_float.c | 50 long zeroes, exp_adjust; in _scanf_float() local 66 zeroes = 0; in _scanf_float() 79 zeroes++; in _scanf_float() 114 if (nancount == 0 && zeroes == 0 in _scanf_float() 143 if (infcount == 0 && zeroes == 0 in _scanf_float() 185 leading_zeroes = zeroes; in _scanf_float() 193 || ((pdata->flags & EXPOK) && zeroes)) in _scanf_float() 197 exp_adjust = zeroes - leading_zeroes; in _scanf_float() 202 zeroes = 0; in _scanf_float() 219 if (zeroes) in _scanf_float() [all …]
|
D | vfscanf.c | 1537 long zeroes, exp_adjust; in _SVFSCANF() local 1557 zeroes = 0; in _SVFSCANF() 1572 zeroes++; in _SVFSCANF() 1616 && zeroes == 1) in _SVFSCANF() 1624 zeroes = 0; in _SVFSCANF() 1639 if (nancount == 0 && zeroes == 0 in _SVFSCANF() 1673 if (infcount == 0 && zeroes == 0 in _SVFSCANF() 1739 || ((flags & EXPOK) && zeroes)) in _SVFSCANF() 1743 exp_adjust = zeroes - leading_zeroes; in _SVFSCANF() 1749 zeroes = 0; in _SVFSCANF() [all …]
|
D | vfwscanf.c | 1294 long zeroes, exp_adjust; in _SVFWSCANF() local 1310 zeroes = 0; in _SVFWSCANF() 1325 zeroes++; in _SVFWSCANF() 1360 if (nancount == 0 && zeroes == 0 in _SVFWSCANF() 1388 if (infcount == 0 && zeroes == 0 in _SVFWSCANF() 1430 || ((flags & EXPOK) && zeroes)) in _SVFWSCANF() 1434 exp_adjust = zeroes - leading_zeroes; in _SVFWSCANF() 1440 zeroes = 0; in _SVFWSCANF() 1448 leading_zeroes = zeroes; in _SVFWSCANF() 1462 if (zeroes) in _SVFWSCANF() [all …]
|
D | vfwprintf.c | 429 static const wchar_t zeroes[PADSIZE] = in VFWPRINTF() local 1421 PAD (width - realsz, zeroes); in VFWPRINTF() 1424 PAD (dprec - size, zeroes); in VFWPRINTF() 1437 PAD (ndig - 1, zeroes); in VFWPRINTF() 1443 PAD (-expt, zeroes); in VFWPRINTF() 1449 lead, zeroes); in VFWPRINTF() 1462 *grouping, zeroes); in VFWPRINTF() 1472 ndig - expt, zeroes); in VFWPRINTF() 1484 PAD (ndig - 1, zeroes); in VFWPRINTF()
|
D | vfprintf.c | 461 static const char zeroes[PADSIZE] = in VFPRINTF() local 1443 PAD (width - realsz, zeroes); in VFPRINTF() 1446 PAD (dprec - size, zeroes); in VFPRINTF() 1459 PAD (ndig - 1, zeroes); in VFPRINTF() 1465 PAD (-expt, zeroes); in VFPRINTF() 1471 lead, zeroes); in VFPRINTF() 1484 *grouping, zeroes); in VFPRINTF() 1494 ndig - expt, zeroes); in VFPRINTF() 1505 PAD (ndig - 1, zeroes); in VFPRINTF()
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 7238 zeroes. 13969 (__svfscanf_r): In integer conversions, leave out leading zeroes 13972 zeroes against width till the truncation has been compensated for. 14019 (__svfscanf_r): In integer conversions, leave out leading zeroes 14022 zeroes against width till the truncation has been compensated for. 19983 are padding zeroes (expt) in addition to any digits (ndig) to 20859 of using buffer contents which throw away leading zeroes. 20944 of leading zeroes. 21339 insert zeroes after significant digits. 21897 * libc/stdio/vfprintf.c (_vfprintf_r): Defined arrays 'blanks' and 'zeroes'
|