/external/syslinux/com32/lib/ |
H A D | memmove.S | 30 * 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 D | memmove.c | 2 * memmove.c 7 void *memmove(void *dst, const void *src, size_t n) function
|
/external/syslinux/dos/ |
H A D | memmove.S | 2 # memmove.S 4 # Simple 16-bit memmove() implementation 9 .globl memmove 10 .type memmove, @function 11 memmove: label 36 .size memmove,.-memmove
|
H A D | string.h | 10 #define memmove(a,b,c) __builtin_memmove(a,b,c) macro
|
/external/syslinux/memdisk/ |
H A D | memmove.S | 29 * 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 D | memmove.c | 2 * memmove.c 7 void *memmove(void *dst, const void *src, size_t n) function
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
H A D | regutils.h | 50 /* 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 D | regutils.h | 53 /* 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 D | regutils.h | 53 /* 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 D | TargetLibraryInfo.h | 26 // 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 D | string.h | 5 * 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 D | decompress_unxz.c | 168 * 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 D | string.c | 244 * 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 D | unit_bitmap.c | 53 void* VG_(memmove)(void *d, const void *s, SizeT sz) function 54 { return memmove(d, s, sz); }
|
/external/clang/test/Analysis/ |
H A D | bstring.c | 312 // 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 D | asan_win_dll_thunk.cc | 396 INTERCEPT_LIBRARY_FUNCTION(memmove); variable
|
/external/syslinux/lzo/src/ |
H A D | lzo_conf.h | 146 # 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 D | os.h | 506 #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 D | os.h | 506 #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 D | os.h | 506 #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__.py | 484 ## 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 D | m_libcbase.c | 727 void* VG_(memmove)(void *dest, const void *src, SizeT sz) function
|
H A D | m_main.c | 2391 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 D | defines.h | 630 # define memmove(s1, s2, n) bcopy((s2), (s1), (n)) macro
|
/external/valgrind/coregrind/m_debuginfo/ |
H A D | minilzo-inl.c | 2031 # 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);
|