Home
last modified time | relevance | path

Searched refs:SNUM_MIN_DECIMAL (Results 1 – 2 of 2) sorted by relevance

/linux-6.12.1/kernel/bpf/
Dlog.c557 #define SNUM_MIN_DECIMAL S16_MIN macro
566 return num >= SNUM_MIN_DECIMAL && num <= SNUM_MAX_DECIMAL; in is_snum_decimal()
/linux-6.12.1/tools/testing/selftests/bpf/prog_tests/
Dreg_bounds.c146 #define SNUM_MIN_DECIMAL S16_MIN macro
153 case S64: return (s64)x >= SNUM_MIN_DECIMAL && (s64)x <= SNUM_MAX_DECIMAL; in num_is_small()
154 case S32: return (s32)x >= SNUM_MIN_DECIMAL && (s32)x <= SNUM_MAX_DECIMAL; in num_is_small()