Lines Matching full:known
173 /* If p is const, we can use its compile-time-known len. */ in strnlen()
195 * Do not use this function unless the string length is known at
304 * If size can be known at compile time and is greater than in strscpy()
310 /* Short-circuit for compile-time known-safe lengths. */ in strscpy()
365 * of @p and @q are known to the compiler. Prefer building the
420 * destination buffer size is known to the compiler. Prefer
450 * of @p and @q are known to the compiler. Prefer building the
483 * buffer sizes are also known at compile time. in fortify_memset_chk()
498 * known. (This is not an "else" because the above checks may only in fortify_memset_chk()
505 * field, when the buffer's remaining size is known. in fortify_memset_chk()
542 * memcpy(known, known, constant) | y | y | n/a | n/a |
543 * memcpy(known, unknown, constant) | y | n | n/a | V |
544 * memcpy(known, known, dynamic) | n | n | B | B |
545 * memcpy(known, unknown, dynamic) | n | n | B | V |
546 * memcpy(unknown, known, constant) | n | y | V | n/a |
548 * memcpy(unknown, known, dynamic) | n | n | V | B |
570 * buffer sizes are also known at compile time. in fortify_memcpy_chk()
597 * known. (This is not an "else" because the above checks may only in fortify_memcpy_chk()
604 * field, when the buffer's remaining size is known. in fortify_memcpy_chk()
776 * known to the compiler. Prefer strscpy(), though note its different
790 /* If neither buffer size is known, immediately give up. */ in strcpy()