Searched refs:uintmax_t (Results 1 - 13 of 13) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/locale/
H A Dwcstoumax.c15 typedef uintmax_t uint_type;
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
H A Dstrtoumax.c36 * Convert a string to a uintmax_t.
41 uintmax_t
45 uintmax_t acc, cutoff;
80 cutoff = UINTMAX_MAX / (uintmax_t)base;
81 cutlim = UINTMAX_MAX % (uintmax_t)base;
99 acc *= (uintmax_t)base;
/bionic/libc/tzcode/
H A Ddifftime.c36 /* Use uintmax_t if wide enough. */
37 if (sizeof (time_t) <= sizeof (uintmax_t)) {
38 uintmax_t t1 = time1, t0 = time0;
50 ** The values have opposite signs and uintmax_t is too narrow.
H A Dprivate.h256 typedef unsigned long long uintmax_t; typedef
258 typedef unsigned long uintmax_t; typedef
H A Dstrftime.c344 (uintmax_t) mkt);
/bionic/libc/include/
H A Dinttypes.h120 #define PRIuMAX "ju" /* uintmax_t */
138 #define PRIxMAX "jx" /* uintmax_t */
156 #define PRIXMAX "jX" /* uintmax_t */
212 #define SCNoMAX "jo" /* uintmax_t */
230 #define SCNuMAX "ju" /* uintmax_t */
248 #define SCNxMAX "jx" /* uintmax_t */
260 uintmax_t strtoumax(const char *, char **, int);
263 uintmax_t wcstoumax(const wchar_t * __restrict,
H A Dstdint.h102 typedef uint64_t uintmax_t; typedef
H A Dstdatomic.h392 typedef _Atomic(uintmax_t) atomic_uintmax_t;
/bionic/libc/bionic/
H A Dndk_cruft.cpp146 uintmax_t strntoumax(const char *nptr, char **endptr, int base, size_t n) {
150 uintmax_t v = 0;
/bionic/libc/upstream-openbsd/lib/libc/stdio/
H A Dvfprintf.c69 uintmax_t uintmaxarg;
226 * conservative overestimate even for a 128-bit uintmax_t.
314 uintmax_t _umax; /* integer arguments %[diouxX] */
323 char buf[BUF]; /* buffer with space for digits of uintmax_t */
400 ((uintmax_t)(flags&MAXINT ? GETARG(uintmax_t) : \
1463 (*argtable)[n].uintmaxarg = va_arg(ap, uintmax_t);
H A Dvfwprintf.c68 uintmax_t uintmaxarg;
248 * conservative overestimate even for a 128-bit uintmax_t.
321 uintmax_t _umax; /* integer arguments %[diouxX] */
327 wchar_t buf[BUF]; /* buffer with space for digits of uintmax_t */
392 ((uintmax_t)(flags&MAXINT ? GETARG(uintmax_t) : \
H A Dvfscanf.c729 uintmax_t res;
H A Dvfwscanf.c651 uintmax_t res;

Completed in 1281 milliseconds