Lines Matching defs:END
527 * Assert that LHS is in the range [BEG, END] (inclusive of both). This
529 * that both BEG and END must be constant values, and must fit within the
536 #define bpf_assert_range(LHS, BEG, END) \
538 _Static_assert(BEG <= END, "BEG must be <= END"); \
541 __bpf_assert_op(LHS, <=, END, 0, false); \
545 * Assert that LHS is in the range [BEG, END] (inclusive of both). This
547 * that both BEG and END must be constant values, and must fit within the
554 #define bpf_assert_range_with(LHS, BEG, END, value) \
556 _Static_assert(BEG <= END, "BEG must be <= END"); \
559 __bpf_assert_op(LHS, <=, END, value, false); \