Home
last modified time | relevance | path

Searched refs:LLONG_MIN (Results 1 – 25 of 63) sorted by relevance

123

/openbsd/regress/lib/libc/strtonum/
H A Dstrtonumtest.c51 test("-9223372036854775808", LLONG_MIN, LLONG_MAX, 1); in main()
52 test("9223372036854775807", LLONG_MIN, LLONG_MAX, 1); in main()
53 test("-9223372036854775809", LLONG_MIN, LLONG_MAX, 0); in main()
54 test("9223372036854775808", LLONG_MIN, LLONG_MAX, 0); in main()
55 test("1000000000000000000000000", LLONG_MIN, LLONG_MAX, 0); in main()
56 test("-1000000000000000000000000", LLONG_MIN, LLONG_MAX, 0); in main()
/openbsd/sys/dev/pci/drm/amd/display/include/
H A Dfixed31_32.h32 #ifndef LLONG_MIN
33 #define LLONG_MIN (-LLONG_MAX - 1ll) macro
37 #ifndef LLONG_MIN
38 #define LLONG_MIN (1LL<<63) macro
250 ((arg1.value < 0) && (LLONG_MIN - arg1.value <= arg2.value))); in dc_fixpt_add()
274 ASSERT(((arg2.value >= 0) && (LLONG_MIN + arg2.value <= arg1.value)) || in dc_fixpt_sub()
/openbsd/regress/lib/libutil/fmt_scaled/
H A Dfmt_test.c196 { "LLONG_MIN_K", (LLONG_MIN / 1024) * 1024, 0 },
212 #if LLONG_MIN == (-0x7fffffffffffffffLL-1)
260 snprintf(buf, sizeof buf," %lld", LLONG_MIN); in scan_test()
266 snprintf(buf, sizeof buf," %lldK", LLONG_MIN/1024); in scan_test()
272 snprintf(buf, sizeof buf," %lldK", (LLONG_MIN/1024)-1); in scan_test()
/openbsd/sys/lib/libsa/
H A Dstrtoll.c93 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll()
117 acc = LLONG_MIN; in strtoll()
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dglimits.h81 # undef LLONG_MIN
82 # define LLONG_MIN (-LLONG_MAX - 1LL) macro
/openbsd/gnu/gcc/gcc/
H A Dglimits.h81 # undef LLONG_MIN
82 # define LLONG_MIN (-LLONG_MAX - 1LL) macro
/openbsd/lib/libc/stdlib/
H A Dstrtoll.c107 cutoff = neg ? LLONG_MIN : LLONG_MAX; in strtoll()
131 acc = LLONG_MIN; in strtoll()
H A Dstrtonum.c53 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval) in strtonum()
/openbsd/gnu/llvm/clang/lib/Headers/
H A Dlimits.h99 #undef LLONG_MIN
104 #define LLONG_MIN (-__LONG_LONG_MAX__-1LL) macro
/openbsd/gnu/gcc/libstdc++-v3/include/tr1/
H A Dclimits39 #ifndef LLONG_MIN
40 #define LLONG_MIN -__LONG_LONG_MAX__ - 1
/openbsd/lib/libutil/
H A Dfmt_scaled.c177 whole < LLONG_MIN / scale_fact) { in scan_scaled()
223 if (number == LLONG_MIN) { in fmt_scaled()
/openbsd/lib/libm/src/
H A Ds_llround.c11 #define RESTYPE_MIN LLONG_MIN
H A Ds_llroundf.c11 #define RESTYPE_MIN LLONG_MIN
H A Ds_llroundl.c10 #define DTYPE_MIN LLONG_MIN
/openbsd/lib/libc/locale/
H A Dwcstoll.c15 #define MIN_VALUE LLONG_MIN
/openbsd/sys/sys/
H A Dlimits.h78 # define LLONG_MIN (-0x7fffffffffffffffLL-1) macro
/openbsd/gnu/llvm/libcxx/include/
H A Dclimits34 LLONG_MIN // C99
/openbsd/bin/date/
H A Ddate.c81 tval = strtonum(optarg, LLONG_MIN, LLONG_MAX, &errstr); in main()
/openbsd/sbin/dhcp6leased/
H A Dparse_lease.y228 yylval.v.number = strtonum(buf, LLONG_MIN, in yylex()
/openbsd/usr.sbin/sensorsd/
H A Dsensorsd.c761 if (p->lower != LLONG_MIN || p->upper != LLONG_MAX) in parse_config_sdlim()
777 return (LLONG_MIN); in get_val()
/openbsd/regress/usr.sbin/rpki-client/
H A Dtest-rrdp.c296 serial = strtonum(optarg, LLONG_MIN, LLONG_MAX, &e); in main()
/openbsd/bin/chio/
H A Dparse.y345 yylval.v.number = strtonum(buf, LLONG_MIN, in yylex()
/openbsd/usr.sbin/bgpctl/
H A Dparser.c1598 val = strtonum(argv[1], LLONG_MIN, LLONG_MAX, &errstr); in parse_flow_numop()
1606 val = strtonum(argv[0], LLONG_MIN, LLONG_MAX, &errstr); in parse_flow_numop()
1611 val2 = strtonum(argv[2], LLONG_MIN, LLONG_MAX, in parse_flow_numop()
/openbsd/usr.sbin/ldomctl/
H A Dparse.y581 yylval.v.number = strtonum(buf, LLONG_MIN, in yylex()
/openbsd/usr.bin/openssl/
H A Dcerthash.c270 if (errno == ERANGE && (val == LLONG_MAX || val == LLONG_MIN)) in hashinfo_from_linkname()

123