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

1234567891011>>

/freebsd-current/lib/libc/aarch64/string/
H A Dmemcpy.S2 #define __memmove_aarch64 memmove
H A DMakefile.inc10 memmove \
/freebsd-current/lib/libc/amd64/string/
H A Dbcopy.c13 memmove(dst, src, len);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Daeabi_memmove.S1 //===-- aeabi_memmove.S - EABI memmove implementation --------------------===//
11 // void __aeabi_memmove(void *dest, void *src, size_t n) { memmove(dest, src, n); }
17 bl memmove
20 b memmove
/freebsd-current/lib/libc/secure/
H A Dmemmove_chk.c38 #undef memmove macro
46 return (memmove(dst, src, len));
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A Dregutils.h53 /* for old systems with bcopy() but no memmove() */
55 #define memmove(d, s, c) bcopy(s, d, c) macro
/freebsd-current/lib/libc/arm/string/
H A DMakefile.inc7 memmove.S \
/freebsd-current/contrib/netbsd-tests/lib/libc/ssp/
H A Dh_memmove.c44 (void)memmove(b, "1020202020202", len);
/freebsd-current/contrib/nvi/regex/
H A Dutils.h52 /* for old systems with bcopy() but no memmove() */
54 #define memmove(d, s, c) bcopy(s, d, c) macro
/freebsd-current/lib/libc/string/
H A Dwmemmove.c43 return (wchar_t *)memmove(d, s, n * sizeof(wchar_t));
/freebsd-current/lib/libc/regex/
H A Dutils.h52 /* for old systems with bcopy() but no memmove() */
54 #define memmove(d, s, c) bcopy(s, d, c) macro
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors_memintrinsics.inc60 COMMON_INTERCEPTOR_ENTER(ctx, memmove, dst, src, size); \
65 return REAL(memmove)(dst, src, size); \
96 INTERCEPTOR(void *, memmove, void *dst, const void *src, uptr size) {
101 #define INIT_MEMMOVE COMMON_INTERCEPT_FUNCTION(memmove)
109 // because memcpy and memmove are actually aliases of the same
112 // due to memcpy being an alias of memmove on OS X.
126 ASSIGN_REAL(memcpy, memmove); \
/freebsd-current/contrib/ldns/compat/
H A Dmemmove.c2 * memmove.c: memmove compat implementation.
12 void *memmove(void *dest, const void *src, size_t n);
14 void *memmove(void *dest, const void *src, size_t n) function
/freebsd-current/contrib/unbound/compat/
H A Dmemmove.c2 * memmove.c: memmove compat implementation.
12 void *memmove(void *dest, const void *src, size_t n);
14 void *memmove(void *dest, const void *src, size_t n) function
/freebsd-current/lib/libc/powerpc64/string/
H A DMakefile.inc9 memmove.S \
/freebsd-current/lib/libc/i386/string/
H A DMakefile.inc8 memmove.S \
/freebsd-current/crypto/heimdal/lib/roken/
H A Dmemmove.c37 * memmove for systems that doesn't have it
45 memmove(void *s1, const void *s2, size_t n) function
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_sign/ed25519/ref10/
H A Dkeypair.c19 memmove(sk, seed, 32);
30 memmove(sk, seed, 32);
31 memmove(sk + 32, pk, 32);
/freebsd-current/contrib/nvi/common/
H A Dlog.c189 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 + CHAR_T_OFFSET, lp, len * sizeof(CHAR_T));
335 memmove(ep->l_lp + sizeof(u_char), lmp, sizeof(LMARK));
396 memmove(rp, p + sizeof(u_char), sizeof(MARK));
406 memmove(&lno, p + sizeof(u_char), sizeof(recno_t));
413 memmove(&lno, p + sizeof(u_char), sizeof(recno_t));
423 memmove(&lno, p + sizeof(u_char), sizeof(recno_t));
434 memmove(&lm, p + sizeof(u_char), sizeof(LMARK));
494 memmove(
[all...]
/freebsd-current/lib/libc/db/btree/
H A Dbt_overflow.c81 memmove(&pg, p, sizeof(pgno_t));
82 memmove(&sz, (char *)p + sizeof(pgno_t), sizeof(u_int32_t));
107 memmove(p, (char *)h + BTDATAOFF, nb);
152 memmove((char *)h + BTDATAOFF, p, nb);
186 memmove(&pg, p, sizeof(pgno_t));
187 memmove(&sz, (char *)p + sizeof(pgno_t), sizeof(u_int32_t));
/freebsd-current/contrib/bearssl/src/rsa/
H A Drsa_ssl_decrypt.c50 memmove(data, data + len - 48, 48);
/freebsd-current/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-current/crypto/heimdal/appl/telnet/telnetd/
H A Dauthenc.c44 memmove(nfrontp, str, len);
/freebsd-current/sys/kern/
H A Dsubr_early.c61 #define MEMMOVE_EARLY_FUNC memmove
/freebsd-current/sys/contrib/libsodium/src/libsodium/crypto_sign/ed25519/
H A Dsign_ed25519.c47 memmove(seed, sk, crypto_sign_ed25519_SEEDBYTES);
55 memmove(pk, sk + crypto_sign_ed25519_SEEDBYTES,

Completed in 300 milliseconds

1234567891011>>