Searched refs:copy (Results 1 - 25 of 700) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssl/util/
H A Dmerge-err-lines5 # this file except in compliance with the License. You can obtain a copy
23 my $copy = $_;
24 chop($copy);
25 $copy =~ s/ +$//;
28 $_ = $copy . ' ' . $next;
/freebsd-current/contrib/mandoc/
H A Dcompat_strndup.c7 * Permission to use, copy, modify, and distribute this software for any
29 char *copy; local
35 copy = malloc(len + 1);
36 if (copy != NULL) {
37 (void)memcpy(copy, str, len);
38 copy[len] = '\0';
41 return copy;
/freebsd-current/lib/libc/string/
H A Dstrndup.c6 * Permission to use, copy, modify, and distribute this software for any
26 char *copy; local
30 copy = malloc(len + 1);
31 if (copy != NULL) {
32 (void)memcpy(copy, str, len);
33 copy[len] = '\0';
36 return copy;
H A Dstrdup.c40 char *copy; local
43 if ((copy = malloc(len)) == NULL)
45 memcpy(copy, str, len);
46 return (copy);
H A Dwcsdup.c35 wchar_t *copy; local
39 if ((copy = malloc(len * sizeof(wchar_t))) == NULL)
41 return (wmemcpy(copy, s, len));
/freebsd-current/crypto/openssh/openbsd-compat/
H A Dstrndup.c6 * Permission to use, copy, modify, and distribute this software for any
30 char *copy; local
34 copy = malloc(len + 1);
35 if (copy != NULL) {
36 (void)memcpy(copy, str, len);
37 copy[len] = '\0';
40 return copy;
/freebsd-current/contrib/tcpdump/missing/
H A Dstrdup.c45 char *copy; local
48 if ((copy = malloc(len)) == NULL)
50 memcpy(copy, str, len);
51 return (copy);
/freebsd-current/contrib/openpam/
H A Dautogen.sh3 libtoolize --copy --force
6 automake --add-missing --copy --foreign
/freebsd-current/stand/libsa/
H A Dstrdup.c38 char *copy = NULL; local
42 if ((copy = malloc(len)) == NULL)
44 memcpy(copy, str, len);
46 return (copy);
/freebsd-current/sys/libkern/
H A Dstrndup.c41 char *copy; local
44 copy = malloc(len, type, M_WAITOK);
45 bcopy(string, copy, len);
46 copy[len - 1] = '\0';
47 return (copy);
H A Dstrdup.c43 char *copy; local
46 copy = malloc(len, type, flags);
47 if (copy == NULL)
49 bcopy(string, copy, len);
50 return (copy);
/freebsd-current/contrib/openbsm/
H A Dautogen.sh3 libtoolize --copy --force
/freebsd-current/usr.bin/ssh-copy-id/
H A DMakefile2 SCRIPTS= ssh-copy-id.sh
3 MAN= ssh-copy-id.1
/freebsd-current/contrib/llvm-project/libcxx/include/__algorithm/
H A Drotate_copy.h12 #include <__algorithm/copy.h>
24 return std::copy(__first, __middle, std::copy(__middle, __last, __result));
/freebsd-current/contrib/libcbor/test/
H A Dcopy_test.c12 cbor_item_t *item, *copy, *tmp; variable
16 assert_uint8(copy = cbor_copy(item), 10);
18 cbor_decref(&copy);
21 assert_uint16(copy = cbor_copy(item), 10);
23 cbor_decref(&copy);
26 assert_uint32(copy = cbor_copy(item), 10);
28 cbor_decref(&copy);
31 assert_uint64(copy = cbor_copy(item), 10);
33 cbor_decref(&copy);
38 assert_true(cbor_get_uint8(copy
[all...]
/freebsd-current/libexec/rtld-elf/
H A Dxmalloc.c68 char *copy; local
72 copy = xmalloc(len);
73 memcpy(copy, str, len);
74 return (copy);
/freebsd-current/crypto/openssl/crypto/asn1/
H A Dd2i_pu.c5 * this file except in compliance with the License. You can obtain a copy
32 EVP_PKEY *copy = NULL; local
45 if (!evp_pkey_copy_downgraded(&copy, ret))
51 if ((type != EVP_PKEY_get_id(ret) || copy != NULL)
74 if (copy != NULL) {
75 /* use downgraded parameters from copy */
76 ret->pkey.ec = copy->pkey.ec;
77 copy->pkey.ec = NULL;
91 EVP_PKEY_free(copy);
96 EVP_PKEY_free(copy);
[all...]
/freebsd-current/lib/googletest/
H A DMakefile.inc10 # Silence warnings about usage of deprecated implicit copy constructors
11 CXXWARNFLAGS+= -Wno-deprecated-copy
/freebsd-current/usr.bin/rctl/
H A Drctl.c114 char *copy, *expanded, *tofree; local
117 tofree = copy = strdup(rule);
118 if (copy == NULL) {
123 subject = strsep(&copy, ":");
124 subject_id = strsep(&copy, ":");
125 resource = strsep(&copy, ":");
126 action = strsep(&copy, "=/");
127 amount = strsep(&copy, "/");
128 per = copy;
132 * The "copy" ha
179 char *copy, *expanded, *resolved, *tofree; local
309 char *copy, *humanized, buf[6], *tofree; local
462 char *copy, *humanized, buf[6], *tofree; local
497 char *copy, *outbuf = NULL, *tmp; local
[all...]
/freebsd-current/sys/contrib/dev/iwlwifi/pcie/
H A Dtx-gen2.c59 int copy = IWL_FIRST_TB_SIZE - copy_size; local
61 if (copy > cmdlen[i])
62 copy = cmdlen[i];
63 cmdlen[i] -= copy;
64 cmddata[i] += copy;
65 copy_size += copy;
151 /* and copy the data that needs to be copied */
153 int copy; local
158 /* copy everything if not nocopy/dup */
161 copy
[all...]
/freebsd-current/sys/contrib/zlib/
H A Dinflate.c20 * - Unroll direct copy to three copies per loop in inffast.c
37 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
46 * - Unroll last copy for window match in inflate_fast()
368 local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) { argument
389 /* copy state->wsize or less output bytes into the circular window */
390 if (copy >= state->wsize) {
397 if (dist > copy) dist = copy;
398 zmemcpy(state->window + state->wnext, end - copy, dist);
399 copy
598 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/freebsd-current/contrib/ntp/libntp/
H A Demalloc.c66 * Permission to use, copy, modify, and distribute this software for any
126 char * copy; local
130 copy = ereallocz(NULL, bytes, 0, FALSE
135 memcpy(copy, str, bytes);
137 return copy;
/freebsd-current/tests/sys/geom/class/concat/
H A Dappend2.sh48 copy=$(mktemp) || exit 1
49 dd if=/dev/random of=$copy bs=1M count=3 || exit 1
50 dd if=$copy of=/dev/concat/${name} || exit 1
73 if cmp -s $copy /dev/concat/${name}; then
/freebsd-current/crypto/openssh/regress/
H A Dsftp-uri.sh26 ${SFTP} -q -S "$SSH" -F $OBJ/ssh_config "sftp://${USER}@somehost:${PORT}/${DATA}" ${COPY} || fail "copy failed"
27 cmp ${DATA} ${COPY} || fail "corrupted copy"
32 ${SFTP} -q -S "$SSH" -F $OBJ/ssh_config "sftp://${USER}@somehost:${PORT}/${COPY}" ${DIR} || fail "copy failed"
33 cmp ${COPY} ${DIR}/copy || fail "corrupted copy"
40 put ${DATA} copy
46 cmp ${DATA} ${DIR}/copy || fail "corrupted copy"
54 put ${DATA} copy
60 cmp ${DATA} ${DIR}/copy || fai
[all...]
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/rsend/
H A Dsend-c_volume.ksh9 # A full copy of the text of the CDDL should have accompanied this
10 # source. A copy of the CDDL is also available via the Internet at
32 rm $BACKDIR/copy
65 log_must dd if=$voldev2 of=$BACKDIR/copy bs=1024k count=$megs
66 md5=$(md5digest $BACKDIR/copy)
79 log_must dd skip=$megs if=$voldev2 of=$BACKDIR/copy bs=1024k count=$megs
80 md5=$(md5digest $BACKDIR/copy)

Completed in 209 milliseconds

1234567891011>>