Searched refs:exp_start (Results 1 – 3 of 3) sorted by relevance
/picolibc-latest/newlib/libc/stdio/ |
D | nano-vfscanf_float.c | 51 char *exp_start = NULL; in _scanf_float() local 198 exp_start = p; in _scanf_float() 300 exp_start = p; in _scanf_float() 303 new_exp = strtol ((exp_start + 1), NULL, 10) - exp_adjust; in _scanf_float() 309 if (exp_start >= pdata->buf + BUF - MAX_LONG_LEN) in _scanf_float() 310 exp_start = pdata->buf + BUF - MAX_LONG_LEN - 1; in _scanf_float() 311 sprintf (exp_start, "e%ld", new_exp); in _scanf_float()
|
D | vfwscanf.c | 1295 wchar_t *exp_start = NULL; in _SVFWSCANF() local 1435 exp_start = p; in _SVFWSCANF() 1549 exp_start = p; in _SVFWSCANF() 1552 new_exp = wcstol ((exp_start + 1), NULL, 10) - exp_adjust; in _SVFWSCANF() 1558 if (exp_start >= buf + sizeof (buf) / sizeof (*buf) in _SVFWSCANF() 1560 exp_start = buf + sizeof (buf) / sizeof (*buf) in _SVFWSCANF() 1562 swprintf (exp_start, MAX_LONG_LEN, L"e%ld", new_exp); in _SVFWSCANF()
|
D | vfscanf.c | 1538 char *exp_start = NULL; in _SVFSCANF() local 1744 exp_start = p; in _SVFSCANF() 1900 exp_start = p; in _SVFSCANF() 1903 new_exp = strtol ((exp_start + 1), NULL, 10) - exp_adjust; in _SVFSCANF() 1909 if (exp_start >= buf + sizeof (buf) - MAX_LONG_LEN) in _SVFSCANF() 1910 exp_start = buf + sizeof (buf) - MAX_LONG_LEN - 1; in _SVFSCANF() 1911 sprintf (exp_start, "e%ld", new_exp); in _SVFSCANF()
|