Lines Matching refs:bos_val
298 #define __bos_unevaluated_lt(bos_val, val) \ argument
299 ((bos_val) != __BIONIC_FORTIFY_UNKNOWN_SIZE && (bos_val) < (val))
301 #define __bos_unevaluated_le(bos_val, val) \ argument
302 ((bos_val) != __BIONIC_FORTIFY_UNKNOWN_SIZE && (bos_val) <= (val))
305 #define __bos_dynamic_check_impl_and(bos_val, op, index, cond) \ argument
306 ((bos_val) == __BIONIC_FORTIFY_UNKNOWN_SIZE || \
307 (__builtin_constant_p(index) && bos_val op index && (cond)))
309 #define __bos_dynamic_check_impl(bos_val, op, index) \ argument
310 __bos_dynamic_check_impl_and(bos_val, op, index, 1)
312 #define __bos_trivially_ge(bos_val, index) __bos_dynamic_check_impl((bos_val), >=, (index)) argument
313 #define __bos_trivially_gt(bos_val, index) __bos_dynamic_check_impl((bos_val), >, (index)) argument