Searched refs:LLONG_MIN (Results 1 - 19 of 19) sorted by relevance

/freebsd-10-stable/lib/msun/src/
H A Ds_llround.c7 #define DTYPE_MIN LLONG_MIN
H A Ds_llroundf.c7 #define DTYPE_MIN LLONG_MIN
H A Ds_llroundl.c7 #define DTYPE_MIN LLONG_MIN
/freebsd-10-stable/contrib/sendmail/include/sm/
H A Dlimits.h17 ** LLONG_MIN, LLONG_MAX
32 # ifndef LLONG_MIN
33 # define LLONG_MIN ((LONGLONG_T)(~(ULLONG_MAX >> 1))) macro
34 # endif /* ! LLONG_MIN */
/freebsd-10-stable/crypto/openssh/openbsd-compat/regress/
H A Dstrtonumtest.c27 # define LLONG_MIN LONGLONG_MIN macro
33 # define LLONG_MIN LONG_LONG_MIN macro
67 test("-9223372036854775808", LLONG_MIN, LLONG_MAX, 1);
68 test("9223372036854775807", LLONG_MIN, LLONG_MAX, 1);
69 test("-9223372036854775809", LLONG_MIN, LLONG_MAX, 0);
70 test("9223372036854775808", LLONG_MIN, LLONG_MAX, 0);
71 test("1000000000000000000000000", LLONG_MIN, LLONG_MAX, 0);
72 test("-1000000000000000000000000", LLONG_MIN, LLONG_MAX, 0);
/freebsd-10-stable/contrib/llvm/tools/clang/lib/Headers/
H A Dlimits.h95 #undef LLONG_MIN macro
100 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL) macro
/freebsd-10-stable/contrib/sendmail/libsm/
H A Dt-types.c51 ** Most compilers notice that LLONG_MIN - 1 generate an underflow.
53 ** in a CPU and hence (LLONG_MIN - 1 > LLONG_MIN) will be false.
60 ll = LLONG_MIN;
64 lt = LLONG_MIN - 1;
72 "oops: LLONG_MIN=%s\n", buf);
H A Dstrto.c36 ** Failure: on underflow LLONG_MIN is returned; on overflow
106 cutoff = neg ? LLONG_MIN : LLONG_MAX;
135 acc = LLONG_MIN;
/freebsd-10-stable/crypto/openssh/openbsd-compat/
H A Dstrtoll.c101 cutoff = neg ? LLONG_MIN : LLONG_MAX;
125 acc = LLONG_MIN;
H A Dstrtonum.c58 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
/freebsd-10-stable/lib/libc/stdlib/
H A Dstrtonum.c56 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
H A Dstrtoll.c114 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
138 acc = neg ? LLONG_MIN : LLONG_MAX;
/freebsd-10-stable/sys/sys/
H A Dlimits.h68 #define LLONG_MIN __LLONG_MIN /* min for a long long */ macro
/freebsd-10-stable/contrib/gcc/
H A Dglimits.h81 # undef LLONG_MIN macro
82 # define LLONG_MIN (-LLONG_MAX - 1LL) macro
/freebsd-10-stable/lib/libc/locale/
H A Dwcstoll.c92 cutoff = neg ? (unsigned long long)-(LLONG_MIN + LLONG_MAX) + LLONG_MAX
121 acc = neg ? LLONG_MIN : LLONG_MAX;
/freebsd-10-stable/contrib/tnftp/
H A Dtnftp.h405 # if !defined(LLONG_MIN)
406 # define LLONG_MIN (-0x7fffffffffffffffLL-1) macro
/freebsd-10-stable/contrib/netbsd-tests/include/sys/
H A Dt_cdefs.c51 { "signed long long", LLONG_MIN, LLONG_MAX },
/freebsd-10-stable/contrib/ntp/libntp/
H A Dsnprintf.c2011 #ifdef LLONG_MIN
2012 LLONG_MIN,
2013 #endif /* LLONG_MIN */
/freebsd-10-stable/contrib/ntp/ntpd/
H A Drefclock_gpsdjson.c115 #define JSON_INT_MIN LLONG_MIN

Completed in 169 milliseconds