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

1 23 4

  /prebuilts/python/linux-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
  /device/linaro/bootloader/edk2/CryptoPkg/Include/
OpenSslSupport.h 204 void *memmove (void *, const void *, size_t);
271 #define memmove(dest,source,count) CopyMem(dest,source,(UINTN)(count)) macro
  /libcore/ojluni/src/main/java/java/nio/
ByteBuffer.java 622 // System.arraycopy is intrinsified by art and therefore tiny bit faster than memmove
641 Memory.memmove(dstObject, dstOffset, srcObject, srcOffset, n);
    [all...]
  /external/valgrind/coregrind/
m_libcbase.c 727 void* VG_(memmove)(void *dest, const void *src, SizeT sz) function
m_main.c 2407 void* memmove(void *dest, const void *src, SizeT n) { function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string.h 148 #define memmove(dest, src, n) __memmove_g (dest, src, n) macro
151 __asm__ ("memmove");
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/builtin/
runtime.go 160 func memmove(to *any, frm *any, length uintptr) func
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/builtin/
runtime.go 160 func memmove(to *any, frm *any, length uintptr) func
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/expat/
xmlparse.c 76 /* Handle the case where memmove() doesn't exist. */
79 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
81 #error memmove does not exist on this platform, nor is a substitute available
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/
xmlparse.c 78 /* Handle the case where memmove() doesn't exist. */
81 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
83 #error memmove does not exist on this platform, nor is a substitute available
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/expat/
xmlparse.c 76 /* Handle the case where memmove() doesn't exist. */
79 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
81 #error memmove does not exist on this platform, nor is a substitute available
    [all...]
  /external/expat/lib/
xmlparse.c 164 /* Handle the case where memmove() doesn't exist. */
167 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
169 #error memmove does not exist on this platform, nor is a substitute available
    [all...]
  /external/python/cpython2/Modules/expat/
xmlparse.c 78 /* Handle the case where memmove() doesn't exist. */
81 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
83 #error memmove does not exist on this platform, nor is a substitute available
    [all...]
  /external/python/cpython3/Modules/expat/
xmlparse.c 78 /* Handle the case where memmove() doesn't exist. */
81 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
83 #error memmove does not exist on this platform, nor is a substitute available
    [all...]
  /external/valgrind/coregrind/m_debuginfo/
minilzo-inl.c 2031 # undef memmove macro
2032 # define memmove macro
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /external/libvncserver/common/
minilzo.c 3148 # undef memmove macro
3149 # define memmove macro
    [all...]
  /external/mksh/src/
sh.h 455 /* we assume either memmove or bcopy exist, at the moment */
456 #define memmove(dst, src, len) bcopy((src), (dst), (len)) macro
    [all...]
  /external/pcre/dist2/src/
pcre2_internal.h 188 #define memmove(d,s,n) _memmove(d,s,n) macro
192 /* To cope with SunOS4 and other systems that lack memmove() but have bcopy(),
193 define a macro for memmove() if HAVE_MEMMOVE is false, provided that HAVE_BCOPY
198 #undef memmove /* some systems may have a macro */ macro
200 #define memmove(a, b, c) bcopy(b, a, c) macro
221 #define memmove(a, b, c) pcre2_memmove(a, b, c) macro
    [all...]
  /prebuilts/tools/windows/swt/
swt.jar 
  /prebuilts/tools/windows-x86_64/swt/
swt.jar 

Completed in 965 milliseconds

1 23 4