Home
last modified time | relevance | path

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

/linux/kernel/bpf/
H A Dlog.c556 #define SNUM_MAX_DECIMAL S16_MAX macro
566 return num >= SNUM_MIN_DECIMAL && num <= SNUM_MAX_DECIMAL; in is_snum_decimal()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Dreg_bounds.c145 #define SNUM_MAX_DECIMAL S16_MAX 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()