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

1234567891011>>

/macosx-10.10/expat-12/expat/vms/
H A Dexpat_config.h28 /* Define if you have the memmove function. */
47 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
49 #define memmove(d,s,l) ;punting on memmove; macro
/macosx-10.10/tcl-105/tcl_ext/tdom/tdom/mac/
H A Dmacconfig.h35 /* Define if you have the memmove function. */
58 #define memmove(d,s,l) bcopy((s),(d),(l)) macro
60 #define memmove(d,s,l) ;punting on memmove; macro
/macosx-10.10/Libc-1044.1.2/secure/
H A Dmemmove_chk.c34 return memmove (dest, src, len);
/macosx-10.10/cxxfilt-11/cxxfilt/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
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dmemmove.c28 NoN(memmove)
33 memmove(void* to, const void* from, register size_t n)
/macosx-10.10/llvmCore-3425.0.34/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
/macosx-10.10/Libc-1044.1.2/regex/FreeBSD/
H A Dutils.h51 /* for old systems with bcopy() but no memmove() */
53 #define memmove(d, s, c) bcopy(s, d, c) macro
/macosx-10.10/Libc-1044.1.2/string/FreeBSD/
H A Dwmemmove.c43 return (wchar_t *)memmove(d, s, n * sizeof(wchar_t));
/macosx-10.10/cups-408/cups/vcnet/regex/
H A Dutils.h19 /* for old systems with bcopy() but no memmove() */
21 #define memmove(d, s, c) bcopy(s, d, c) macro
/macosx-10.10/emacs-93/emacs/src/m/
H A D7300.h81 /* We don't have memmove. */
82 #define memmove(d, s, n) safe_bcopy (s, d, n) macro
H A Datt3b.h141 /* 3b2 does not have memmove, I'm told. */
143 and parens would screw up the prototype decl for memmove. */
144 #define memmove(d, s, n) safe_bcopy (s, d, n) macro
/macosx-10.10/libiconv-42/libiconv/srclib/
H A Dmemmove.c0 /* memmove.c -- copy memory.
13 memmove (void *dest0, void const *source0, size_t length) function
/macosx-10.10/procmail-14/procmail/src/
H A Dshell.h9 #define tmemmove(t,f,n) memmove(t,f,(size_t)(n))
/macosx-10.10/ruby-106/ruby/missing/
H A Dmemmove.c7 memmove(void *d, const void *s, size_t n) function
/macosx-10.10/xnu-2782.1.97/libsyscall/wrappers/string/
H A Dstrings.h64 void *memmove(void *, const void *, size_t);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/lib/
H A DNullCryptor.h66 memmove(cipherText, plainText, NULL_CRYPT_BLOCK_SIZE);
77 memmove(plainText, cipherText, NULL_CRYPT_BLOCK_SIZE);
/macosx-10.10/Heimdal-398.1.2/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
/macosx-10.10/Security-57031.1.35/Security/include/securityd_client/
H A Dssblob.cpp73 memmove(blobSignature, clearPubKeySig, sizeof(blobSignature));
/macosx-10.10/Security-57031.1.35/Security/libsecurityd/lib/
H A Dssblob.cpp73 memmove(blobSignature, clearPubKeySig, sizeof(blobSignature));
/macosx-10.10/tcl-105/tcl_ext/expect/expect/
H A Dexp_memmove.c0 /* memmove - some systems lack this */
9 memmove(dest,src,n) function
/macosx-10.10/Libc-1044.1.2/db/btree/FreeBSD/
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));
/macosx-10.10/Heimdal-398.1.2/appl/telnet/telnetd/
H A Dauthenc.c44 memmove(nfrontp, str, len);
/macosx-10.10/emacs-93/emacs/src/s/
H A Dsunos4shr.h67 #define memmove(to, from, size) bcopy (from, to, size) macro
/macosx-10.10/Security-57031.1.35/Security/include/security_cdsa_utilities/
H A Ddigestobject.h103 memmove((uint8 *)mInBuf + mInBufSize, data, len);
110 memmove(digest, mInBuf, mInBufSize);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cdsa_utilities/lib/
H A Ddigestobject.h103 memmove((uint8 *)mInBuf + mInBufSize, data, len);
110 memmove(digest, mInBuf, mInBufSize);

Completed in 142 milliseconds

1234567891011>>