| /src/sys/contrib/openzfs/module/zfs/ |
| H A D | lzjb.c | 56 uchar_t *cpy; in zfs_lzjb_compress_buf() local 85 cpy = src - offset; in zfs_lzjb_compress_buf() 86 if (cpy >= (uchar_t *)s_start && cpy != src && in zfs_lzjb_compress_buf() 87 src[0] == cpy[0] && src[1] == cpy[1] && src[2] == cpy[2]) { in zfs_lzjb_compress_buf() 90 if (src[mlen] != cpy[mlen]) in zfs_lzjb_compress_buf() 113 uchar_t *cpy; in zfs_lzjb_decompress_buf() local 126 if ((cpy = dst - offset) < (uchar_t *)d_start) in zfs_lzjb_decompress_buf() 129 *dst++ = *cpy++; in zfs_lzjb_decompress_buf()
|
| H A D | lz4.c | 552 BYTE* cpy; in LZ4_decompress_generic() local 608 cpy = op+length; in LZ4_decompress_generic() 611 if ((cpy>oend-32) || (ip+length>iend-32)) { goto safe_literal_copy; } in LZ4_decompress_generic() 612 LZ4_wildCopy32(op, ip, cpy); in LZ4_decompress_generic() 614 if (cpy>oend-8) { goto safe_literal_copy; } in LZ4_decompress_generic() 615 … LZ4_wildCopy8(op, ip, cpy); /* LZ4_decompress_fast() cannot copy more than 8 bytes at a time : in LZ4_decompress_generic() 618 ip += length; op = cpy; in LZ4_decompress_generic() 620 cpy = op+length; in LZ4_decompress_generic() 633 ip += length; op = cpy; in LZ4_decompress_generic() 707 cpy = op + length; in LZ4_decompress_generic() [all …]
|
| /src/contrib/mandoc/ |
| H A D | tag.c | 94 char *cpy; in tag_put() local 145 cpy = mandoc_malloc(strlen(s) + 1); in tag_put() 153 cpy[len] = '-'; in tag_put() 163 cpy[len] = *src; in tag_put() 170 cpy[len] = '\0'; in tag_put() 175 s = cpy; in tag_put() 176 se = cpy + len; in tag_put() 233 free(cpy); in tag_put()
|
| /src/sys/cddl/contrib/opensolaris/common/lz4/ |
| H A D | 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 …]
|
| /src/sys/cddl/boot/zfs/ |
| H A D | 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()
|
| /src/contrib/libpcap/ |
| H A D | nametoaddr.c | 448 char *off, *cpy; in pcap_nametoportrange() local 451 if ((cpy = strdup(name)) == NULL) in pcap_nametoportrange() 454 if ((off = strchr(cpy, '-')) == NULL) { in pcap_nametoportrange() 455 free(cpy); in pcap_nametoportrange() 461 if (pcap_nametoport(cpy, port1, proto) == 0) { in pcap_nametoportrange() 462 free(cpy); in pcap_nametoportrange() 468 free(cpy); in pcap_nametoportrange() 471 free(cpy); in pcap_nametoportrange()
|
| H A D | gencode.c | 6883 char *cpy; in stringtoport() local 6905 cpy = malloc(string_size + 1); /* +1 for terminating '\0' */ in stringtoport() 6906 memcpy(cpy, string, string_size); in stringtoport() 6907 cpy[string_size] = '\0'; in stringtoport() 6908 tcp_port = nametoport(cstate, cpy, IPPROTO_TCP); in stringtoport() 6914 free(cpy); in stringtoport() 6918 udp_port = nametoport(cstate, cpy, IPPROTO_UDP); in stringtoport() 6924 free(cpy); in stringtoport() 6946 cpy); in stringtoport() 6949 free(cpy); in stringtoport() [all …]
|
| /src/crypto/openssl/crypto/engine/ |
| H A D | eng_dyn.c | 414 ENGINE cpy; in dynamic_load() local 473 memcpy(&cpy, e, sizeof(ENGINE)); in dynamic_load() 500 memcpy(e, &cpy, sizeof(ENGINE)); in dynamic_load()
|
| /src/usr.sbin/bhyve/amd64/ |
| H A D | pci_lpc.c | 96 char *str, *cpy, *lpcdev, *node_name; in lpc_device_parse() local 100 str = cpy = strdup(opts); in lpc_device_parse() 169 free(cpy); in lpc_device_parse()
|
| /src/contrib/flex/src/ |
| H A D | 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()
|
| /src/cddl/contrib/opensolaris/lib/libdtrace/common/ |
| H A D | 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()
|
| /src/crypto/openssl/include/openssl/ |
| H A D | safestack.h.in | 60 …l_unused ossl_inline OPENSSL_sk_copyfunc ossl_check_##t1##_copyfunc_type(sk_##t1##_copyfunc cpy) \ 62 …return (OPENSSL_sk_copyfunc)cpy; …
|
| H A D | safestack.h | 57 …l_unused ossl_inline OPENSSL_sk_copyfunc ossl_check_##t1##_copyfunc_type(sk_##t1##_copyfunc cpy) \ 59 …return (OPENSSL_sk_copyfunc)cpy; …
|
| /src/crypto/heimdal/lib/com_err/ |
| H A D | ChangeLog | 188 * Makefile.in: add str{cpy,cat}_truncate
|
| /src/contrib/file/ |
| H A D | ChangeLog | 1387 * Replace all str{cpy,cat} functions with strl{cpy,cat} 1388 * Ensure that strl{cpy,cat} are included in libmagic,
|
| /src/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | 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>;
|