Home
last modified time | relevance | path

Searched refs:MEMCPY (Results 1 – 8 of 8) sorted by relevance

/freebsd-9-stable/secure/usr.bin/bdes/
Dbdes.c102 #define MEMCPY(dest,src,len) bcopy((src),(dest),(len)) macro
567 MEMCPY(ivec, msgbuf, 8); in cbcenc()
600 MEMCPY(ibuf, msgbuf, 8); in cbcdec()
604 MEMCPY(ivec, ibuf, 8); in cbcdec()
641 MEMCPY(ivec, encbuf, 8); in cbcauth()
687 MEMCPY(msgbuf, ivec, 8); in cfbenc()
702 MEMCPY(msgbuf, ivec, 8); in cfbenc()
731 MEMCPY(msgbuf, ivec, 8); in cfbdec()
777 MEMCPY(msgbuf, ivec, 8); in cfbaenc()
794 MEMCPY(msgbuf, ivec, 8); in cfbaenc()
[all …]
/freebsd-9-stable/bin/ed/
Dcbc.c53 #define MEMCPY(dest,src,len) memcpy((dest),(src),(len)) macro
337 MEMCPY(ivec, msgbuf, 8); in cbc_encode()
350 (void)MEMCPY(msgbuf + n, pvec, 8 - n); in cbc_encode()
375 MEMCPY(tbuf, msgbuf, 8); in cbc_decode()
379 MEMCPY(ivec, tbuf, 8); in cbc_decode()
/freebsd-9-stable/sys/cam/scsi/
Dscsi_enc_internal.h229 #define MEMCPY(dest, src, amt) bcopy(src, dest, amt) macro
/freebsd-9-stable/contrib/diff/lib/
Dstrftime.c85 # define MEMCPY(d, s, n) __wmemcpy (d, s, n) macro
94 # define MEMCPY(d, s, n) memcpy (d, s, n) macro
182 MEMCPY ((void *) p, (void const *) (s), _n))
/freebsd-9-stable/contrib/llvm/include/llvm/CodeGen/
DRuntimeLibcalls.h316 MEMCPY, enumerator
/freebsd-9-stable/contrib/llvm/lib/CodeGen/
DTargetLoweringBase.cpp313 Names[RTLIB::MEMCPY] = "memcpy"; in InitLibcallNames()
/freebsd-9-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp4058 TLI->getLibcallCallingConv(RTLIB::MEMCPY), in getMemcpy()
4061 getExternalSymbol(TLI->getLibcallName(RTLIB::MEMCPY), in getMemcpy()
/freebsd-9-stable/contrib/llvm/lib/Target/ARM/
DARMISelLowering.cpp417 setLibcallName(RTLIB::MEMCPY, "__aeabi_memcpy"); in ARMTargetLowering()
420 setLibcallCallingConv(RTLIB::MEMCPY, CallingConv::ARM_AAPCS); in ARMTargetLowering()