Searched defs:memmove (Results 1 - 25 of 36) sorted by relevance

12

/external/syslinux/com32/lib/
H A Dmemmove.S30 * memmove.S
32 * Reasonably efficient memmove, using aligned transfers at least
36 .globl memmove
37 .type memmove,@function
39 memmove: label
150 .size memmove, .-memmove
H A Dmemmove.c2 * memmove.c
7 void *memmove(void *dst, const void *src, size_t n) function
/external/syslinux/dos/
H A Dmemmove.S2 # memmove.S
4 # Simple 16-bit memmove() implementation
9 .globl memmove
10 .type memmove, @function
11 memmove: label
36 .size memmove,.-memmove
H A Dstring.h10 #define memmove(a,b,c) __builtin_memmove(a,b,c) macro
/external/syslinux/memdisk/
H A Dmemmove.S29 * memmove.S
31 * Reasonably efficient memmove, using aligned transfers at least
35 .globl memmove
36 .type memmove,@function
38 memmove: label
139 .size memmove, .-memmove
H A Dmemmove.c2 * memmove.c
7 void *memmove(void *dst, const void *src, size_t n) function
/external/swiftshader/third_party/LLVM/lib/Support/
H A Dregutils.h50 /* for old systems with bcopy() but no memmove() */
52 #define memmove(d, s, c) bcopy(s, d, c) macro
/external/llvm/lib/Support/
H A Dregutils.h53 /* for old systems with bcopy() but no memmove() */
55 #define memmove(d, s, c) bcopy(s, d, c) macro
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A Dregutils.h53 /* for old systems with bcopy() but no memmove() */
55 #define memmove(d, s, c) bcopy(s, d, c) macro
/external/swiftshader/third_party/LLVM/include/llvm/Target/
H A DTargetLibraryInfo.h26 // void *memmove(void *s1, const void *s2, size_t n);
27 memmove, enumerator in enum:llvm::LibFunc::Func
/external/syslinux/gpxe/src/arch/x86/include/bits/
H A Dstring.h5 * All except memcpy, memmove, memset and memcmp removed.
159 static inline void * memmove(void * dest,const void * src, size_t n) function
/external/xz-embedded/linux/lib/
H A Ddecompress_unxz.c168 * is fast enough. memcpy/memmove speed matters in multi-call mode, but
202 #ifndef memmove
204 void *memmove(void *dest, const void *src, size_t size) function
224 * Since we need memmove anyway, would use it as memcpy too.
229 # define memcpy memmove
/external/syslinux/gpxe/src/core/
H A Dstring.c244 * memmove - Copy one area of memory to another
249 * Unlike memcpy(), memmove() copes with overlapping areas.
251 void * memmove(void * dest,const void *src,size_t count) function
/external/valgrind/drd/tests/
H A Dunit_bitmap.c53 void* VG_(memmove)(void *d, const void *s, SizeT sz) function
54 { return memmove(d, s, sz); }
/external/clang/test/Analysis/
H A Dbstring.c312 // memmove()
320 #define memmove(a,b,c) __memmove_chk(a,b,c,(size_t)-1) macro
324 #define memmove BUILTIN(memmove) macro
325 void *memmove(void *s1, const void *s2, size_t n);
334 memmove(dst, src, 4); // no-warning
336 clang_analyzer_eval(memmove(dst, src, 4) == dst); // expected-warning{{TRUE}}
347 memmove(dst, src, 5); // expected-warning{{out-of-bound}}
354 memmove(dst, src, 4); // expected-warning{{overflow}}
/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc396 INTERCEPT_LIBRARY_FUNCTION(memmove); variable
/external/syslinux/lzo/src/
H A Dlzo_conf.h146 # undef memmove macro
147 # define memmove(a,b,c) lzo_memmove(a,b,c) macro
150 # define lzo_memmove(a,b,c) memmove(a,b,c)
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h506 #define os_memmove(d, s, n) memmove((d), (s), (n))
632 #define memmove OS_DO_NOT_USE_memmove macro
/external/wpa_supplicant_8/src/utils/
H A Dos.h506 #define os_memmove(d, s, n) memmove((d), (s), (n))
632 #define memmove OS_DO_NOT_USE_memmove macro
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h506 #define os_memmove(d, s, n) memmove((d), (s), (n))
632 #define memmove OS_DO_NOT_USE_memmove macro
/external/python/cpython2/Lib/ctypes/
H A D__init__.py484 ## void *memmove(void *, const void *, size_t);
485 memmove = CFUNCTYPE(c_void_p, c_void_p, c_void_p, c_size_t)(_memmove_addr) variable
/external/valgrind/coregrind/
H A Dm_libcbase.c727 void* VG_(memmove)(void *dest, const void *src, SizeT sz) function
H A Dm_main.c2391 1. gcc may emit calls to memcpy, memmove and memset to deal with
2406 void* memmove(void *dest, const void *src, SizeT n);
2407 void* memmove(void *dest, const void *src, SizeT n) { function
2408 return VG_(memmove)(dest,src,n);
/external/openssh/
H A Ddefines.h630 # define memmove(s1, s2, n) bcopy((s2), (s1), (n)) macro
/external/valgrind/coregrind/m_debuginfo/
H A Dminilzo-inl.c2031 # undef memmove macro
2032 # define memmove(a,b,c) lzo_memmove(a,b,c) macro
2035 # define lzo_memmove(a,b,c) memmove(a,b,c)
2518 return memmove(dest, src, len);

Completed in 766 milliseconds

12