| /src/common/lib/libc/string/ |
| memmove.c | 1 /* $NetBSD: memmove.c,v 1.2 2013/12/02 21:21:33 joerg Exp $ */ 3 #define MEMMOVE 7 __strong_alias(__aeabi_memmove, memmove) 8 __strong_alias(__aeabi_memmove4, memmove) 9 __strong_alias(__aeabi_memmove8, memmove)
|
| /src/lib/libc/string/ |
| Lint_memmove.c | 12 memmove(void *dst, const void *src, size_t len) function
|
| wmemmove.c | 47 return (wchar_t *)memmove(d, s, n * sizeof(wchar_t));
|
| /src/external/bsd/am-utils/dist/conf/sa_dref/ |
| sa_dref_linux.h | 4 #define NFS_SA_DREF(dst, src) memmove((char *)&dst->addr, (char *) src, sizeof(struct sockaddr_in))
|
| /src/common/lib/libc/arch/ia64/string/ |
| memmove.S | 1 /* $NetBSD: memmove.S,v 1.1 2016/08/05 15:06:02 scole Exp $ */ 28 * __FBSDID("$FreeBSD: releng/10.1/lib/libc/ia64/string/memmove.S 134743 2004-09-04 00:23:15Z marcel $"); 36 * memmove(void *dst, const void *src, size_t len); 38 ENTRY(memmove,3) function 44 END(memmove)
|
| /src/lib/libc/arch/mips/string/ |
| Makefile.inc | 5 memcpy.S memmove.S \
|
| /src/lib/libc/ssp/ |
| memmove_chk.c | 39 #undef memmove macro 49 return memmove(dst, src, len);
|
| /src/sys/external/bsd/compiler_rt/dist/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
|
| /src/external/apache2/llvm/dist/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
|
| /src/external/gpl3/binutils/dist/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 (void *s1, const void *s2, size_t n) function
|
| /src/external/gpl3/binutils.old/dist/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 (void *s1, const void *s2, size_t n) function
|
| /src/external/gpl3/gcc/dist/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 (void *s1, const void *s2, size_t n) function
|
| /src/external/gpl3/gcc.old/dist/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
|
| /src/external/gpl3/gdb/dist/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 (void *s1, const void *s2, size_t n) function
|
| /src/external/gpl3/gdb.old/dist/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 (void *s1, const void *s2, size_t n) function
|
| /src/sys/external/bsd/acpica/dist/tools/acpisrc/ |
| asutils.c | 139 memmove ((Buffer + LengthToAdd), (Buffer + LengthToRemove), 149 memmove (Buffer, BufferToAdd, LengthToAdd); 189 memmove ((Buffer + LengthToAdd), Buffer, BufferLength); 194 memmove (Buffer, BufferToAdd, LengthToAdd); 226 memmove (StartPointer, EndPointer, BufferLength);
|
| /src/lib/libc/arch/i386/string/ |
| Makefile.inc | 5 memcpy.S memmove.S memset.S strcat.S strchr.S \
|
| /src/lib/libc/arch/x86_64/string/ |
| Makefile.inc | 5 memcpy.S memmove.S memset.S strcat.S strchr.S \
|
| /src/sys/lib/libkern/arch/mips/ |
| Makefile.inc | 13 ffs.S memcpy.S memset2.c memmove.S \
|
| /src/tests/lib/libc/ssp/ |
| h_memmove.c | 44 (void)memmove(b, "1020202020202", len);
|
| /src/external/bsd/nvi/dist/regex/ |
| utils.h | 55 /* for old systems with bcopy() but no memmove() */ 57 #define memmove(d, s, c) bcopy(s, d, c) macro
|
| /src/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/ |
| memmove.c | 0 /* memmove.c -- copy memory. 11 memmove (void *dest0, void const *source0, size_t length) function
|
| /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/ |
| memmove.c | 0 /* memmove.c -- copy memory. 11 memmove (void *dest0, void const *source0, size_t length) function
|
| /src/external/gpl2/texinfo/dist/lib/ |
| memmove.c | 1 /* $NetBSD: memmove.c,v 1.1.1.1 2016/01/14 00:11:29 christos Exp $ */ 3 /* memmove.c -- copy memory. 15 memmove (void *dest0, void const *source0, size_t length) function
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| memmove.c | 5 memmove (void *dest, const void *src, size_t len) function
|