Searched refs:LONG_MIN (Results 1 - 25 of 47) sorted by relevance

12

/freebsd-11-stable/lib/msun/src/
H A Ds_lroundf.c7 #define DTYPE_MIN LONG_MIN
H A Ds_lroundl.c7 #define DTYPE_MIN LONG_MIN
H A Ds_lround.c37 #define DTYPE_MIN LONG_MIN
/freebsd-11-stable/contrib/gcclibs/libiberty/
H A Dstrtol.c77 #ifndef LONG_MIN
78 #define LONG_MIN ((long)(~LONG_MAX)) /* 0x80000000 */ macro
135 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
156 acc = neg ? LONG_MIN : LONG_MAX;
/freebsd-11-stable/contrib/binutils/libiberty/
H A Dstrtol.c77 #ifndef LONG_MIN
78 #define LONG_MIN ((long)(~LONG_MAX)) /* 0x80000000 */ macro
135 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
156 acc = neg ? LONG_MIN : LONG_MAX;
/freebsd-11-stable/contrib/ntp/libntp/
H A Dtimexsup.c32 if (dval <= (double)LONG_MIN)
33 return LONG_MIN;
/freebsd-11-stable/contrib/groff/src/libs/libgroff/
H A Dstrtol.c37 #ifndef LONG_MIN
38 #define LONG_MIN (-LONG_MAX-1) macro
112 if (-(unsigned long)val > (-(unsigned long)LONG_MIN - n)/base) {
113 val = LONG_MIN;
/freebsd-11-stable/sys/libkern/
H A Dstrtol.c100 cutoff = neg ? -(unsigned long)LONG_MIN : LONG_MAX;
123 acc = neg ? LONG_MIN : LONG_MAX;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Dlimits.h35 #undef LONG_MIN macro
52 #define LONG_MIN (-__LONG_MAX__ -1L) macro
/freebsd-11-stable/sys/sys/
H A Dlimits.h63 #define LONG_MIN __LONG_MIN /* min for a long */ macro
/freebsd-11-stable/contrib/gcc/
H A Dglimits.h70 #undef LONG_MIN macro
71 #define LONG_MIN (-LONG_MAX - 1L) macro
/freebsd-11-stable/lib/libc/locale/
H A Dwcstol.c86 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX
115 acc = neg ? LONG_MIN : LONG_MAX;
/freebsd-11-stable/lib/libc/stdlib/
H A Dstrtol.c113 cutoff = neg ? (unsigned long)-(LONG_MIN + LONG_MAX) + LONG_MAX
137 acc = neg ? LONG_MIN : LONG_MAX;
/freebsd-11-stable/contrib/ntp/sntp/libopts/
H A Dnumeric.c74 if (rng->rmax == LONG_MIN)
76 else if (rng->rmin == LONG_MIN)
/freebsd-11-stable/usr.bin/xlint/lint1/
H A Dparam.h117 #define QUAD_MIN LONG_MIN
H A Dmain1.c164 if ((msg == LONG_MIN || msg == LONG_MAX) &&
/freebsd-11-stable/usr.bin/m4/
H A Dtokenizer.l76 if (((l == LONG_MAX || l == LONG_MIN) && errno == ERANGE) ||
/freebsd-11-stable/usr.bin/nl/
H A Dnl.c184 ((val == LONG_MIN || val == LONG_MAX) && errno != 0))
216 ((val == LONG_MIN || val == LONG_MAX) && errno != 0))
225 ((val == LONG_MIN || val == LONG_MAX) && errno != 0))
/freebsd-11-stable/crypto/heimdal/lib/roken/
H A Dsnprintf-test.c96 long long_values[] = {LONG_MIN, -17, -1, 0, 1, 17, 4711, 65535, LONG_MAX};
135 ((long long)LONG_MIN) -1, LONG_MIN, -17, -1,
/freebsd-11-stable/contrib/nvi/common/
H A Dutil.h50 NNFITS(LONG_MIN, (v1), (v2))) ? NUM_UNDER : NUM_OK : \
/freebsd-11-stable/usr.bin/getaddrinfo/
H A Dgetaddrinfo.c199 if ((errno == ERANGE) && ((value == LONG_MAX) || (value == LONG_MIN)))
241 if ((errno == ERANGE) && ((value == LONG_MAX) || (value == LONG_MIN)))
/freebsd-11-stable/contrib/ntp/include/
H A Dntp_types.h112 # define INT32_MIN LONG_MIN
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dtext.c172 else if (errno == ERANGE || (tmp == LONG_MAX || tmp == LONG_MIN))
/freebsd-11-stable/crypto/heimdal/appl/login/
H A Dlimits_conf.c166 if((value == LONG_MIN || value == LONG_MAX) && errno == ERANGE) {
/freebsd-11-stable/crypto/heimdal/appl/rsh/
H A Dlimits_conf.c166 if((value == LONG_MIN || value == LONG_MAX) && errno == ERANGE) {

Completed in 296 milliseconds

12