Lines Matching refs:src
46 void* _Nonnull memcpy(void* _Nonnull const dst __pass_object_size0, const void* _Nonnull src, size_… in memcpy() argument
49 return __builtin___memcpy_chk(dst, src, copy_amount, __bos0(dst)); in memcpy()
54 void* _Nonnull memmove(void* _Nonnull const dst __pass_object_size0, const void* _Nonnull src, size… in memmove() argument
57 return __builtin___memmove_chk(dst, src, len, __bos0(dst)); in memmove()
64 void* _Nonnull mempcpy(void* _Nonnull const dst __pass_object_size0, const void* _Nonnull src, size… in mempcpy() argument
72 return __builtin___mempcpy_chk(dst, src, copy_amount, bos_dst); in mempcpy()
75 return __builtin_mempcpy(dst, src, copy_amount); in mempcpy()
81 char* _Nonnull stpcpy(char* _Nonnull const dst __pass_object_size, const char* _Nonnull src) in stpcpy() argument
83 __clang_error_if(__bos_unevaluated_le(__bos(dst), __builtin_strlen(src)), in stpcpy()
86 return __builtin___stpcpy_chk(dst, src, __bos(dst)); in stpcpy()
88 return __builtin_stpcpy(dst, src); in stpcpy()
93 char* _Nonnull strcpy(char* _Nonnull const dst __pass_object_size, const char* _Nonnull src) in strcpy() argument
96 __clang_error_if(__bos_unevaluated_le(__bos(dst), __builtin_strlen(src)), in strcpy()
99 return __builtin___strcpy_chk(dst, src, __bos(dst)); in strcpy()
101 return __builtin_strcpy(dst, src); in strcpy()
106 char* _Nonnull strcat(char* _Nonnull const dst __pass_object_size, const char* _Nonnull src) in strcat() argument
108 __clang_error_if(__bos_unevaluated_le(__bos(dst), __builtin_strlen(src)), in strcat()
111 return __builtin___strcat_chk(dst, src, __bos(dst)); in strcat()
113 return __builtin_strcat(dst, src); in strcat()
120 char* _Nonnull strncat(char* _Nonnull const dst __pass_object_size, const char* _Nonnull src, size_… in strncat() argument
123 return __builtin___strncat_chk(dst, src, n, __bos(dst)); in strncat()
167 char* _Nonnull stpncpy(char* _Nonnull const dst __pass_object_size, const char* _Nonnull const src … in stpncpy()
171 size_t bos_src = __bos(src); in stpncpy()
175 return __builtin___stpncpy_chk(dst, src, n, bos_dst); in stpncpy()
178 return __stpncpy_chk2(dst, src, n, bos_dst, bos_src); in stpncpy()
183 char* _Nonnull strncpy(char* _Nonnull const dst __pass_object_size, const char* _Nonnull const src … in strncpy()
187 size_t bos_src = __bos(src); in strncpy()
191 return __builtin___strncpy_chk(dst, src, n, bos_dst); in strncpy()
194 return __strncpy_chk2(dst, src, n, bos_dst, bos_src); in strncpy()
199 size_t strlcpy(char* _Nonnull const dst __pass_object_size, const char* _Nonnull src, size_t size) in strlcpy() argument
204 return __strlcpy_chk(dst, src, size, __bos(dst)); in strlcpy()
206 return __call_bypassing_fortify(strlcpy)(dst, src, size); in strlcpy()
211 size_t strlcat(char* _Nonnull const dst __pass_object_size, const char* _Nonnull src, size_t size) in strlcat() argument
216 return __strlcat_chk(dst, src, size, __bos(dst)); in strlcat()
218 return __call_bypassing_fortify(strlcat)(dst, src, size); in strlcat()