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

/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Dutil.c35 static char *u2s(uintmax_t x, unsigned base, bool uppercase, char *s,
40 static char *o2s(uintmax_t x, bool alt_form, char *s, size_t *slen_p);
42 static char *x2s(uintmax_t x, bool alt_form, bool uppercase, char *s,
105 uintmax_t
108 uintmax_t ret, digit;
188 uintmax_t pret = ret;
200 ret = (uintmax_t)(-((intmax_t)ret));
221 u2s(uintmax_t x, unsigned base, bool uppercase, char *s, size_t *slen_p)
290 o2s(uintmax_t x, bool alt_form, char *s, size_t *slen_p)
302 x2s(uintmax_t
[all...]
H A Djemalloc.c969 uintmax_t um; \
H A Dctl.c872 uintmax_t index;
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Dutil_externs.h7 uintmax_t malloc_strtoumax(const char *restrict nptr,
/fuchsia/zircon/third_party/uapp/dash/src/bltin/
H A Dprintf.c47 static uintmax_t getuintmax(int);
225 uintmax_t p = getuintmax(1);
234 uintmax_t p = getuintmax(0);
392 static uintmax_t
395 uintmax_t val = 0;
/fuchsia/zircon/kernel/tests/
H A Dprintf_tests.cpp75 EXPECT_TRUE(test_printf("uintmax_t: 18446744073697205938 0 12345678",
76 "uintmax_t: %ju %ju %ju", (uintmax_t)-12345678, (uintmax_t)0, (uintmax_t)12345678), "");
/fuchsia/zircon/system/utest/int-types/
H A Dint-types.cpp51 // uintmax_t
95 static_assert(sizeof(uintmax_t) == 8, "");
108 #define CHECK_MAX_UNSIGNED(type, TYPE) CHECK_MAX_TYPE(type, TYPE, uintmax_t, UINTMAX_MAX)
144 CHECK_MAX(uintmax_t, UINTMAX);
217 // produce values of type intmax_t and uintmax_t respectively, not
227 static_assert(fbl::is_same<uintmax_t, decltype(UINTMAX_C(0))>::value, "");
228 static_assert(fbl::is_same<uintmax_t, decltype(UINTMAX_C(0xffffffffffffffff))>::value, "");
229 static_assert(UINTMAX_C(0) == fbl::integral_constant<uintmax_t, 0>::value, "");
230 static_assert(UINTMAX_C(0xffffffffffffffff) == fbl::integral_constant<uintmax_t, 0xffffffffffffffff>::value, "");
314 CHECK_FORMATS(MAX, uintmax_t, UINTMAX_MA
[all...]
H A Dint-types.c51 // uintmax_t
95 static_assert(sizeof(uintmax_t) == 8, "");
110 #define CHECK_MAX_UNSIGNED(type, TYPE) CHECK_MAX_TYPE(type, TYPE, uintmax_t, UINTMAX_MAX)
146 CHECK_MAX(uintmax_t, UINTMAX);
219 // produce values of type intmax_t and uintmax_t respectively, not
313 CHECK_FORMATS(MAX, uintmax_t, UINTMAX_MAX);
/fuchsia/zircon/third_party/ulib/jemalloc/test/unit/
H A Dutil.c71 uintmax_t expected_x;
74 #define KUMAX(x) ((uintmax_t)x##ULL)
75 #define KSMAX(x) ((uintmax_t)(intmax_t)x##LL)
137 uintmax_t result;
/fuchsia/zircon/third_party/ulib/musl/src/stdlib/
H A Dstrtol.c48 uintmax_t strtoumax(const char* restrict s, char** restrict p, int base) {
H A Dwcstol.c74 uintmax_t wcstoumax(const wchar_t* restrict s, wchar_t** restrict p, int base) {
/fuchsia/zircon/third_party/ulib/jemalloc/test/include/test/
H A Dtest.h122 #define assert_ju_eq(a, b, ...) assert_cmp(uintmax_t, a, b, ==, \
124 #define assert_ju_ne(a, b, ...) assert_cmp(uintmax_t, a, b, !=, \
126 #define assert_ju_lt(a, b, ...) assert_cmp(uintmax_t, a, b, <, \
128 #define assert_ju_le(a, b, ...) assert_cmp(uintmax_t, a, b, <=, \
130 #define assert_ju_ge(a, b, ...) assert_cmp(uintmax_t, a, b, >=, \
132 #define assert_ju_gt(a, b, ...) assert_cmp(uintmax_t, a, b, >, \
/fuchsia/zircon/system/uapp/xdc-test/
H A Dxdc-test.cpp84 printf("Transferring file of size %jd bytes.\n", (uintmax_t)src_len);
/fuchsia/zircon/third_party/ulib/jemalloc/include/msvc_compat/C99/
H A Dstdint.h124 typedef uint64_t uintmax_t; typedef
/fuchsia/zircon/bootloader/lib/
H A Dprintf.c271 (flags & INTMAXFLAG) ? va_arg(ap, uintmax_t) :
289 (flags & INTMAXFLAG) ? va_arg(ap, uintmax_t) :
/fuchsia/zircon/kernel/lib/libc/
H A Dprintf.c290 (flags & INTMAXFLAG) ? va_arg(ap, uintmax_t) :
308 (flags & INTMAXFLAG) ? va_arg(ap, uintmax_t) :
/fuchsia/zircon/third_party/ulib/musl/include/
H A Dinttypes.h18 uintmax_t strtoumax(const char* __restrict, char** __restrict, int);
21 uintmax_t wcstoumax(const wchar_t* __restrict, wchar_t** __restrict, int);
/fuchsia/zircon/kernel/lib/libc/include/
H A Dstdint.h227 typedef __UINTMAX_TYPE__ uintmax_t; typedef
/fuchsia/zircon/third_party/ulib/musl/include/bits/
H A Dalltypes.h141 typedef __UINTMAX_TYPE__ uintmax_t; typedef
/fuchsia/zircon/third_party/ulib/musl/src/stdio/
H A Dvfprintf.c139 uintmax_t i;
192 arg->i = va_arg(*ap, uintmax_t);
227 __NO_SAFESTACK static char* fmt_x(uintmax_t x, char* s, int lower) {
233 __NO_SAFESTACK static char* fmt_o(uintmax_t x, char* s) {
239 __NO_SAFESTACK static char* fmt_u(uintmax_t x, char* s) {
551 char buf[sizeof(uintmax_t) * 3 + 3 + LDBL_MANT_DIG / 4];
690 *(uintmax_t*)arg.p = cnt;
/fuchsia/zircon/system/ulib/fbl/include/fbl/
H A Datomic.h496 using atomic_uintmax_t = atomic<uintmax_t>;
/fuchsia/zircon/system/utest/fbl/
H A Datomic_tests.cpp39 [[gnu::unused]] fbl::atomic<uintmax_t> zero_uintmax_t(0);

Completed in 265 milliseconds