Home
last modified time | relevance | path

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

/linux-6.15/tools/testing/selftests/bpf/progs/
H A Dverifier_div_overflow.c57 : __imm_const(llong_min, LLONG_MIN) in div64_overflow_check_1()
74 : __imm_const(llong_min, LLONG_MIN) in div64_overflow_check_2()
122 : __imm_const(llong_min, LLONG_MIN) in mod64_overflow_check_1()
140 : __imm_const(llong_min, LLONG_MIN) in mod64_overflow_check_2()
H A Dverifier_sdiv.c805 : __imm_const(llong_min, LLONG_MIN) in sdiv64_overflow_rr()
860 : __imm_const(llong_min, LLONG_MIN) in sdiv64_overflow_ri()
1026 : __imm_const(llong_min, LLONG_MIN) in smod64_overflow_rr()
1078 : __imm_const(llong_min, LLONG_MIN) in smod64_overflow_ri()
H A Dexceptions_assert.c28 check_assert(s64, ==, eq_llong_min, LLONG_MIN);
/linux-6.15/drivers/gpu/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()
/linux-6.15/drivers/gpu/drm/amd/display/dc/sspl/
H A Dspl_fixpt31_32.h14 #ifndef LLONG_MIN
15 #define LLONG_MIN (-LLONG_MAX - 1ll) macro
19 #ifndef LLONG_MIN
20 #define LLONG_MIN (1LL<<63) macro
232 ((arg1.value < 0) && (LLONG_MIN - arg1.value <= arg2.value))); in spl_fixpt_add()
256 SPL_ASSERT(((arg2.value >= 0) && (LLONG_MIN + arg2.value <= arg1.value)) || in spl_fixpt_sub()
/linux-6.15/tools/include/nolibc/
H A Dstdint.h121 #ifndef LLONG_MIN
122 #define LLONG_MIN (-__LONG_LONG_MAX__ - 1) macro
H A Dstdlib.h530 return __strtox(nptr, endptr, base, LLONG_MIN, LLONG_MAX); in strtoll()
/linux-6.15/include/vdso/
H A Dlimits.h15 #define LLONG_MIN (-LLONG_MAX - 1) macro
/linux-6.15/lib/
H A Dtest-kstrtox.c266 {"-9223372036854775808", 10, LLONG_MIN}, in test_kstrtoll_ok()
/linux-6.15/Documentation/bpf/standardization/
H A Dinstruction-set.rst334 …SDIV 0x3 1 dst = (src == 0) ? 0 : ((src == -1 && dst == LLONG_MIN) ? LLONG_MIN : (dst …
341 …SMOD 0x9 1 dst = (src == 0) ? dst : ((src == -1 && dst == LLONG_MIN) ? 0: (dst s% src))
352 Otherwise, for ``ALU64``, if execution would result in ``LLONG_MIN``
353 dividing -1, the desination register is instead set to ``LLONG_MIN``. For
360 if execution would resuslt in ``LLONG_MIN`` modulo -1, the destination
/linux-6.15/drivers/iio/test/
H A Diio-test-format.c246 value = LLONG_MIN; in iio_test_iio_format_value_integer_64()
/linux-6.15/tools/testing/selftests/alsa/
H A Dmixer-test.c987 if (snd_ctl_elem_info_get_min64(ctl->info) != LLONG_MIN) { in test_ctl_write_invalid_integer64()
998 snd_ctl_elem_value_set_integer64(val, i, LLONG_MIN); in test_ctl_write_invalid_integer64()
/linux-6.15/drivers/net/bonding/
H A Dbond_alb.c174 max_gap = LLONG_MIN; in tlb_get_least_loaded_slave()
/linux-6.15/kernel/time/
H A Dtimekeeping.c2505 if (LLONG_MIN / PPM_SCALE > txc->freq) in timekeeping_validate_timex()