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

/bionic/libc/arch-x86/string/
H A Dbcopy.S42 ENTRY(memcpy) function
/bionic/libc/arch-arm/cortex-a15/bionic/
H A Dmemcpy.S56 // Prototype: void *memcpy (void *dst, const void *src, size_t count).
70 // Fall through to memcpy...
74 ENTRY(memcpy) function
84 END(memcpy)
112 .string "memcpy buffer overflow"
/bionic/libc/arch-arm/cortex-a9/bionic/
H A Dmemcpy.S48 // Fall through to memcpy...
52 ENTRY(memcpy) function
64 END(memcpy)
92 .string "memcpy buffer overflow"
/bionic/libc/arch-arm/krait/bionic/
H A Dmemcpy.S51 // Fall through to memcpy...
55 ENTRY(memcpy) function
64 END(memcpy)
92 .string "memcpy buffer overflow"
/bionic/libc/arch-arm/bionic/
H A Dmemcpy.S45 ENTRY(memcpy) function
179 /* Check the upper size limit for Neon unaligned memory access in memcpy */
329 END(memcpy)
336 * Optimized memcpy() for ARM.
338 * note that memcpy() always returns the destination pointer,
342 ENTRY(memcpy) function
683 END(memcpy)
H A Dmemcpy.a15.S29 /* Prototype: void *memcpy (void *dst, const void *src, size_t count). */
31 /* Use the version of memcpy implemented using LDRD and STRD.
36 and this version is better than the plain memcpy provided in newlib.
52 ENTRY(memcpy) function
192 /* This is the only return point of memcpy. */
406 END(memcpy)
H A Dmemcpy.a9.S34 This memcpy routine is optimised for Cortex-A15 cores and takes advantage
151 ENTRY(memcpy) function
614 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/arch-arm/generic/bionic/
H A Dmemcpy.S34 * Optimized memcpy() for ARM.
36 * note that memcpy() always returns the destination pointer,
44 // Fall through to memcpy...
47 ENTRY(memcpy) function
400 END(memcpy)
404 .string "memcpy buffer overflow"
/bionic/libc/include/
H A Dstring.h41 extern void* memcpy(void* __restrict, const void* __restrict, size_t);
90 __errordecl(__memcpy_dest_size_error, "memcpy called with size bigger than destination");
91 __errordecl(__memcpy_src_size_error, "memcpy called with size bigger than source");
94 void* memcpy(void* __restrict dest, const void* __restrict src, size_t copy_amount) { function

Completed in 208 milliseconds