Searched refs:LLONG_MAX (Results 1 - 25 of 34) sorted by relevance

12

/freebsd-11-stable/crypto/openssh/openbsd-compat/regress/
H A Dstrtonumtest.c24 /* LLONG_MAX is known as LONGLONG_MAX on AIX */
25 #if defined(LONGLONG_MAX) && !defined(LLONG_MAX)
26 # define LLONG_MAX LONGLONG_MAX macro
30 /* LLONG_MAX is known as LONG_LONG_MAX on HP-UX */
31 #if defined(LONG_LONG_MAX) && !defined(LLONG_MAX)
32 # define LLONG_MAX LONG_LONG_MAX macro
63 test("0", 2, LLONG_MAX, 0);
64 test("-2", 0, LLONG_MAX, 0);
65 test("0", -5, LLONG_MAX, 1);
66 test("-3", -3, LLONG_MAX,
[all...]
/freebsd-11-stable/lib/msun/src/
H A Ds_llround.c8 #define DTYPE_MAX LLONG_MAX
H A Ds_llroundf.c8 #define DTYPE_MAX LLONG_MAX
H A Ds_llroundl.c8 #define DTYPE_MAX LLONG_MAX
/freebsd-11-stable/contrib/sendmail/include/sm/
H A Dlimits.h17 ** LLONG_MIN, LLONG_MAX
35 # ifndef LLONG_MAX
36 # define LLONG_MAX ((LONGLONG_T)(ULLONG_MAX >> 1)) macro
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/stdlib/
H A Dt_abs.c80 { LLONG_MAX, LLONG_MAX },
81 { -LLONG_MAX, LLONG_MAX },
136 { LLONG_MAX, LLONG_MAX },
137 { -LLONG_MAX, LLONG_MAX },
H A Dt_atoi.c105 (void)snprintf(buf, sizeof(buf), "%lld\n", LLONG_MAX);
/freebsd-11-stable/contrib/gcc/
H A Dglimits.h82 # define LLONG_MIN (-LLONG_MAX - 1LL)
83 # undef LLONG_MAX macro
84 # define LLONG_MAX __LONG_LONG_MAX__ macro
88 # define ULLONG_MAX (LLONG_MAX * 2ULL + 1ULL)
/freebsd-11-stable/lib/libc/stdlib/
H A Dstrtoll.c114 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
115 : LLONG_MAX;
138 acc = neg ? LLONG_MIN : LLONG_MAX;
H A Dstrtonum.c58 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
/freebsd-11-stable/lib/libc/locale/
H A Dwcstoll.c92 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
93 : LLONG_MAX;
121 acc = neg ? LLONG_MIN : LLONG_MAX;
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dt-types.c75 ll = LLONG_MAX;
84 "oops: LLONG_MAX=%s\n", buf);
99 SM_TEST(QUAD_MAX <= LLONG_MAX);
H A Dstrto.c37 ** LLONG_MAX is returned and errno is set.
106 cutoff = neg ? LLONG_MIN : LLONG_MAX;
150 acc = LLONG_MAX;
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dstrtoll.c101 cutoff = neg ? LLONG_MIN : LLONG_MAX;
135 acc = LLONG_MAX;
H A Dstrtonum.c60 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
H A Dfmt_scaled.c128 if (fpart >= LLONG_MAX / 10) {
139 if (whole >= LLONG_MAX / 10) {
173 if (whole >= LLONG_MAX / scale_fact) {
184 while (fpart >= LLONG_MAX / scale_fact) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dlimits.h79 #undef LLONG_MAX macro
82 #define LLONG_MAX __LONG_LONG_MAX__ macro
89 deprecate a macro - the code should just use LLONG_MAX and friends.
/freebsd-11-stable/contrib/mdocml/
H A Dcompat_strtonum.c64 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
/freebsd-11-stable/sys/sys/
H A Dlimits.h67 #define LLONG_MAX __LLONG_MAX /* max for a long long */ macro
/freebsd-11-stable/usr.sbin/makefs/
H A Dmakefs.c159 optarg, 0, LLONG_MAX);
181 optarg, 0, LLONG_MAX);
191 strsuftoll("minimum size", optarg, 1LL, LLONG_MAX);
203 strsuftoll("maximum size", optarg, 1LL, LLONG_MAX);
226 strsuftoll("roundup-size", optarg, 0, LLONG_MAX);
231 strsuftoll("size", optarg, 1LL, LLONG_MAX);
/freebsd-11-stable/sys/cddl/compat/opensolaris/sys/
H A Dtime.h38 #define TIME_MAX LLONG_MAX
/freebsd-11-stable/contrib/tzcode/zic/
H A Dprivate.h115 /* Pre-C99 GCC compilers define __LONG_LONG_MAX__ instead of LLONG_MAX. */
116 #if defined LLONG_MAX || defined __LONG_LONG_MAX__
118 #else /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */
124 #endif /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */
/freebsd-11-stable/contrib/tzcode/stdtime/
H A Dprivate.h157 /* Pre-C99 GCC compilers define __LONG_LONG_MAX__ instead of LLONG_MAX. */
158 #if defined LLONG_MAX || defined __LONG_LONG_MAX__
160 #else /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */
166 #endif /* ! (defined LLONG_MAX || defined __LONG_LONG_MAX__) */
/freebsd-11-stable/libexec/flua/
H A Dluaconf.h565 /* use presence of macro LLONG_MAX as proxy for C99 compliance */
566 #if defined(LLONG_MAX) /* { */
572 #define LUA_MAXINTEGER LLONG_MAX
/freebsd-11-stable/stand/liblua/
H A Dluaconf.h588 /* use presence of macro LLONG_MAX as proxy for C99 compliance */
589 #if defined(LLONG_MAX) /* { */
595 #define LUA_MAXINTEGER LLONG_MAX

Completed in 306 milliseconds

12