| /freebsd-13-stable/sys/contrib/openzfs/module/zfs/ |
| HD | lzjb.c | 54 uchar_t *cpy; in lzjb_compress() local 83 cpy = src - offset; in lzjb_compress() 84 if (cpy >= (uchar_t *)s_start && cpy != src && in lzjb_compress() 85 src[0] == cpy[0] && src[1] == cpy[1] && src[2] == cpy[2]) { in lzjb_compress() 88 if (src[mlen] != cpy[mlen]) in lzjb_compress() 110 uchar_t *cpy; in lzjb_decompress() local 123 if ((cpy = dst - offset) < (uchar_t *)d_start) in lzjb_decompress() 126 *dst++ = *cpy++; in lzjb_decompress()
|
| HD | lz4.c | 891 BYTE *cpy; in LZ4_uncompress_unknownOutputSize() local 910 cpy = op + length; in LZ4_uncompress_unknownOutputSize() 912 if (cpy < op) in LZ4_uncompress_unknownOutputSize() 914 if ((cpy > oend - COPYLENGTH) || in LZ4_uncompress_unknownOutputSize() 916 if (cpy > oend) in LZ4_uncompress_unknownOutputSize() 930 LZ4_WILDCOPY(ip, op, cpy); in LZ4_uncompress_unknownOutputSize() 931 ip -= (op - cpy); in LZ4_uncompress_unknownOutputSize() 932 op = cpy; in LZ4_uncompress_unknownOutputSize() 935 LZ4_READ_LITTLEENDIAN_16(ref, cpy, ip); in LZ4_uncompress_unknownOutputSize() 976 cpy = op + length - (STEPSIZE - 4); in LZ4_uncompress_unknownOutputSize() [all …]
|
| /freebsd-13-stable/sys/cddl/contrib/opensolaris/common/lz4/ |
| HD | lz4.c | 908 BYTE *cpy; in LZ4_uncompress_unknownOutputSize() local 930 cpy = op + length; in LZ4_uncompress_unknownOutputSize() 932 if (cpy < op) in LZ4_uncompress_unknownOutputSize() 934 if ((cpy > oend - COPYLENGTH) || in LZ4_uncompress_unknownOutputSize() 936 if (cpy > oend) in LZ4_uncompress_unknownOutputSize() 950 LZ4_WILDCOPY(ip, op, cpy); in LZ4_uncompress_unknownOutputSize() 951 ip -= (op - cpy); in LZ4_uncompress_unknownOutputSize() 952 op = cpy; in LZ4_uncompress_unknownOutputSize() 955 LZ4_READ_LITTLEENDIAN_16(ref, cpy, ip); in LZ4_uncompress_unknownOutputSize() 994 cpy = op + length - (STEPSIZE - 4); in LZ4_uncompress_unknownOutputSize() [all …]
|
| /freebsd-13-stable/sys/cddl/boot/zfs/ |
| HD | lzjb.c | 53 unsigned char *cpy, copymap = 0; in lzjb_decompress() local 65 if ((cpy = dst - offset) < (unsigned char *)d_start) in lzjb_decompress() 68 *dst++ = *cpy++; in lzjb_decompress()
|
| /freebsd-13-stable/contrib/libpcap/ |
| HD | nametoaddr.c | 473 char *off, *cpy; in pcap_nametoportrange() local 476 if ((cpy = strdup(name)) == NULL) in pcap_nametoportrange() 479 if ((off = strchr(cpy, '-')) == NULL) { in pcap_nametoportrange() 480 free(cpy); in pcap_nametoportrange() 486 if (pcap_nametoport(cpy, port1, proto) == 0) { in pcap_nametoportrange() 487 free(cpy); in pcap_nametoportrange() 493 free(cpy); in pcap_nametoportrange() 496 free(cpy); in pcap_nametoportrange()
|
| HD | gencode.c | 6778 char *cpy; in stringtoport() local 6800 cpy = malloc(string_size + 1); /* +1 for terminating '\0' */ in stringtoport() 6801 memcpy(cpy, string, string_size); in stringtoport() 6802 cpy[string_size] = '\0'; in stringtoport() 6803 tcp_port = nametoport(cstate, cpy, IPPROTO_TCP); in stringtoport() 6809 free(cpy); in stringtoport() 6813 udp_port = nametoport(cstate, cpy, IPPROTO_UDP); in stringtoport() 6819 free(cpy); in stringtoport() 6841 cpy); in stringtoport() 6844 free(cpy); in stringtoport() [all …]
|
| /freebsd-13-stable/contrib/diff/lib/ |
| HD | strftime.c | 175 #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 (digitlen, cp); [all …]
|
| /freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/lz4/ |
| HD | lz4.c | 1120 BYTE* cpy; in LZ4_decompress_generic() local 1156 cpy = op+length; in LZ4_decompress_generic() 1157 …if ( ((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITE… in LZ4_decompress_generic() 1158 || ((!endOnInput) && (cpy>oend-WILDCOPYLENGTH)) ) in LZ4_decompress_generic() 1161 …if (cpy > oend) goto _output_error; /* Error : write attempt beyond end … in LZ4_decompress_generic() 1164 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic() 1165 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic() 1172 LZ4_wildCopy(op, ip, cpy); in LZ4_decompress_generic() 1173 ip += length; op = cpy; in LZ4_decompress_generic() 1220 cpy = op + length; in LZ4_decompress_generic() [all …]
|
| /freebsd-13-stable/crypto/openssl/crypto/engine/ |
| HD | eng_dyn.c | 418 ENGINE cpy; in dynamic_load() local 482 memcpy(&cpy, e, sizeof(ENGINE)); in dynamic_load() 509 memcpy(e, &cpy, sizeof(ENGINE)); in dynamic_load()
|
| /freebsd-13-stable/usr.sbin/bhyve/ |
| HD | pci_lpc.c | 95 char *str, *cpy, *lpcdev, *node_name; in lpc_device_parse() local 99 str = cpy = strdup(opts); in lpc_device_parse() 147 free(cpy); in lpc_device_parse()
|
| /freebsd-13-stable/contrib/flex/src/ |
| HD | misc.c | 96 char *cpy; in action_define() local 109 cpy = xstrdup(defname); in action_define() 110 buf_append (&defs_buf, &cpy, 1); in action_define()
|
| /freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| HD | dt_pragma.c | 246 char *provs, *cpy, *tok; in dt_pragma_depends() local 267 for (cpy = provs; (tok = strsep(&cpy, " ")) != NULL; ) in dt_pragma_depends()
|
| /freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_base/util/ |
| HD | fs_skels.c | 466 svn_skel_t *cpy = copies->children; in svn_fs_base__parse_transaction_skel() local 469 while (cpy) in svn_fs_base__parse_transaction_skel() 471 copy_id = apr_pstrmemdup(pool, cpy->data, cpy->len); in svn_fs_base__parse_transaction_skel() 473 cpy = cpy->next; in svn_fs_base__parse_transaction_skel()
|
| /freebsd-13-stable/crypto/heimdal/lib/com_err/ |
| HD | ChangeLog | 188 * Makefile.in: add str{cpy,cat}_truncate
|
| /freebsd-13-stable/contrib/file/ |
| HD | ChangeLog | 1387 * Replace all str{cpy,cat} functions with strl{cpy,cat} 1388 * Ensure that strl{cpy,cat} are included in libmagic,
|
| /freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| HD | AArch64SVEInstrInfo.td | 807 defm CPY_ZPmI : sve_int_dup_imm_pred_merge<"cpy">; 808 defm CPY_ZPzI : sve_int_dup_imm_pred_zero<"cpy">; 816 defm CPY_ZPmR : sve_int_perm_cpy_r<"cpy", AArch64dup_mt>; 817 defm CPY_ZPmV : sve_int_perm_cpy_v<"cpy", AArch64dup_mt>;
|