/external/musl/src/string/x86_64/ |
D | memmove.s | 1 .global memmove symbol 3 memmove: label
|
/external/musl/src/string/i386/ |
D | memmove.s | 1 .global memmove symbol 3 memmove: label
|
/external/clang/test/SemaObjC/ |
D | arc-non-pod-memaccess.m | 9 void *memmove(void *s1, const void *s2, __SIZE_TYPE__ n); function
|
/external/arm-trusted-firmware/lib/libc/ |
D | memmove.c | 9 void *memmove(void *dst, const void *src, size_t len) in memmove() function
|
/external/python/cffi/doc/source/ |
D | ref.rst | 296 .. _ffi-typeof: 297 .. _ffi-sizeof: 298 .. _ffi-alignof:
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | regutils.h | 55 #define memmove(d, s, c) bcopy(s, d, c) macro
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | regutils.h | 55 #define memmove(d, s, c) bcopy(s, d, c) macro
|
/external/musl/src/string/ |
D | memmove.c | 9 void *memmove(void *dest, const void *src, size_t n) in memmove() function
|
/external/llvm/lib/Support/ |
D | regutils.h | 55 #define memmove(d, s, c) bcopy(s, d, c) macro
|
/external/libcups/vcnet/regex/ |
D | utils.h | 21 #define memmove(d, s, c) bcopy(s, d, c) macro
|
/external/pcre/src/ |
D | pcre2_string_utils.c | 63 PRIV(memmove)(void *d, const void *s, size_t n) in PRIV() argument
|
D | pcre2_internal.h | 189 #define memmove(d,s,n) _memmove(d,s,n) macro 198 #define memmove(a, b, c) PRIV(memmove)(a, b, c) macro
|
D | pcre2grep.c | 544 #define memmove(d,s,n) emulated_memmove(d,s,n) macro
|
/external/xz-embedded/linux/lib/ |
D | decompress_unxz.c | 204 void *memmove(void *dest, const void *src, size_t size) in memmove() function
|
/external/iproute2/include/ |
D | bpf_api.h | 239 # define memmove(d, s, n) __builtin_memmove((d), (s), (n)) macro
|
/external/clang/test/Analysis/ |
D | bstring.c | 320 #define memmove(a,b,c) __memmove_chk(a,b,c,(size_t)-1) macro 324 #define memmove BUILTIN(memmove) macro
|
/external/mtools/ |
D | sysincludes.h | 497 # define memmove(DST, SRC, N) bcopy(SRC, DST, N) macro
|
/external/wpa_supplicant_8/src/utils/ |
D | os.h | 644 #define memmove OS_DO_NOT_USE_memmove macro
|
/external/python/cpython2/Lib/ctypes/ |
D | __init__.py | 489 memmove = CFUNCTYPE(c_void_p, c_void_p, c_void_p, c_size_t)(_memmove_addr) variable
|
/external/python/cpython3/Lib/ctypes/ |
D | __init__.py | 496 memmove = CFUNCTYPE(c_void_p, c_void_p, c_void_p, c_size_t)(_memmove_addr) variable
|
/external/python/cffi/cffi/ |
D | api.py | 368 def memmove(self, dest, src, n): member in FFI
|
/external/compiler-rt/lib/asan/ |
D | asan_interceptors.cc | 448 INTERCEPTOR(void*, memmove, void *to, const void *from, uptr size) { in INTERCEPTOR() argument
|
/external/rust/crates/libc/src/windows/ |
D | mod.rs | 365 pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memmove() function
|
/external/compiler-rt/lib/msan/ |
D | msan_interceptors.cc | 156 INTERCEPTOR(void *, memmove, void *dest, const void *src, SIZE_T n) { in INTERCEPTOR() argument
|
/external/rust/crates/libc/src/unix/ |
D | mod.rs | 541 pub fn memmove(dest: *mut c_void, src: *const c_void, n: size_t) -> *mut c_void; in memmove() function
|