HomeSort by relevance Sort by last modified time
    Searched defs:memmove (Results 26 - 50 of 85) sorted by null

12 3 4

  /external/xz-embedded/linux/lib/
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
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/lib/gcc/x86_64-linux/4.8/include/ssp/
string.h 44 #undef memmove macro
67 #define memmove(dest, src, len) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/ssp/
string.h 44 #undef memmove macro
67 #define memmove(dest, src, len) \ macro
  /external/syslinux/gpxe/src/core/
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/
unit_bitmap.c 53 void* VG_(memmove)(void *d, const void *s, SizeT sz) function
54 { return memmove(d, s, sz); }
  /frameworks/base/media/java/android/media/
ImageUtils.java 274 Memory.memmove(dstBuffer, dstOffset, srcBuffer, srcOffset, srcByteCount);
  /libcore/luni/src/main/java/libcore/io/
Memory.java 152 public static native void memmove(Object dstObject, int dstOffset, Object srcObject, int srcOffset, long byteCount); method in class:Memory
  /libcore/ojluni/src/main/java/java/nio/
ByteBufferAsDoubleBuffer.java 142 Memory.memmove(this, ix(0), this, ix(pos), rem << 3);
ByteBufferAsFloatBuffer.java 141 Memory.memmove(this, ix(0), this, ix(pos), rem << 2);
ByteBufferAsIntBuffer.java 141 Memory.memmove(this, ix(0), this, ix(pos), rem << 2);
ByteBufferAsLongBuffer.java 141 Memory.memmove(this, ix(0), this, ix(pos), rem << 3);
ByteBufferAsShortBuffer.java 140 Memory.memmove(this, ix(0), this, ix(pos), rem << 1);
ByteBufferAsCharBuffer.java 145 Memory.memmove(this, ix(0), this, ix(pos), rem << 1);
  /bionic/libc/arch-mips/string/
memmove.c 386 memmove (void *dst0, const void *src0, size_t length) function
  /external/compiler-rt/lib/asan/
asan_win_dll_thunk.cc 396 INTERCEPT_LIBRARY_FUNCTION(memmove); variable
  /external/wpa_supplicant_8/src/utils/
os.h 506 #define os_memmove(d, s, n) memmove((d), (s), (n))
644 #define memmove OS_DO_NOT_USE_memmove macro
  /external/clang/test/Analysis/
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/python/cpython2/Lib/ctypes/
__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/python/cpython3/Lib/ctypes/
__init__.py 470 ## void *memmove(void *, const void *, size_t);
471 memmove = CFUNCTYPE(c_void_p, c_void_p, c_void_p, c_size_t)(_memmove_addr) variable
  /external/syslinux/lzo/src/
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)
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/
__init__.py 487 ## void *memmove(void *, const void *, size_t);
488 memmove = CFUNCTYPE(c_void_p, c_void_p, c_void_p, c_size_t)(_memmove_addr) variable
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/
__init__.py 487 ## void *memmove(void *, const void *, size_t);
488 memmove = CFUNCTYPE(c_void_p, c_void_p, c_void_p, c_size_t)(_memmove_addr) variable
  /prebuilts/go/darwin-x86/src/runtime/
stubs.go 80 // memmove copies n bytes from "from" to "to".
83 func memmove(to, from unsafe.Pointer, n uintptr) func
85 //go:linkname reflect_memmove reflect.memmove
87 memmove(to, from, n)
  /prebuilts/go/linux-x86/src/runtime/
stubs.go 80 // memmove copies n bytes from "from" to "to".
83 func memmove(to, from unsafe.Pointer, n uintptr) func
85 //go:linkname reflect_memmove reflect.memmove
87 memmove(to, from, n)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/
__init__.py 487 ## void *memmove(void *, const void *, size_t);
488 memmove = CFUNCTYPE(c_void_p, c_void_p, c_void_p, c_size_t)(_memmove_addr) variable

Completed in 244 milliseconds

12 3 4