/src/include/ |
inttypes.h | 48 uintmax_t strtoumax(const char * __restrict, 52 uintmax_t wcstoumax(const wchar_t * __restrict, 71 uintmax_t strtoumax_l(const char * __restrict, 75 uintmax_t wcstoumax_l(const wchar_t * __restrict, 83 uintmax_t strtou(const char * __restrict, char ** __restrict, int, 84 uintmax_t, uintmax_t, int *); 89 uintmax_t strtou_l(const char * __restrict, char ** __restrict, int, 90 uintmax_t, uintmax_t, int *, locale_t) [all...] |
util.h | 137 char *strpct(char *, size_t, uintmax_t, uintmax_t, size_t); 156 uintmax_t estrtou(const char *, int, uintmax_t, uintmax_t);
|
/src/sys/external/bsd/drm2/include/linux/ |
dma-mapping.h | 59 static inline uintmax_t 63 if (nbits == CHAR_BIT*sizeof(uintmax_t)) 64 return ~(uintmax_t)0; 65 return ~(~(uintmax_t)0 << nbits);
|
/src/tests/net/net/ |
test.h | 36 msg, (uintmax_t)(a), (uintmax_t)(b)); \ 47 # a "(%ju) != " # b "(%ju) ", msg, (uintmax_t)(a), (uintmax_t)(b));
|
/src/usr.bin/systat/ |
convtbl.h | 56 extern double convert(const uintmax_t, const int); 59 extern const char *get_string(const uintmax_t, const int);
|
convtbl.c | 60 uintmax_t mul; 61 uintmax_t scale; 85 get_tbl_ptr(const uintmax_t size, const int scale) 87 uintmax_t tmp; 108 convert(const uintmax_t size, const int scale) 118 get_string(const uintmax_t size, const int scale)
|
/src/sys/arch/mips/include/ |
int_mwgwtypes.h | 87 typedef unsigned __COMPILER_INT64__ uintmax_t; typedef in typeref:typename:unsigned __COMPILER_INT64__ 90 typedef unsigned long int uintmax_t; typedef in typeref:typename:unsigned long int 95 typedef unsigned long long int uintmax_t; typedef in typeref:typename:unsigned long long int
|
/src/sys/arch/powerpc/include/ |
int_mwgwtypes.h | 87 typedef unsigned __COMPILER_INT64__ uintmax_t; typedef in typeref:typename:unsigned __COMPILER_INT64__ 90 typedef unsigned long int uintmax_t; typedef in typeref:typename:unsigned long int 95 typedef unsigned long long int uintmax_t; typedef in typeref:typename:unsigned long long int
|
/src/sys/arch/hppa/include/ |
int_mwgwtypes.h | 79 typedef unsigned __COMPILER_INT64__ uintmax_t; typedef in typeref:typename:unsigned __COMPILER_INT64__ 84 typedef unsigned long long int uintmax_t; typedef in typeref:typename:unsigned long long int
|
/src/sys/arch/i386/include/ |
int_mwgwtypes.h | 83 typedef unsigned __COMPILER_INT64__ uintmax_t; typedef in typeref:typename:unsigned __COMPILER_INT64__ 88 typedef unsigned long long int uintmax_t; typedef in typeref:typename:unsigned long long int
|
/src/sys/arch/m68k/include/ |
int_mwgwtypes.h | 82 typedef __COMPILER_UINT64__ uintmax_t; typedef in typeref:typename:__COMPILER_UINT64__ 87 typedef unsigned long long int uintmax_t; typedef in typeref:typename:unsigned long long int
|
/src/sys/arch/sh3/include/ |
int_mwgwtypes.h | 81 typedef __COMPILER_UINT64__ uintmax_t; typedef in typeref:typename:__COMPILER_UINT64__ 86 typedef unsigned long long int uintmax_t; typedef in typeref:typename:unsigned long long int
|
/src/sys/arch/vax/include/ |
int_mwgwtypes.h | 82 typedef __COMPILER_UINT64__ uintmax_t; typedef in typeref:typename:__COMPILER_UINT64__ 87 typedef unsigned long long int uintmax_t; typedef in typeref:typename:unsigned long long int
|
/src/sys/arch/sparc/include/ |
int_mwgwtypes.h | 107 typedef __COMPILER_UINT64__ uintmax_t; typedef in typeref:typename:__COMPILER_UINT64__ 111 typedef unsigned long int uintmax_t; typedef in typeref:typename:unsigned long int 116 typedef unsigned long long int uintmax_t; typedef in typeref:typename:unsigned long long int
|
/src/lib/libc/time/ |
difftime.c | 52 /* Use uintmax_t if wide enough. */ 54 if (sizeof(time_t) <= sizeof(uintmax_t)) { 55 uintmax_t t1 = time1, t0 = time0; 67 ** The values have opposite signs and uintmax_t is too narrow.
|
/src/lib/libutil/ |
strpct.c | 52 static uintmax_t 56 return x < 0 ? -(uintmax_t)x : (uintmax_t)x; 79 uintmax_t lo; 93 bignum_minus_u(bignum x, uintmax_t y) 111 bignum_ge_u(bignum x, uintmax_t y) 117 strpct(char *buf, size_t bufsiz, uintmax_t numerator, uintmax_t denominator,
|
/src/lib/libc/locale/ |
wcstoumax.c | 45 #define __UINT uintmax_t
|
/src/sys/arch/amd64/include/ |
int_mwgwtypes.h | 69 typedef unsigned long int uintmax_t; typedef in typeref:typename:unsigned long int
|
/src/sys/arch/alpha/include/ |
int_mwgwtypes.h | 78 typedef unsigned long int uintmax_t; typedef in typeref:typename:unsigned long int
|
/src/sys/arch/i386/stand/efiboot/ |
efidelay.c | 47 (uintmax_t)status);
|
/src/sys/arch/ia64/include/ |
int_mwgwtypes.h | 78 typedef unsigned long int uintmax_t; typedef in typeref:typename:unsigned long int
|
/src/common/include/prop/ |
prop_number.h | 44 prop_number_t prop_number_create_unsigned(uintmax_t); 47 uintmax_t prop_number_unsigned_value(prop_number_t); 78 bool prop_number_equals_unsigned(prop_number_t, uintmax_t);
|
/src/tests/lib/libc/sys/ |
t_wait.c | 92 printf("user: %ju system: %ju\n", (uintmax_t)si.si_utime, 93 (uintmax_t)si.si_utime); 127 printf("user: %ju system: %ju\n", (uintmax_t)si.si_utime, 128 (uintmax_t)si.si_utime); 164 printf("user: %ju system: %ju\n", (uintmax_t)si.si_utime, 165 (uintmax_t)si.si_utime); 204 printf("user: %ju system: %ju\n", (uintmax_t)si.si_utime, 205 (uintmax_t)si.si_utime); 217 printf("user: %ju system: %ju\n", (uintmax_t)si.si_utime, 218 (uintmax_t)si.si_utime) [all...] |
/src/sys/miscfs/procfs/ |
procfs_cmdline.c | 54 if (off + len <= (uintmax_t)uio->uio_offset) 92 if (len >= (uintmax_t)uio->uio_offset) { 98 if (len + 2 >= (uintmax_t)uio->uio_offset) {
|
/src/lib/libexecinfo/ |
symtab.c | 148 (uintmax_t)sym.st_value, ELF_ST_BIND(sym.st_info), 200 (uintmax_t)fbase, dli->dli_saddr, (uintmax_t)sa, 201 (uintmax_t)me, (uintmax_t)ad); 221 DPRINTF("me=%#jx -> [%#jx, %s]", (uintmax_t)me, (uintmax_t)sd, 224 DPRINTF("%#jx -> [%#jx, ***]", (uintmax_t)me, (uintmax_t)sd);
|