Symbol: LLONG_MIN
bin/expr/expr.y
168
num > 0 ? LLONG_MAX : LLONG_MIN);
bin/test/test.c
862
if (errno == ERANGE && (r == LLONG_MAX || r == LLONG_MIN))
common/lib/libc/stdlib/strtoll.c
59
#define __INT_MIN LLONG_MIN
common/lib/libprop/prop_number.c
539
TEMPLATE(longlong, long long, LLONG_MIN, LLONG_MAX)
lib/libc/gen/dehumanize_number.c
111
else if (errno == ERANGE && (tmp == LLONG_MAX || tmp == LLONG_MIN))
lib/libc/gen/pw_scan.c
79
if (errno == ERANGE && (l == LLONG_MAX || l == LLONG_MIN)) {
lib/libc/locale/wcstoll.c
45
#define __INT_MIN LLONG_MIN
lib/libc/time/localtime.c
246
# define IINNTT_MIN LLONG_MIN
lib/libc/time/localtime.c
314
# elif MKTIME_FITS_IN(LLONG_MIN, LLONG_MAX)
lib/libc/time/localtime.c
316
# define TIME_T_MIN LLONG_MIN
lib/libc/time/private.h
1012
int: INT_MIN, long: LONG_MIN, long long: LLONG_MIN, \
lib/libc/time/private.h
400
# ifndef LLONG_MIN
lib/libc/time/private.h
416
# define INT_FAST64_MIN LLONG_MIN
lib/libc/time/private.h
453
# define INTMAX_MIN LLONG_MIN
lib/libm/src/s_llround.c
11
#define DTYPE_MIN LLONG_MIN
lib/libm/src/s_llroundf.c
11
#define DTYPE_MIN LLONG_MIN
lib/libm/src/s_llroundl.c
11
#define DTYPE_MIN LLONG_MIN
lib/libutil/parsedate.y
902
(change < 0 && LLONG_MIN - change > now)) {
libexec/ftpd/extern.h
110
# define LLTMIN LLONG_MIN
sbin/dkctl/dkctl.c
578
start == LLONG_MIN))
sys/sys/common_limits.h
72
#define QUAD_MIN LLONG_MIN /* min signed quad */
tests/include/sys/t_cdefs.c
51
{ "signed long long", LLONG_MIN, LLONG_MAX },
tests/lib/libprop/t_proplib.c
452
prop_number_t n_llong_min = prop_number_create_signed(LLONG_MIN);
tests/lib/libprop/t_proplib.c
610
val.v_llong == LLONG_MIN);
tests/lib/libprop/t_proplib.c
861
ATF_REQUIRE(prop_dictionary_set_longlong(dict, "longlong", LLONG_MIN));
tests/lib/libprop/t_proplib.c
864
ATF_REQUIRE(val.v_llong == LLONG_MIN);
tools/compat/compat_defs.h
1022
#ifndef LLONG_MIN
usr.bin/xlint/lint1/tree.c
4191
max = LLONG_MAX; min = LLONG_MIN; break;