Home
last modified time | relevance | path

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

/linux/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.c775 __description("SDIV64, overflow r/r, LLONG_MIN/-1")
805 : __imm_const(llong_min, LLONG_MIN) in sdiv64_overflow_rr()
839 __description("SDIV64, overflow r/i, LLONG_MIN/-1")
860 : __imm_const(llong_min, LLONG_MIN) in sdiv64_overflow_ri()
1001 __description("SMOD64, overflow r/r, LLONG_MIN/-1")
1026 : __imm_const(llong_min, LLONG_MIN) in smod64_overflow_rr()
1061 __description("SMOD64, overflow r/i, LLONG_MIN/-1")
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/tools/include/nolibc/
H A Dstdint.h121 #ifndef LLONG_MIN
122 #define LLONG_MIN (-__LONG_LONG_MAX__ - 1) macro
H A Dstdlib.h522 return __strtox(nptr, endptr, base, LLONG_MIN, LLONG_MAX); in strtoul()
/linux/include/vdso/
H A Dlimits.h15 #define LLONG_MIN (-LLONG_MAX - 1) macro
/linux/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 divided by -1, the destination register is instead set to ``LLONG_MIN``. For
360 if execution would resuslt in ``LLONG_MIN`` modulo -1, the destination
/linux/tools/testing/selftests/alsa/
H A Dmixer-test.c988 if (snd_ctl_elem_info_get_min64(ctl->info) != LLONG_MIN) { in test_ctl_write_invalid_integer64()
999 snd_ctl_elem_value_set_integer64(val, i, LLONG_MIN); in test_ctl_write_invalid_integer64()
/linux/drivers/net/bonding/
H A Dbond_alb.c174 max_gap = LLONG_MIN; in tlb_get_least_loaded_slave()