HomeSort by relevance Sort by last modified time
    Searched defs:memmove (Results 1 - 25 of 37) sorted by null

1 2

  /bionic/libc/arch-x86/string/
bcopy.S 44 #ifdef MEMMOVE
45 ENTRY(memmove) function
52 #if defined(MEMCOPY) || defined(MEMMOVE)
  /bionic/libc/string/
memmove.c 31 void *memmove(void *dst, const void *src, size_t n) function
  /external/llvm/lib/Support/
regutils.h 50 /* for old systems with bcopy() but no memmove() */
52 #define memmove(d, s, c) bcopy(s, d, c) macro
  /external/valgrind/tsan/
ts_valgrind_libc.cc 37 // can't use VG_(memmove) since it is buggy.
38 extern "C" void * memmove(void *a, const void *b, unsigned long size) { function
  /bionic/libc/regex/
utils.h 52 /* for old systems with bcopy() but no memmove() */
54 #define memmove(d, s, c) bcopy(s, d, c) macro
  /ndk/sources/host-tools/ndk-stack/regex/
utils.h 52 /* for old systems with bcopy() but no memmove() */
54 #define memmove(d, s, c) bcopy(s, d, c) macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xfuncs.h 56 #define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len))
75 #define memmove(dst,src,len) bcopy((char *)(src),(char *)(dst),(int)(len)) macro
77 #undef memmove macro
78 #define memmove(dst,src,len) _XBCOPYFUNC((char *)(src),(char *)(dst),(int)(len)) macro
82 #define memmove(dst,src,len) bcopy((char *)(src),(char *)(dst),(int)(len)) macro
93 #define bcopy(b1,b2,len) memmove(b2, b1, (size_t)(len))
  /external/expat/amiga/
stdlib.c 99 void * memmove (void * t1, const void * t2, size_t len) function
  /external/expat/vms/
expat_config.h 28 /* Define if you have the memmove function. */
47 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
49 #define memmove(d,s,l) ;punting on memmove; macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
string3.h 31 # undef memmove macro
56 __NTH (memmove (void *__restrict __dest, __const void *__restrict __src, function
  /bionic/libc/arch-sh/bionic/
memcpy.S 33 #if !defined(MEMCOPY) && !defined(MEMMOVE) && !defined(BCOPY)
37 #if defined(MEMCOPY) || defined(MEMMOVE)
50 #elif defined(MEMMOVE)
51 ENTRY(memmove) function
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 26 // void *memmove(void *s1, const void *s2, size_t n);
27 memmove, enumerator in enum:llvm::LibFunc::Func
  /external/grub/netboot/
linux-asm-string.h 3 * All except memcpy, memmove, memset and memcmp removed.
26 extern void *memmove(void * dest,const void * src, size_t n);
128 extern inline void * memmove(void * dest,const void * src, size_t n) function
  /external/qemu/slirp-android/
slirp.h 90 #define memmove(x, y, z) bcopy(y, x, z) macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include/ssp/
string.h 44 #undef memmove macro
67 #define memmove(dest, src, len) \ macro
  /external/qemu/slirp/
slirp.h 98 #define memmove(x, y, z) bcopy(y, x, z) macro
  /libcore/luni/src/main/java/java/nio/
ReadWriteDirectByteBuffer.java 65 Memory.memmove(this, 0, this, position, remaining());
  /libcore/luni/src/main/java/libcore/io/
Memory.java 151 public static native void memmove(Object dstObject, int dstOffset, Object srcObject, int srcOffset, long byteCount); method in class:Memory
  /external/clang/test/Analysis/
bstring.c 274 // memmove()
282 #define memmove(a,b,c) __memmove_chk(a,b,c,(size_t)-1) macro
286 #define memmove BUILTIN(memmove) macro
287 void *memmove(void *s1, const void *s2, size_t n);
296 memmove(dst, src, 4); // no-warning
298 if (memmove(dst, src, 4) != dst) {
310 memmove(dst, src, 5); // expected-warning{{out-of-bound}}
317 memmove(dst, src, 4); // expected-warning{{overflow}}
  /external/libvpx/vpx_mem/
vpx_mem.h 120 # define memmove vpx_memmove macro
167 # define vpx_memmove memmove
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_qsort.c 57 #define memmove SDL_memmove macro
244 memmove(test+size,test,first-test); \
  /external/wpa_supplicant/
os.h 396 #define os_memmove(d, s, n) memmove((d), (s), (n))
464 #define memmove OS_DO_NOT_USE_memmove macro
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
os.h 396 #define os_memmove(d, s, n) memmove((d), (s), (n))
477 #define memmove OS_DO_NOT_USE_memmove macro
  /external/wpa_supplicant_8/src/utils/
os.h 410 #define os_memmove(d, s, n) memmove((d), (s), (n))
484 #define memmove OS_DO_NOT_USE_memmove macro
  /external/valgrind/main/coregrind/
m_libcbase.c 429 void* VG_(memmove)(void *dest, const void *src, SizeT sz) function

Completed in 4476 milliseconds

1 2