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

12

/external/syslinux/com32/lib/
H A Dmemcpy.S29 * memcpy.S
31 * Reasonably efficient memcpy, using aligned transfers at least
36 .globl memcpy
37 .type memcpy, @function
38 memcpy: label
90 .size memcpy, .-memcpy
H A Dmemcpy.c2 * memcpy.c
8 void *memcpy(void *dst, const void *src, size_t n) function
/external/syslinux/dos/
H A Dmemcpy.S2 # memcpy.S
4 # Simple 16-bit memcpy() implementation
9 .globl memcpy
10 .type memcpy, @function
11 memcpy: label
23 .size memcpy,.-memcpy
H A Dstring.h9 #define memcpy(a,b,c) __builtin_memcpy(a,b,c) macro
/external/syslinux/memdisk/
H A Dmemcpy.S29 * memcpy.S
31 * Reasonably efficient memcpy, using aligned transfers at least
36 .globl memcpy
37 .type memcpy, @function
38 memcpy: label
86 .size memcpy, .-memcpy
H A Dmemcpy.c2 * memcpy.c
8 void *memcpy(void *dst, const void *src, size_t n) function
/external/vboot_reference/firmware/lib/include/
H A Dutility.h112 #define memcpy _do_not_use_standard_memcpy macro
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorDeviceDefault.h24 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void memcpy(void* dst, const void* src, size_t n) const { function in struct:Eigen::DefaultDevice
25 ::memcpy(dst, src, n);
28 memcpy(dst, src, n);
31 memcpy(dst, src, n);
H A DTensorDeviceSycl.h93 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void memcpy(void *dst, const void *src, size_t n) const { function in struct:Eigen::SyclDevice
94 ::memcpy(dst, src, n);
99 memcpy(host_acc.get_pointer(), src, n);
106 memcpy(dst,host_acc.get_pointer(), n);
H A DTensorDeviceCuda.h213 EIGEN_DEVICE_FUNC EIGEN_STRONG_INLINE void memcpy(void* dst, const void* src, size_t n) const { function
H A DTensorDeviceThreadPool.h119 EIGEN_STRONG_INLINE void memcpy(void* dst, const void* src, size_t n) const { function in struct:Eigen::ThreadPoolDevice
120 ::memcpy(dst, src, n);
123 memcpy(dst, src, n);
126 memcpy(dst, src, n);
/external/libavc/common/arm/
H A Dih264_mem_fns_neon.s49 @* memcpy of a 1d array
52 @* Does memcpy of 8bit data from source to destination for 8,16 or 32 number of bytes
112 blt memcpy
123 memcpy: label
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetLibraryInfo.h23 // void *memcpy(void *s1, const void *s2, size_t n);
24 memcpy, enumerator in enum:llvm::LibFunc::Func
/external/clang/test/Sema/
H A Dbuiltin-object-size.c32 void * memcpy(void *restrict dst, const void *restrict src, size_t n);
35 #define memcpy(dest, src, len) __builtin___memcpy_chk(dest, src, len, __builtin_object_size(dest, 0)) macro
43 memcpy((char *)NULL + 0x10000, buf, 0x10);
/external/libchrome/sandbox/win/src/
H A Dsandbox_nt_types.h34 memcpyFunction memcpy; member in struct:sandbox::NtExports
/external/nanopb-c/extra/
H A Dpb_syshdr.h82 static void * memcpy( void *s1, const void *s2, size_t n ) function
/external/e2fsprogs/e2fsck/
H A Dmtrace.h87 #ifndef memcpy
88 #define memcpy(d, s, n) bcopy ((s), (d), (n)) macro
/external/netperf/src/missing/
H A Dgetaddrinfo.c66 * AC_CHECK_FUNCS(memcpy)
123 #define memcpy(d, s, n) bcopy((s), (d), (n)) macro
488 memcpy(&sa_in->sin_addr, *ap, sizeof(struct in_addr));
/external/syslinux/gpxe/src/arch/x86/include/bits/
H A Dstring.h5 * All except memcpy, memmove, memset and memcmp removed.
153 #define memcpy( dest, src, len ) \ macro
/external/valgrind/coregrind/m_demangle/
H A Dvg_libciface.h51 #define memcpy(_dd,_ss,_sz) VG_(memcpy)((_dd),(_ss),(_sz)) macro
/external/eigen/bench/tensors/
H A Dtensor_benchmarks.h36 void memcpy(int num_iters) { function in class:BenchmarkSuite
40 device_.memcpy(c_, a_, m_ * m_ * sizeof(T));
/external/syslinux/gpxe/src/core/
H A Dstring.c223 * memcpy - Copy one area of memory to another
231 void * memcpy(void * dest,const void *src,size_t count) function
249 * Unlike memcpy(), memmove() copes with overlapping areas.
348 memcpy(new,s,len);
/external/valgrind/drd/tests/
H A Dunit_bitmap.c49 void* VG_(memcpy)(void *d, const void *s, SizeT sz) function
50 { return memcpy(d, s, sz); }
H A Dunit_vc.c37 void* VG_(memcpy)(void *d, const void *s, SizeT sz) function
38 { return memcpy(d, s, sz); }
/external/clang/test/Analysis/
H A Dbstring.c11 // path, such as memcpy and __memcpy_chk, or memcmp and bcmp. If VARIANT is
19 // declared carefully! See memcpy() for an example.
32 // memcpy()
41 #define memcpy(a,b,c) __memcpy_chk(a,b,c,(size_t)-1) macro
45 #define memcpy BUILTIN(memcpy) macro
46 void *memcpy(void *restrict s1, const void *restrict s2, size_t n);
55 memcpy(dst, src, 4); // no-warning
57 clang_analyzer_eval(memcpy(dst, src, 4) == dst); // expected-warning{{TRUE}}
68 memcpy(ds
[all...]

Completed in 1871 milliseconds

12