Searched refs:copy (Results 201 - 225 of 656) sorted by relevance

1234567891011>>

/freebsd-11-stable/crypto/openssh/
H A Dsshkey.c1969 struct sshbuf *copy; local
1979 if ((copy = sshbuf_fromb(b)) == NULL) {
2125 if (sshkey_is_cert(key) && (ret = cert_parse(b, key, copy)) != 0)
2138 sshbuf_free(copy);
3606 struct sshbuf *copy = NULL; local
3623 /* Make a working copy of the keyblob and skip past the magic */
3624 if ((copy = sshbuf_fromb(blob)) == NULL)
3626 if ((r = sshbuf_consume(copy, sizeof(LEGACY_BEGIN))) != 0)
3630 if ((r = sshbuf_get_u8(copy, NULL)) != 0 || /* cipher type */
3631 (r = sshbuf_get_u32(copy, NUL
3665 struct sshbuf *decrypted = NULL, *copy = NULL; local
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-browser.c17 You should have received a copy of the GNU General Public License
957 long size, copy; local
984 copy = size;
991 while (--copy > 0)
1009 copy = size - len;
H A Dtree-ssa-copy.c16 You should have received a copy of the GNU General Public License
42 /* This file implements the copy propagation pass and provides a
43 handful of interfaces for performing const/copy propagation and
47 We require that for any copy operation where the RHS and LHS have
54 We enforce these requirements by having all copy propagation and
66 /* Do not copy between types for which we *do* need a conversion. */
74 If we allow copy propagation in these cases, statements de-referencing
104 time being, blocking copy-propagation in these cases is the safe thing
147 /* We have a "copy" from something like a constant into a virtual
179 /* Given two SSA_NAMEs pointers ORIG and NEW such that we are copy
445 tree copy = copy_of[SSA_NAME_VERSION (last)].value; local
[all...]
H A Dcfgloop.h17 You should have received a copy of the GNU General Public License
101 /* Loop that is copy of this loop. */
102 struct loop *copy; member in struct:loop
246 #define DLTHE_RECORD_COPY_NUMBER 2 /* Record copy number in the aux
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Ddynstr_test.c254 ATF_TC(copy); variable
255 ATF_TC_HEAD(copy, tc)
259 ATF_TC_BODY(copy, tc)
614 ATF_TP_ADD_TC(tp, copy);
/freebsd-11-stable/contrib/binutils/bfd/
H A Dlibcoff.h23 You should have received a copy of the GNU General Public License
287 #define coff_link_hash_lookup(table, string, create, copy, follow) \
290 (copy), (follow)))
438 #define coff_debug_merge_hash_lookup(table, string, create, copy) \
440 bfd_hash_lookup (&(table)->root, (string), (create), (copy)))
H A Delf-strtab.c18 You should have received a copy of the GNU General Public License
142 bfd_boolean copy)
153 bfd_hash_lookup (&tab->table, str, TRUE, copy);
140 _bfd_elf_strtab_add(struct elf_strtab_hash *tab, const char *str, bfd_boolean copy) argument
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dstl_algo.h17 // You should have received a copy of the GNU General Public License along
36 * Permission to use, copy, modify, distribute and sell this software
48 * Permission to use, copy, modify, distribute and sell this software
1576 // Do the real copy work.
1617 // Do the real copy work.
1960 return std::copy(__first, __middle,
1961 std::copy(__middle, __last, __result));
2169 std::copy(__buffer, __result2, __result1);
3264 return std::copy(__first2, __last2, std::copy(__first
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dinsert_fn_imps.hpp16 // You should have received a copy of the GNU General Public License
33 // Permission to use, copy, modify, sell, and distribute this software
120 std::copy(m_a_entries, m_a_entries + m_size, a_new_entries);
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dvstring_util.h16 // You should have received a copy of the GNU General Public License along
110 // traits_type::copy/move/assign.
117 traits_type::copy(__d, __s, __n);
/freebsd-11-stable/bin/pax/
H A Dpax.c72 int act = DEFOP; /* read/write/append/copy */
100 char *dirptr; /* destination dir in a copy */
111 * files and copy directory hierarchies. A variety of archive formats
190 * into zero filled blocks. The file copy is created with holes which are
285 copy();
/freebsd-11-stable/crypto/heimdal/kcm/
H A Dcache.c501 int copy)
509 ret = kcm_ccache_store_cred_internal(context, ccache, creds, copy, &tmp);
535 int copy,
552 if (copy) {
498 kcm_ccache_store_cred(krb5_context context, kcm_ccache ccache, krb5_creds *creds, int copy) argument
532 kcm_ccache_store_cred_internal(krb5_context context, kcm_ccache ccache, krb5_creds *creds, int copy, krb5_creds **credp) argument
/freebsd-11-stable/crypto/openssh/regress/
H A Dsftp-cmds.sh32 grep copy.dd >/dev/null 2>&1 || fail "lls failed"
36 grep copy.dd >/dev/null 2>&1 || fail "lls w/path failed"
72 cmp $DATA ${COPY} || fail "corrupted copy after get"
78 cmp $DATA ${COPY} || fail "corrupted copy after get"
86 cmp ${COPY} ${QUOTECOPY} || fail "corrupted copy after get with quotes"
95 cmp ${COPY} "$SPACECOPY" || fail "corrupted copy after get with spaces"
103 fail "corrupted copy after get with glob metacharacters"
109 cmp $DATA ${COPY}.dd/$DATANAME || fail "corrupted copy after get"
116 cmp /bin/$x ${COPY}.dd/$x || fail "corrupted copy after get"
123 cmp $DATA ${COPY}.dd/$DATANAME || fail "corrupted copy afte
[all...]
/freebsd-11-stable/sys/netgraph/
H A Dng_vlan.c480 struct ng_mesg *copy; local
496 NG_COPYMESSAGE(copy, msg, M_NOWAIT);
497 if (copy == NULL)
499 NG_SEND_MSG_HOOK(error, node, copy,
/freebsd-11-stable/sys/compat/ndis/
H A Dwinx64_wrap.S81 * we allocate some memory and copy the template function into it,
105 movsq # copy old stack contents to new location
/freebsd-11-stable/contrib/bmake/
H A Darch.c608 char copy[AR_MAX_NAME_LEN+1]; local
613 strncpy(copy, member, AR_MAX_NAME_LEN);
614 copy[AR_MAX_NAME_LEN] = '\0';
616 if ((he = Hash_FindEntry(&ar->members, copy)) != NULL)
/freebsd-11-stable/tools/tools/sysbuild/
H A Dsysbuild.sh515 log_it copy ports config files
581 log_it copy resolv.conf
587 log_it copy localtime
638 log_it copy live config files
/freebsd-11-stable/stand/efi/loader/
H A DMakefile20 copy.c \
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DOpenCLOptions.h112 void copy(const OpenCLOptions &Opts) { function in class:clang::OpenCLOptions
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DMinidump.cpp47 copy(*ExpectedData, WStr.begin());
/freebsd-11-stable/usr.bin/svn/lib/libapr/
H A DMakefile25 copy.c \
/freebsd-11-stable/usr.bin/svn/svn/
H A DMakefile19 copy-cmd.c \
/freebsd-11-stable/contrib/bmake/mk/
H A Dauto.dep.mk9 # Permission to copy, redistribute or otherwise
H A Dcython.mk8 # Permission to copy, redistribute or otherwise
H A Djava.mk9 # Permission to copy, redistribute or otherwise

Completed in 200 milliseconds

1234567891011>>