Home
last modified time | relevance | path

Searched refs:uintmax_t (Results 1 – 9 of 9) sorted by relevance

/picolibc-latest/newlib/libc/stdlib/
Dwcstoumax.c55 uintmax_t
60 uintmax_t acc; in wcstoumax_l()
62 uintmax_t cutoff; in wcstoumax_l()
114 acc += (uintmax_t) c; in wcstoumax_l()
130 uintmax_t
Dstrtoumax.c56 uintmax_t
61 uintmax_t acc; in strtoumax_l()
63 uintmax_t cutoff; in strtoumax_l()
127 uintmax_t
Dstrtoimax.c61 uintmax_t acc = 0; in strtoimax_l()
63 uintmax_t cutoff; in strtoimax_l()
112 cutoff = neg ? -(uintmax_t)INTMAX_MIN : INTMAX_MAX; in strtoimax_l()
Dwcstoimax.c61 uintmax_t acc; in wcstoimax_l()
63 uintmax_t cutoff; in wcstoimax_l()
92 cutoff = neg ? -(uintmax_t)INTMAX_MIN : INTMAX_MAX; in wcstoimax_l()
/picolibc-latest/newlib/libc/tinystdio/
Dstrtoumax.c33 #define strtoi_type uintmax_t
Dstrtoimax.c34 #define strtoi_utype uintmax_t
/picolibc-latest/newlib/libc/include/sys/
D_stdint.h70 typedef __uintmax_t uintmax_t; typedef
/picolibc-latest/newlib/libc/include/
Dinttypes.h329 uintmax_t strtoumax(const char *__restrict, char **__restrict, int);
331 uintmax_t wcstoumax(const _wchar_t *__restrict, _wchar_t **__restrict, int);
335 uintmax_t strtoumax_l(const char *__restrict, char **_restrict, int, locale_t);
337 uintmax_t wcstoumax_l(const _wchar_t *__restrict, _wchar_t **_restrict, int, locale_t);
/picolibc-latest/newlib/
DChangeLog-201512545 Use __UINTMAX_TYPE__ to derive uintmax_t.