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

1 2 3 4

  /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/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
string.h 10 #define memmove(a,b,c) __builtin_memmove(a,b,c) macro
  /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
  /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/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/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-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
  /bionic/libc/arch-arm/denver/bionic/
memmove.S 43 ENTRY(memmove) function
280 END(memmove)
  /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
  /bionic/libc/upstream-openbsd/lib/libc/string/
memmove.c 1 /* $OpenBSD: memmove.c,v 1.2 2015/08/31 02:53:57 guenther Exp $ */
49 memmove(void *dst0, const void *src0, size_t length) function
113 DEF_STRONG(memmove); variable
  /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
  /device/linaro/bootloader/edk2/StdLib/LibC/String/
Copying.c 43 /** The memmove function copies n characters from the object pointed to by s2
52 memmove can be identical to memcpy.
54 @return The memmove function returns the value of s1.
57 memmove(void *s1, const void *s2, size_t n) function
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
mem.c 59 void *memmove(void *dst, const void *src, size_t len) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
string3.h 31 # undef memmove macro
56 __NTH (memmove (void *__dest, __const void *__src, size_t __len)) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
string3.h 31 # undef memmove macro
56 __NTH (memmove (void *__dest, __const void *__src, size_t __len)) function
  /bionic/libc/arch-arm64/cortex-a53/bionic/
memmove.S 90 ENTRY(memmove) function
152 END(memmove)
  /bionic/libc/arch-arm64/generic/bionic/
memmove.S 62 ENTRY(memmove) function
328 END(memmove)
  /external/swiftshader/third_party/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
  /device/linaro/bootloader/edk2/EmbeddedPkg/Include/
libfdt_env.h 54 static inline void *memmove(void *dest, const void *src, size_t n) { function
  /external/iproute2/include/
bpf_api.h 238 #ifndef memmove
239 # define memmove(d, s, n) __builtin_memmove((d), (s), (n)) macro
  /external/syslinux/gpxe/src/arch/x86/include/bits/
string.h 5 * All except memcpy, memmove, memset and memcmp removed.
159 static inline void * memmove(void * dest,const void * src, size_t n) function

Completed in 885 milliseconds

1 2 3 4