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

123456

/macosx-10.9.5/Libc-997.90.3/include/_types/
H A D_uintmax_t.h32 typedef __UINTMAX_TYPE__ uintmax_t; typedef
35 typedef long unsigned int uintmax_t; typedef
37 typedef long long unsigned int uintmax_t; typedef
/macosx-10.9.5/gnudiff-19/diffutils/lib/
H A Dumaxtostr.c2 #define inttype uintmax_t
H A Dxstrtoumax.c29 #define __strtol_t uintmax_t
/macosx-10.9.5/gnutar-452/gnutar/lib/
H A Dumaxtostr.c2 #define inttype uintmax_t
H A Dhuman.h31 The output can be the square of the largest uintmax_t, so double
39 ((2 * sizeof (uintmax_t) * CHAR_BIT * 146 / 485 + 1) * (MB_LEN_MAX + 1) \
79 char *human_readable (uintmax_t, char *, int, uintmax_t, uintmax_t);
81 int human_options (char const *, bool, uintmax_t *);
H A Dxstrtoumax.c2 #define __strtol_t uintmax_t
H A Dinttostr.h29 char *umaxtostr (uintmax_t, char *);
H A Dhuman.c68 uintmax_t u = value;
94 in the square of the largest uintmax_t, so double the size needed. */
95 char buf[2 * INT_STRLEN_BOUND (uintmax_t) + 1];
159 human_readable (uintmax_t n, char *buf, int opts,
160 uintmax_t from_block_size, uintmax_t to_block_size)
165 uintmax_t amt;
204 uintmax_t multiplier = from_block_size / to_block_size;
216 uintmax_t divisor = to_block_size / from_block_size;
217 uintmax_t r1
[all...]
/macosx-10.9.5/text_cmds-87/sort/
H A Dumaxtostr.c2 #define inttype uintmax_t
H A Dxstrtoumax.c27 #define __strtol_t uintmax_t
H A Dinttostr.h34 char *umaxtostr (uintmax_t, char *);
/macosx-10.9.5/bash-92/bash-3.2/lib/sh/
H A Dfmtumax.c1 /* fmtumax.c -- Convert uintmax_t to string. */
22 #define UNSIGNED_LONG uintmax_t
H A Dstrtoumax.c1 /* Convert string representation of a number into an uintmax_t value.
55 uintmax_t
63 (sizeof (uintmax_t) == sizeof (unsigned long) ||
64 sizeof (uintmax_t) == sizeof (unsigned long long)));
66 if (sizeof (uintmax_t) != sizeof (unsigned long))
69 verify (size_is_that_of_unsigned_long, sizeof (uintmax_t) == sizeof (unsigned long));
81 uintmax_t x;
87 printf ("sizeof uintmax_t: %d\n", sizeof (uintmax_t));
H A Ditos.c55 uintmax_t i;
66 uintmax_t i;
68 char *p, lbuf[INT_STRLEN_BOUND(uintmax_t) + 1];
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/string/
H A Dstrntoll.c28 #define S2I_unumber uintmax_t
H A Dstrntonll.c28 #define S2I_unumber uintmax_t
H A Dstrntoull.c28 #define S2I_unumber uintmax_t
H A Dstrtonll.c28 #define S2I_unumber uintmax_t
/macosx-10.9.5/swig-10/Lib/
H A Dinttypes.i23 /* We have to define the `uintmax_t' type using `ldiv_t'. */
32 /* We have to define the `uintmax_t' type using `lldiv_t'. */
50 /* Like `strtoul' but convert to `uintmax_t'. */
51 extern uintmax_t strtoumax (const char *nptr, char ** endptr, int base);
57 /* Like `wcstoul' but convert to `uintmax_t'. */
58 extern uintmax_t wcstoumax (const wchar_t *nptr, wchar_t ** endptr, int base);
66 /* Like `strtoul' but convert to `uintmax_t'. */
67 extern uintmax_t strtoumax (const char *nptr, char **endptr,int base);
73 /* Like `wcstoul' but convert to `uintmax_t'. */
74 extern uintmax_t wcstouma
[all...]
H A Dstdint.i103 typedef unsigned long int uintmax_t;
106 typedef unsigned long long int uintmax_t;
/macosx-10.9.5/ksh-20/ksh/src/lib/libast/comp/
H A Dstrtoll.c42 #define S2I_unumber uintmax_t
H A Dstrtoull.c42 #define S2I_unumber uintmax_t
/macosx-10.9.5/Libc-997.90.3/include/xlocale/
H A D_inttypes.h30 uintmax_t strtoumax_l(const char * __restrict nptr, char ** __restrict endptr,
34 uintmax_t wcstoumax_l(const wchar_t * __restrict nptr,
/macosx-10.9.5/Libc-997.90.3/locale/FreeBSD/
H A Dwcstoumax.c48 * Convert a wide character string to a uintmax_t integer.
50 uintmax_t
55 uintmax_t acc;
57 uintmax_t cutoff;
127 uintmax_t
/macosx-10.9.5/Libc-997.90.3/stdlib/FreeBSD/
H A Dstrtoumax.c44 * Convert a string to a uintmax_t integer.
49 uintmax_t
54 uintmax_t acc;
56 uintmax_t cutoff;
124 uintmax_t

Completed in 223 milliseconds

123456