Searched refs:LLONG_MIN (Results 1 – 9 of 9) sorted by relevance
| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | verifier_div_overflow.c | 57 : __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 D | verifier_sdiv.c | 775 __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 D | exceptions_assert.c | 28 check_assert(s64, ==, eq_llong_min, LLONG_MIN);
|
| /linux/tools/include/nolibc/ |
| H A D | stdint.h | 121 #ifndef LLONG_MIN 122 #define LLONG_MIN (-__LONG_LONG_MAX__ - 1) macro
|
| H A D | stdlib.h | 522 return __strtox(nptr, endptr, base, LLONG_MIN, LLONG_MAX); in strtoul()
|
| /linux/include/vdso/ |
| H A D | limits.h | 15 #define LLONG_MIN (-LLONG_MAX - 1) macro
|
| /linux/Documentation/bpf/standardization/ |
| H A D | instruction-set.rst | 334 …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 D | mixer-test.c | 988 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 D | bond_alb.c | 174 max_gap = LLONG_MIN; in tlb_get_least_loaded_slave()
|