Lines Matching full:known
227 /* If p is const, we can use its compile-time-known len. */ in strnlen()
249 * Do not use this function unless the string length is known at
289 * If size can be known at compile time and is greater than in sized_strscpy()
295 /* Short-circuit for compile-time known-safe lengths. */ in sized_strscpy()
350 * of @p and @q are known to the compiler. Prefer building the
405 * destination buffer size is known to the compiler. Prefer
436 * of @p and @q are known to the compiler. Prefer building the
470 * buffer sizes are also known at compile time. in fortify_memset_chk()
485 * known. (This is not an "else" because the above checks may only in fortify_memset_chk()
492 * field, when the buffer's remaining size is known. in fortify_memset_chk()
530 * memcpy(known, known, constant) | y | y | n/a | n/a |
531 * memcpy(known, unknown, constant) | y | n | n/a | V |
532 * memcpy(known, known, dynamic) | n | n | B | B |
533 * memcpy(known, unknown, dynamic) | n | n | B | V |
534 * memcpy(unknown, known, constant) | n | y | V | n/a |
536 * memcpy(unknown, known, dynamic) | n | n | V | B |
558 * buffer sizes are also known at compile time. in fortify_memcpy_chk()
585 * known. (This is not an "else" because the above checks may only in fortify_memcpy_chk()
592 * field, when the buffer's remaining size is known. in fortify_memcpy_chk()
765 * known to the compiler. Prefer strscpy(), though note its different
779 /* If neither buffer size is known, immediately give up. */ in strcpy()