Searched refs:copy (Results 101 - 125 of 700) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssl/crypto/bn/
H A Dbn_prime.pl5 # this file except in compliance with the License. You can obtain a copy
23 * this file except in compliance with the License. You can obtain a copy
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DPredIteratorCache.h53 std::copy(PredCache.begin(), PredCache.end(), Entry);
/freebsd-current/crypto/openssl/apps/
H A Dprogs.pl5 # this file except in compliance with the License. You can obtain a copy
55 * this file except in compliance with the License. You can obtain a copy
85 * this file except in compliance with the License. You can obtain a copy
/freebsd-current/contrib/googletest/googletest/test/
H A Dgtest_list_output_unittest.py258 environ_copy = os.environ.copy()
H A Dgoogletest-env-var-test.py43 environ = os.environ.copy()
/freebsd-current/kerberos5/usr.sbin/ktutil/
H A DMakefile9 copy.c \
/freebsd-current/stand/i386/gptboot/
H A Dgptldr.S47 # to copy for boot2 (<= 15)
70 * its header to find boot2. We need to copy boot2 to MEM_USR and BTX
71 * to MEM_BTX. Since those might overlap, we have to copy boot2
72 * backwards first and then copy BTX. We aren't sure exactly how long
73 * boot2 is, but it's currently under 256kB so we'll copy 8 blocks of 32kB
80 mov %si,%ax # last byte we want to copy
87 mov %ax,%es # want to copy boot2 into.
92 sub $COPY_BLK_SZ/16,%ax # copy from boot2
/freebsd-current/share/mk/
H A Dinstall-new.mk7 # Permission to copy, redistribute or otherwise
18 # copy if src and target are different making a backup if desired
/freebsd-current/contrib/unbound/
H A Dfreebsd-configure.sh17 (cd $unbound && libtoolize --copy && autoheader && autoconf)
/freebsd-current/contrib/unbound/iterator/
H A Diter_delegpt.c66 struct delegpt* copy = delegpt_create(region); local
69 if(!copy)
71 if(!delegpt_set_name(copy, region, dp->name))
73 copy->bogus = dp->bogus;
74 copy->has_parent_side_NS = dp->has_parent_side_NS;
75 copy->ssl_upstream = dp->ssl_upstream;
76 copy->tcp_upstream = dp->tcp_upstream;
78 if(!delegpt_add_ns(copy, region, ns->name, ns->lame,
81 copy->nslist->cache_lookup_count = ns->cache_lookup_count;
82 copy
[all...]
/freebsd-current/crypto/openssl/test/recipes/
H A D80-test_ssl_old.t5 # this file except in compliance with the License. You can obtain a copy
89 copy($CAcert, \*OUT); copy($Ucert, \*OUT);
93 copy($CAcert, \*OUT); copy($Ucert, \*OUT); copy($P1cert, \*OUT);
287 copy($Ucert, $P1intermediate);
313 copy($Ucert, \*OUT); copy($P1cert, \*OUT);
/freebsd-current/contrib/bmake/mk/
H A Dinstall-new.mk9 # Permission to copy, redistribute or otherwise
20 # copy if src and target are different making a backup if desired
/freebsd-current/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DFormula.cpp35 llvm::copy(Operands, reinterpret_cast<const Formula **>(Result + 1));
/freebsd-current/contrib/llvm-project/libcxx/include/__format/
H A Dformatter_bool.h13 #include <__algorithm/copy.h>
/freebsd-current/lib/libc/amd64/string/
H A Dmemccpy.S82 mov %rsi, %r9 # stash a copy of the source pointer for later
198 cmova %r8, %rdx # copy only min(buflen, srclen) bytes
200 .L0132: cmp $16, %rdx # at least 17 bytes to copy (not incl NUL)?
203 /* copy 17--32 bytes */
216 cmova %r8, %rdx # copy only min(buflen, srclen) bytes
220 .L0116: cmp $8, %rdx # at least 9 bytes to copy?
223 cmp $4, %rdx # at least 5 bytes to copy?
226 cmp $2, %rdx # at least 3 bytes to copy?
229 /* copy one or two bytes */
H A Dstrlcpy.S55 sub $1, %rdx # do not copy into the final byte of the buffer
58 cmova %rax, %rdx # if yes, only copy the part that fits
60 call CNAME(memcpy) # copy string to output
73 mov %rsi, %r9 # stash a copy of the source pointer for later
224 cmova %rax, %rdx # copy only min(buflen, srclen) bytes
226 .L0031: cmp $16, %rdx # at least 16 bytes to copy (not incl NUL)?
229 /* copy 16--31 bytes */
240 cmova %rax, %rdx # copy only min(buflen, srclen) bytes
244 .L0015: cmp $8, %rdx # at least 8 bytes to copy?
247 cmp $4, %rdx # at least 4 bytes to copy
[all...]
/freebsd-current/contrib/atf/atf-c++/detail/
H A Dtext_test.cpp49 char* copy = duplicate(orig); local
50 ATF_REQUIRE_EQ(std::strlen(copy), 3);
51 ATF_REQUIRE(std::strcmp(copy, "foo") == 0);
53 std::strcpy(copy, "bar");
54 ATF_REQUIRE(std::strcmp(copy, "bar") == 0);
/freebsd-current/contrib/libxo/libxo/
H A Dxo_encoder.c335 /* Make a writable copy of the name */
337 char *copy = alloca(len + 1); local
338 memcpy(copy, name, len);
339 copy[len] = '\0';
341 char *opts_copy = copy + (opts - name); /* Move to ':' */
344 opts = opts_copy; /* Use copy as options */
345 name = copy; /* Use trimmed copy as name */
/freebsd-current/sys/security/audit/
H A Daudit_bsm_klib.c424 char *rbuf, *fbuf, *copy; local
431 copy = path;
452 while (*copy == '/')
453 copy++;
480 (void) sbuf_cat(&sbf, copy);
/freebsd-current/sys/contrib/zlib/
H A Dgzwrite.c192 /* for small len, copy to input buffer, otherwise compress directly */
194 /* copy to input buffer, compress when full */
196 unsigned have, copy; local
202 copy = state->size - have;
203 if (copy > len)
204 copy = (unsigned)len;
205 memcpy(state->in + have, buf, copy);
206 state->strm.avail_in += copy;
207 state->x.pos += copy;
208 buf = (const char *)buf + copy;
[all...]
/freebsd-current/sys/kern/
H A Dkern_alq.c510 int activate, copy, ret; local
517 copy = len;
609 copy = alq->aq_buflen - alq->aq_writehead;
612 bcopy(data, alq->aq_entbuf + alq->aq_writehead, copy);
613 alq->aq_writehead += copy;
624 if (copy != len) {
629 bcopy(((uint8_t *)data)+copy, alq->aq_entbuf, len - copy);
630 alq->aq_writehead = len - copy;
/freebsd-current/crypto/openssl/crypto/x509/
H A Dx509_vpm.c5 * this file except in compliance with the License. You can obtain a copy
39 char *copy; local
60 copy = OPENSSL_strndup(name, namelen);
61 if (copy == NULL)
66 OPENSSL_free(copy);
70 if (!sk_OPENSSL_STRING_push(vpm->hosts, copy)) {
71 OPENSSL_free(copy);
147 /* Macro to test and copy a field if necessary */
177 /* If overwrite or check time not set, copy across */
182 /* Don't need to copy fla
[all...]
/freebsd-current/sbin/ipfw/
H A Dmain.c128 int copy = 0; /* 1 if we need to copy, 0 otherwise */ local
134 if (copy) {
136 copy = !strchr("," WHITESP, arg[i]);
138 copy = !strchr(WHITESP, arg[i]);
139 if (copy)
143 if (!copy && j > 0) /* last char was a 'blank', remove it */
171 * and copy arguments from arg[] to av[]. For each one,
209 * and copy arguments from arg[] to av[]
218 /* Time to copy
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/include/profile/
H A DMemProfData.inc15 * This file has two identical copies. The primary copy lives in LLVM and
17 * in this file, first modify the primary copy and copy it over to compiler-rt.
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProfData.inc15 * This file has two identical copies. The primary copy lives in LLVM and
17 * in this file, first modify the primary copy and copy it over to compiler-rt.

Completed in 164 milliseconds

1234567891011>>