Home
last modified time | relevance | path

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

/bionic/tests/headers/posix/
Dinttypes_h.c47 FUNCTION(strtoumax, uintmax_t (*f)(const char*, char**, int)); in inttypes_h()
49 FUNCTION(wcstoumax, uintmax_t (*f)(const wchar_t*, wchar_t**, int)); in inttypes_h()
Dstdint_h.c66 TYPE(uintmax_t); in stdint_h()
/bionic/libc/tzcode/
Ddifftime.c39 if (sizeof(time_t) <= sizeof(uintmax_t)) { in difftime()
40 uintmax_t t1 = time1, t0 = time0; in difftime()
Dprivate.h346 typedef unsigned long long uintmax_t; typedef
348 typedef unsigned long uintmax_t; typedef
Dstrftime.c391 uintmax_t n = mkt; in _fmt()
/bionic/libc/bionic/
Dstrtol.cpp227 uintmax_t strtoumax(const char* s, char** end, int base) { in strtoumax()
228 return StrToU<uintmax_t, UINTMAX_MAX, char>(s, end, base); in strtoumax()
231 uintmax_t wcstoumax(const wchar_t* s, wchar_t** end, int base) { in wcstoumax()
232 return StrToU<uintmax_t, UINTMAX_MAX, wchar_t>(s, end, base); in wcstoumax()
Dndk_cruft.cpp150 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n) { in strntoumax()
154 uintmax_t v = 0; in strntoumax()
/bionic/libc/include/
Dinttypes.h333 uintmax_t strtoumax(const char* _Nonnull __s, char* _Nullable * _Nullable __end_ptr, int __base);
335 uintmax_t wcstoumax(const wchar_t* _Nonnull __s, wchar_t* _Nullable * _Nullable __end_ptr, int __ba…
Dstdint.h103 typedef uint64_t uintmax_t; typedef
/bionic/libc/stdio/
Dprintf_common.h68 uintmax_t uintmaxarg;
250 ((uintmax_t)(flags & MAXINT \
251 ? GETARG(uintmax_t) \
627 (*argtable)[n].uintmaxarg = va_arg(ap, uintmax_t); in __find_arguments()
Dvfwscanf.cpp581 uintmax_t res; in __vfwscanf()
Dvfwprintf.cpp83 uintmax_t _umax; /* integer arguments %[diouxX] */ in FUNCTION_NAME()
Dvfprintf.cpp83 uintmax_t _umax; /* integer arguments %[diouxX] */ in FUNCTION_NAME()
Dvfscanf.cpp670 uintmax_t res; in __svfscanf()
/bionic/libc/include/bits/
Dstdatomic.h197 typedef _Atomic(uintmax_t) atomic_uintmax_t;