Searched refs:memmove (Results 1 - 25 of 567) sorted by relevance

1234567891011>>

/freebsd-9.3-release/lib/libc/ia64/string/
H A Dmemmove.S30 ENTRY(memmove,3) function
36 END(memmove)
/freebsd-9.3-release/contrib/compiler-rt/lib/arm/
H A Daeabi_memmove.S1 //===-- aeabi_memmove.S - EABI memmove implementation --------------------===//
12 // void __aeabi_memmove(void *dest, void *src, size_t n) { memmove(dest, src, n); }
16 b memmove
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dmemmove.c1 /* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
6 @deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, size_t @var{count})
21 memmove (PTR s1, const PTR s2, size_t n) function
/freebsd-9.3-release/contrib/cvs/lib/
H A Dmemmove.c0 /* memmove -- copy memory regions of arbitary length
22 memmove -- copy memory regions of arbitary length
26 void memmove (void *out, const void *in, size_t n);
47 memmove (out, in, length) function
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dmemmove.c1 /* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
6 @deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, size_t @var{count})
21 memmove (PTR s1, const PTR s2, size_t n) function
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A Dregutils.h50 /* for old systems with bcopy() but no memmove() */
52 #define memmove(d, s, c) bcopy(s, d, c) macro
/freebsd-9.3-release/sys/libkern/
H A Dmemmove.c33 memmove(void *dest, const void *src, size_t n) function
/freebsd-9.3-release/lib/libc/i386/string/
H A DMakefile.inc5 memmove.S memset.S rindex.S strcat.S strchr.S strcmp.S strcpy.S \
H A Dbcopy.S48 ENTRY(memmove) function
104 END(memmove)
/freebsd-9.3-release/contrib/gcc/config/
H A Dmemmove.c5 memmove (void *dest, const void *src, size_t len) function
/freebsd-9.3-release/contrib/gcclibs/libssp/
H A Dmemmove-chk.c1 /* Checking memmove.
50 return memmove (dest, src, len);
/freebsd-9.3-release/contrib/gdb/gdb/
H A Dgdb_string.h50 extern void *memmove ();
/freebsd-9.3-release/lib/libc/regex/
H A Dutils.h51 /* for old systems with bcopy() but no memmove() */
53 #define memmove(d, s, c) bcopy(s, d, c) macro
/freebsd-9.3-release/lib/libc/string/
H A Dwmemmove.c43 return (wchar_t *)memmove(d, s, n * sizeof(wchar_t));
/freebsd-9.3-release/lib/libc/arm/string/
H A DMakefile.inc5 memmove.S memset.S rindex.c strcat.c strchr.c strcmp.S strcpy.c \
/freebsd-9.3-release/lib/libc/mips/string/
H A DMakefile.inc5 memcpy.S memmove.S \
/freebsd-9.3-release/contrib/bind9/bin/named/
H A Dlwaddr.c44 memmove(&ina.s_addr, la->address, 4);
48 memmove(&ina6.s6_addr, la->address, 16);
80 memmove(la->address, &na->type.in, 4);
84 memmove(la->address, &na->type.in6, 16);
/freebsd-9.3-release/crypto/heimdal/lib/roken/
H A Dmemmove.c36 RCSID("$Id: memmove.c 14773 2005-04-12 11:29:18Z lha $");
40 * memmove for systems that doesn't have it
48 memmove(void *s1, const void *s2, size_t n) function
/freebsd-9.3-release/contrib/nvi/common/
H A Dlog.c188 memmove(ep->l_lp + sizeof(u_char), &ep->l_cursor, sizeof(MARK));
265 memmove(ep->l_lp + sizeof(u_char), &lno, sizeof(recno_t));
266 memmove(ep->l_lp + sizeof(u_char) + sizeof(recno_t), lp, len);
336 memmove(ep->l_lp + sizeof(u_char), lmp, sizeof(LMARK));
399 memmove(rp, p + sizeof(u_char), sizeof(MARK));
409 memmove(&lno, p + sizeof(u_char), sizeof(recno_t));
416 memmove(&lno, p + sizeof(u_char), sizeof(recno_t));
427 memmove(&lno, p + sizeof(u_char), sizeof(recno_t));
439 memmove(&lm, p + sizeof(u_char), sizeof(LMARK));
501 memmove(
[all...]
/freebsd-9.3-release/lib/libc/db/btree/
H A Dbt_overflow.c85 memmove(&pg, p, sizeof(pgno_t));
86 memmove(&sz, (char *)p + sizeof(pgno_t), sizeof(u_int32_t));
111 memmove(p, (char *)h + BTDATAOFF, nb);
156 memmove((char *)h + BTDATAOFF, p, nb);
190 memmove(&pg, p, sizeof(pgno_t));
191 memmove(&sz, (char *)p + sizeof(pgno_t), sizeof(u_int32_t));
/freebsd-9.3-release/contrib/gcc/config/i386/
H A Dcygwin2.c47 memmove (over + 1, over, strlen (over));
/freebsd-9.3-release/crypto/heimdal/appl/telnet/telnetd/
H A Dauthenc.c44 memmove(nfrontp, str, len);
/freebsd-9.3-release/contrib/ntp/include/
H A Dntp_string.h2 * Define string ops: strchr strrchr memcmp memmove memset
29 #define memmove(t, f, c) bcopy(f, t, (int)(c)) macro
/freebsd-9.3-release/contrib/telnet/libtelnet/
H A Dread_password.c95 memmove((char *)env, (char *)old_env, sizeof(env));
145 memmove((char *)old_env, (char *)env, sizeof(env));
/freebsd-9.3-release/lib/libc/amd64/string/
H A Dbcopy.S48 ENTRY(memmove) function
93 END(memmove)

Completed in 186 milliseconds

1234567891011>>