Searched refs:resll (Results 1 – 2 of 2) sorted by relevance
| /picolibc-latest/newlib/libc/stdio/ |
| D | vfwscanf.c | 1238 unsigned long long resll; in _SVFWSCANF() local 1239 resll = wcstoull (buf, (wchar_t **) NULL, base); in _SVFWSCANF() 1240 *vp = (void *) (uintptr_t) resll; in _SVFWSCANF() 1266 unsigned long long resll; in _SVFWSCANF() local 1268 resll = wcstoull (buf, (wchar_t **) NULL, base); in _SVFWSCANF() 1270 resll = wcstoll (buf, (wchar_t **) NULL, base); in _SVFWSCANF() 1272 *llp = resll; in _SVFWSCANF()
|
| D | vfscanf.c | 1481 u_long_long resll; in _SVFSCANF() local 1482 resll = strtoull (buf, (char **) NULL, base); in _SVFSCANF() 1483 *vp = (void *) (uintptr_t) resll; in _SVFSCANF() 1509 u_long_long resll; in _SVFSCANF() local 1511 resll = strtoull (buf, (char **) NULL, base); in _SVFSCANF() 1513 resll = strtoll (buf, (char **) NULL, base); in _SVFSCANF() 1515 *llp = resll; in _SVFSCANF()
|