Searched refs:intmax_t (Results 1 - 25 of 83) sorted by relevance

1234

/haiku-fatelf/src/bin/coreutils/lib/
H A Dimaxtostr.c2 #define inttype intmax_t
H A Dxstrtoimax.c2 #define __strtol_t intmax_t
H A Dinttostr.h43 char *imaxtostr (intmax_t, char *) __attribute_warn_unused_result__;
H A Dstrtoimax.c1 /* Convert string representation of a number into an intmax_t value.
57 # define Int intmax_t
H A Dxstrtol.h46 _DECLARE_XSTRTOL (xstrtoimax, intmax_t)
H A Dstdint.h259 #undef intmax_t macro
262 # define intmax_t gl_intmax_t macro
264 # define intmax_t int64_t macro
267 # define intmax_t gl_intmax_t macro
281 /* Verify that intmax_t and uintmax_t have the same size. Too much code
284 typedef int _verify_intmax_size[2 * (sizeof (intmax_t) == sizeof (uintmax_t)) - 1];
H A Dstdint.in.h258 #undef intmax_t macro
261 # define intmax_t gl_intmax_t macro
263 # define intmax_t int64_t macro
266 # define intmax_t gl_intmax_t macro
280 /* Verify that intmax_t and uintmax_t have the same size. Too much code
283 typedef int _verify_intmax_size[2 * (sizeof (intmax_t) == sizeof (uintmax_t)) - 1];
/haiku-fatelf/src/bin/diffutils/lib/
H A Dimaxtostr.c2 #define inttype intmax_t
H A Dinttostr.h59 char *imaxtostr PARAMS ((intmax_t, char *));
H A Dstrtoimax.c1 /* Convert string representation of a number into an intmax_t value.
82 # define INT intmax_t
H A Dxstrtol.h47 _DECLARE_XSTRTOL (xstrtoimax, intmax_t)
/haiku-fatelf/src/bin/bash/lib/sh/
H A Dfmtumax.c23 #define LONG intmax_t
H A Dstrtoimax.c1 /* strtoimax - convert string representation of a number into an intmax_t value. */
58 intmax_t
66 (sizeof (intmax_t) == sizeof (long) ||
67 sizeof (intmax_t) == sizeof (long long)));
69 if (sizeof (intmax_t) != sizeof (long))
72 verify (size_is_that_of_long, sizeof (intmax_t) == sizeof (long));
84 intmax_t x;
90 printf ("sizeof intmax_t: %d\n", sizeof (intmax_t));
H A Ditos.c34 intmax_t i;
45 intmax_t i;
47 char *p, lbuf[INT_STRLEN_BOUND(intmax_t) + 1];
/haiku-fatelf/src/system/libroot/posix/
H A Dinttypes.c11 intmax_t
12 imaxabs(intmax_t number)
19 imaxdiv(intmax_t numer, intmax_t denom)
35 intmax_t
39 return (intmax_t)strtol(string, _end, base);
47 return (intmax_t)strtoul(string, _end, base);
/haiku-fatelf/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/clock/
H A D2-1.c26 intmax_t clocks_per_sec = (intmax_t)CLOCKS_PER_SEC;
/haiku-fatelf/src/bin/bash/
H A Dexpr.c22 All arithmetic is done as intmax_t integers with no checking for overflow
147 static intmax_t tokval; /* current token value */
154 static intmax_t expr_streval __P((char *, int));
155 static intmax_t strlong __P((char *));
163 static intmax_t subexpr __P((char *));
165 static intmax_t expcomma __P((void));
166 static intmax_t expassign __P((void));
167 static intmax_t expcond __P((void));
168 static intmax_t explor __P((void));
169 static intmax_t explan
[all...]
/haiku-fatelf/headers/posix/
H A Dinttypes.h13 intmax_t quot; /* quotient */
14 intmax_t rem; /* remainder */
202 extern intmax_t imaxabs(intmax_t num);
203 extern imaxdiv_t imaxdiv(intmax_t numer, intmax_t denom);
205 extern intmax_t strtoimax(const char *string, char **_end, int base);
207 /* extern intmax_t wcstoimax(const __wchar_t *, __wchar_t **, int); */
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dstrtoimax.c1 /* Convert string representation of a number into an intmax_t value.
57 # define Int intmax_t
H A Dxstrtol.h46 _DECLARE_XSTRTOL (xstrtoimax, intmax_t)
H A Dstdint.h236 #undef intmax_t macro
238 # define intmax_t long long int macro
240 # define intmax_t int64_t macro
242 # define intmax_t long int macro
254 /* Verify that intmax_t and uintmax_t have the same size. Too much code
257 typedef int _verify_intmax_size[2 * (sizeof (intmax_t) == sizeof (uintmax_t)) - 1];
/haiku-fatelf/src/bin/bash/builtins/
H A Dcommon.h94 extern int get_numeric_arg __P((WORD_LIST *, int, intmax_t *));
156 extern char *get_dirstack_element __P((intmax_t, int));
157 extern void set_dirstack_element __P((intmax_t, int, char *));
/haiku-fatelf/src/bin/coreutils/src/
H A Dexpr.c57 typedef intmax_t mpz_t[1];
68 intmax_t a = a0[0];
69 intmax_t b = b0[0];
70 intmax_t val = a + b;
78 intmax_t a = a0[0];
79 intmax_t b = b0[0];
80 intmax_t val = a - b;
88 intmax_t a = a0[0];
89 intmax_t b = b0[0];
90 intmax_t va
[all...]
H A Dnl.c43 /* Line-number formats. They are given an int width, an intmax_t
125 static intmax_t starting_line_number = 1;
128 static intmax_t page_incr = 1;
134 static intmax_t blank_join = 1;
143 static intmax_t line_no;
281 intmax_t next_line_no;
328 static intmax_t blank_lines = 0; /* Consecutive blank lines so far. */
H A Dtruncate.c77 intmax_t tmp_size;
161 (intmax_t) ssize, (intmax_t) blksize,
242 (intmax_t) nsize);

Completed in 298 milliseconds

1234