intmax_t 363 gnulib-tests/printf-parse.c if (sizeof (intmax_t) > sizeof (long))
intmax_t 368 gnulib-tests/printf-parse.c else if (sizeof (intmax_t) > sizeof (int))
intmax_t 65 gnulib-tests/test-intprops.c ASSERT (TYPE_IS_INTEGER (intmax_t));
intmax_t 81 gnulib-tests/test-intprops.c VERIFY (TYPE_SIGNED (intmax_t));
intmax_t 113 gnulib-tests/test-intprops.c VERIFY (TYPE_MINIMUM (intmax_t) == INTMAX_MIN);
intmax_t 114 gnulib-tests/test-intprops.c VERIFY (TYPE_MAXIMUM (intmax_t) == INTMAX_MAX);
intmax_t 264 gnulib-tests/test-intprops.c VERIFY (INT_REMAINDER_OVERFLOW ((intmax_t) -1, UINTMAX_MAX));
intmax_t 34 gnulib-tests/test-inttostr.c #define CAST_VAL(T,V) (TYPE_SIGNED (T) ? (intmax_t) (V) : (uintmax_t) (V))
intmax_t 84 gnulib-tests/test-inttostr.c CK (intmax_t, imaxtostr);
intmax_t 242 gnulib-tests/test-stdint.c intmax_t i[3] = { INTMAX_C (17), INTMAX_MIN, INTMAX_MAX };
intmax_t 243 gnulib-tests/test-stdint.c verify (TYPE_MINIMUM (intmax_t) == INTMAX_MIN);
intmax_t 244 gnulib-tests/test-stdint.c verify (TYPE_MAXIMUM (intmax_t) == INTMAX_MAX);
intmax_t 245 gnulib-tests/test-stdint.c verify_same_types (INTMAX_MIN, (intmax_t) 0 + 0);
intmax_t 246 gnulib-tests/test-stdint.c verify_same_types (INTMAX_MAX, (intmax_t) 0 + 0);
intmax_t 354 gnulib-tests/test-stdint.c verify_same_types (INTMAX_C (17), (intmax_t)0 + 0);
intmax_t 2 lib/imaxtostr.c #define inttype intmax_t
intmax_t 42 lib/inttostr.h char *imaxtostr (intmax_t, char *) __attribute_warn_unused_result__;
intmax_t 1051 lib/inttypes.in.h extern intmax_t imaxabs (intmax_t);
intmax_t 1064 lib/inttypes.in.h typedef struct { intmax_t quot; intmax_t rem; } imaxdiv_t;
intmax_t 1067 lib/inttypes.in.h extern imaxdiv_t imaxdiv (intmax_t, intmax_t);
intmax_t 1080 lib/inttypes.in.h extern intmax_t strtoimax (const char *, char **, int) _GL_ARG_NONNULL ((1));
intmax_t 57 lib/strtoimax.c # define Int intmax_t
intmax_t 46 lib/xstrtol.h _DECLARE_XSTRTOL (xstrtoimax, intmax_t)
intmax_t 64 src/context.c intmax_t sec = inf->stat.st_mtime;
intmax_t 681 src/diff.c intmax_t t = expand_tabs ? 1 : tabsize;
intmax_t 682 src/diff.c intmax_t w = width;
intmax_t 683 src/diff.c intmax_t off = (w + t + GUTTER_WIDTH_MINIMUM) / (2 * t) * t;