Lines Matching defs:src

182 #define memcpy(dst, src, n)             __builtin___memcpy_chk(dst, src, n, __xnu_bos_default(dst))  argument
183 #define __nochk_memcpy(dst, src, n) __builtin___memcpy_chk(dst, src, n, __xnu_bos_loose(dst)) argument
185 #define memcpy(dst, src, n) __builtin_memcpy(dst, src, n) argument
186 #define __nochk_memcpy(dst, src, n) memcpy(dst, src, n) argument
188 #define __nochk_memcpy(dst, src, n) memcpy(dst, src, n) argument
195 #define memmove(dst, src, n) __builtin___memmove_chk(dst, src, n, __xnu_bos_default(dst)) argument
196 #define bcopy(src, dst, n) __builtin___memmove_chk(dst, src, n, __xnu_bos_default(dst)) argument
197 #define __nochk_memmove(dst, src, n) __builtin___memmove_chk(dst, src, n, __xnu_bos_loose(dst)) argument
198 #define __nochk_bcopy(src, dst, n) __builtin___memmove_chk(dst, src, n, __xnu_bos_loose(dst)) argument
200 #define memmove(dst, src, n) __builtin_memmove(dst, src, n) argument
201 #define bcopy(src, dst, n) __builtin_memmove(dst, src, n) argument
202 #define __nochk_memmove(dst, src, n) memmove(dst, src, n) argument
203 #define __nochk_bcopy(src, dst, n) bcopy(src, dst, n) argument
205 #define __nochk_memmove(dst, src, n) memmove(dst, src, n) argument
206 #define __nochk_bcopy(src, dst, n) bcopy(src, dst, n) argument
273 #define strlcpy(dst, src, n) __builtin___strlcpy_chk(dst, src, n, __xnu_bos_strict(dst)) argument
275 #define strlcpy(dst, src, n) __builtin_strlcpy(dst, src, n) argument
281 #define strlcat(dst, src, n) __builtin___strlcat_chk(dst, src, n, __xnu_bos_strict(dst)) argument
283 #define strlcat(dst, src, n) __builtin_strlcat(dst, src, n) argument
304 #define strncat(dst, src, n) __builtin___strncat_chk(dst, src, n, __xnu_bos_strict(dst)) argument
312 #define strncpy(dst, src, n) __builtin___strncpy_chk(dst, src, n, __xnu_bos_strict(dst)) argument
320 #define strcpy(dst, src, len) __builtin___strcpy_chk(dst, src, __xnu_bos_strict(dst)) argument
327 #define strcat(dst, src) __builtin___strcat_chk(dst, src, __xnu_bos_strict(dst)) argument