Lines Matching full:bounds
130 * unsafe_memcpy - memcpy implementation with no FORTIFY bounds checking
139 * very rarely, and includes a place for justification detailing where bounds
159 #define __compiletime_lessthan(bounds, length) ( \ argument
160 __builtin_constant_p((bounds) < (length)) && \
161 (bounds) < (length) \
469 * can perform compile-time bounds checking where in fortify_memset_chk()
484 * so run-time bounds checking can be done where buffer sizes are in fortify_memset_chk()
525 * Bounds checking at:
540 * y = perform deterministic compile-time bounds checking
541 * n = cannot perform deterministic compile-time bounds checking
542 * n/a = no run-time bounds checking needed since compile-time deterministic
543 * B = can perform run-time bounds checking (currently unimplemented)
557 * can perform compile-time bounds checking where in fortify_memcpy_chk()
584 * so run-time bounds checking can be done where buffer sizes are in fortify_memcpy_chk()
606 * array member, which means there will be many bounds checks in fortify_memcpy_chk()
642 /* silence compile-time false positive bounds warnings. */ \