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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-x86/atom/string/
ssse3-memmove-atom.S 32 #define MEMCPY memmove
  /external/clang/test/Analysis/
redefined_system.c 6 char memmove ();
16 return memmove() + malloc() + system() + stdin() + memccpy() + free() + strdup() + atoi();
  /external/syslinux/dos/
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
  /external/compiler-rt/lib/builtins/arm/
aeabi_memmove.S 1 //===-- aeabi_memmove.S - EABI memmove implementation --------------------===//
12 // void __aeabi_memmove(void *dest, void *src, size_t n) { memmove(dest, src, n); }
16 b memmove
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
copy.cpp 86 memmove(y, x, L*sizeof(*x));
  /external/clang/test/CodeGenCXX/
builtins.cpp 4 extern "C" char memmove();
7 // CHECK: call {{signext i8|i8}} @memmove()
8 return memmove();
  /external/llvm/lib/Support/
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/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/swiftshader/third_party/llvm-subzero/lib/Support/
regutils.h 53 /* for old systems with bcopy() but no memmove() */
55 #define memmove(d, s, c) bcopy(s, d, c) macro
  /toolchain/binutils/binutils-2.27/libiberty/
memmove.c 1 /* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
6 @deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, @
22 memmove (PTR s1, const PTR s2, size_t n) function
  /external/elfutils/libelf/
chdr_xlate.h 14 memmove (dest, src, len);
29 memmove (dest, src, len);
  /bionic/libc/upstream-freebsd/lib/libc/string/
wmemmove.c 43 return (wchar_t *)memmove(d, s, n * sizeof(wchar_t));
  /bionic/libc/upstream-netbsd/lib/libc/regex/
utils.h 88 /* for old systems with bcopy() but no memmove() */
90 #define memmove(d, s, c) bcopy(s, d, c) macro
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
UefiLzma.h 42 #define memmove CopyMem macro
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/
UefiLzma.h 42 #define memmove CopyMem macro
  /external/syslinux/com32/lib/
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
memmove.c 2 * memmove.c
7 void *memmove(void *dst, const void *src, size_t n) function
  /external/syslinux/memdisk/
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
memmove.c 2 * memmove.c
7 void *memmove(void *dst, const void *src, size_t n) function
  /device/linaro/bootloader/edk2/ArmPkg/Library/GccLto/
liblto-arm.s 39 .long memmove - .
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
pvamrwbdecoder_mem_funcs.h 62 #define pv_memmove(to, from, n) memmove(to, from, n)
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/
mp3_mem_funcs.h 68 #define pv_memmove(to, from, n) memmove(to, from, n)
  /external/webrtc/webrtc/modules/rtp_rtcp/source/
dtmf_queue.cc 51 memmove(&(dtmf_key_[0]), &(dtmf_key_[1]),
53 memmove(&(dtmf_length[0]), &(dtmf_length[1]),
55 memmove(&(dtmf_level_[0]), &(dtmf_level_[1]),
  /external/webrtc/webrtc/voice_engine/
dtmf_inband_queue.cc 63 memmove(&(_DtmfKey[0]), &(_DtmfKey[1]),
65 memmove(&(_DtmfLen[0]), &(_DtmfLen[1]),
67 memmove(&(_DtmfLevel[0]), &(_DtmfLevel[1]),
  /external/clang/lib/Sema/
TypeLocBuilder.cpp 100 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
111 memmove(&Buffer[Index + 4], &Buffer[Index], NumBytesAtAlign4);
122 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
134 memmove(&Buffer[Index - 4], &Buffer[Index], NumBytesAtAlign4);
145 memmove(&Buffer[Index + 4], &Buffer[Index], NumBytesAtAlign4);

Completed in 542 milliseconds

1 2 3 4 5 6 7 8 91011>>