Searched defs:memcpy (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/arch-x86/string/
H A Dbcopy.S42 ENTRY(memcpy) function
/bionic/libc/arch-arm/bionic/
H A Dmemcpy.S47 ENTRY(memcpy) function
167 END(memcpy)
174 * Optimized memcpy() for ARM.
176 * note that memcpy() always returns the destination pointer,
180 ENTRY(memcpy) function
521 END(memcpy)
/bionic/libc/string/
H A Dbcopy.c48 * (the portable versions of) bcopy, memcpy, and memmove.
52 memcpy(void *dst0, const void *src0, size_t length) function
/bionic/libc/include/
H A Dstring.h41 extern void* memcpy(void *, const void *, size_t);
91 __attribute__((__error__("memcpy called with size bigger than destination")));
93 __attribute__((__error__("memcpy called with size bigger than source")));
95 __attribute__((__error__("memcpy called with overlapping regions")));
98 void *memcpy (void *dest, const void *src, size_t copy_amount) { function

Completed in 891 milliseconds