Searched refs:cpy (Results 1 - 14 of 14) sorted by relevance

/freebsd-13-stable/sys/contrib/openzfs/module/zfs/
H A Dlzjb.c54 uchar_t *cpy; local
83 cpy = src - offset;
84 if (cpy >= (uchar_t *)s_start && cpy != src &&
85 src[0] == cpy[0] && src[1] == cpy[1] && src[2] == cpy[2]) {
88 if (src[mlen] != cpy[mlen])
110 uchar_t *cpy; local
123 if ((cpy
[all...]
H A Dlz4.c893 BYTE *cpy; local
912 cpy = op + length;
913 /* CORNER-CASE: cpy might overflow. */
914 if (cpy < op)
915 goto _output_error; /* cpy was overflowed, bail! */
916 if ((cpy > oend - COPYLENGTH) ||
918 if (cpy > oend)
932 LZ4_WILDCOPY(ip, op, cpy);
933 ip -= (op - cpy);
934 op = cpy;
[all...]
/freebsd-13-stable/sys/cddl/boot/zfs/
H A Dlzjb.c53 unsigned char *cpy, copymap = 0; local
65 if ((cpy = dst - offset) < (unsigned char *)d_start)
68 *dst++ = *cpy++;
/freebsd-13-stable/contrib/libpcap/
H A Dnametoaddr.c453 char *off, *cpy; local
457 if ((cpy = strdup(name)) == NULL)
460 if ((off = strchr(cpy, '-')) == NULL) {
461 free(cpy);
467 if (pcap_nametoport(cpy, port1, proto) == 0) {
468 free(cpy);
474 free(cpy);
477 free(cpy);
/freebsd-13-stable/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c908 BYTE *cpy; local
930 cpy = op + length;
931 /* CORNER-CASE: cpy might overflow. */
932 if (cpy < op)
933 goto _output_error; /* cpy was overflowed, bail! */
934 if ((cpy > oend - COPYLENGTH) ||
936 if (cpy > oend)
950 LZ4_WILDCOPY(ip, op, cpy);
951 ip -= (op - cpy);
952 op = cpy;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DMemCpyOptimizer.h63 bool performCallSlotOptzn(Instruction *cpy, Value *cpyDst, Value *cpySrc,
/freebsd-13-stable/usr.sbin/bhyve/
H A Dpci_lpc.c95 char *str, *cpy, *lpcdev; local
98 str = cpy = strdup(opts);
121 free(cpy);
129 free(cpy);
/freebsd-13-stable/contrib/diff/lib/
H A Dstrftime.c175 #define cpy(n, s) \ macro
547 cpy (len, f);
651 cpy (aw_len, a_wkday);
666 cpy (STRLEN (f_wkday), f_wkday);
682 cpy (am_len, a_month);
697 cpy (STRLEN (f_month), f_month);
763 cpy (len, ubuf);
779 cpy (len, era->era_wname);
782 cpy (len, era->era_name);
857 cpy (digitle
[all...]
/freebsd-13-stable/crypto/openssl/crypto/engine/
H A Deng_dyn.c398 ENGINE cpy; local
462 memcpy(&cpy, e, sizeof(ENGINE));
487 memcpy(e, &cpy, sizeof(ENGINE));
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/lz4/
H A Dlz4.c1120 BYTE* cpy; local
1156 cpy = op+length;
1157 if ( ((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITERALS))) )
1158 || ((!endOnInput) && (cpy>oend-WILDCOPYLENGTH)) )
1161 if (cpy > oend) goto _output_error; /* Error : write attempt beyond end of output buffer */
1164 if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop exactly there */
1165 if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input must be consumed */
1172 LZ4_wildCopy(op, ip, cpy);
1173 ip += length; op = cpy;
1220 cpy
[all...]
/freebsd-13-stable/contrib/flex/src/
H A Dmisc.c96 char *cpy; local
109 cpy = xstrdup(defname);
110 buf_append (&defs_buf, &cpy, 1);
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_pragma.c246 char *provs, *cpy, *tok; local
267 for (cpy = provs; (tok = strsep(&cpy, " ")) != NULL; )
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_base/util/
H A Dfs_skels.c469 svn_skel_t *cpy = copies->children;
472 while (cpy)
474 copy_id = apr_pstrmemdup(pool, cpy->data, cpy->len);
476 cpy = cpy->next;
466 svn_skel_t *cpy = copies->children; local
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DMemCpyOptimizer.cpp689 bool MemCpyOptPass::performCallSlotOptzn(Instruction *cpy, Value *cpyDest, argument
720 const DataLayout &DL = cpy->getModule()->getDataLayout();
802 if (U != C && U != cpy)
878 combineMetadata(C, cpy, KnownIDs, true);
881 MD->removeInstruction(cpy);

Completed in 507 milliseconds