Searched refs:copy (Results 151 - 175 of 605) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dtemp_serializer.c10 * with the License. You may obtain a copy of the License at
221 /* copy the hash entries to an auxiliary struct of known layout */
973 /* copy & deserialize the entry */
1155 svn_fs_fs__rep_header_t *copy = apr_palloc(pool, sizeof(*copy)); local
1156 *copy = *(svn_fs_fs__rep_header_t *)in;
1158 *data_len = sizeof(*copy);
1159 *data = copy;
1170 svn_fs_fs__rep_header_t *copy = apr_palloc(pool, sizeof(*copy)); local
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectList.cpp30 std::copy(valobj_list.m_value_objects.begin(), // source begin
/freebsd-13-stable/crypto/openssl/crypto/evp/
H A Devp_lib.c5 * this file except in compliance with the License. You can obtain a copy
394 int EVP_MD_meth_set_copy(EVP_MD *md, int (*copy)(EVP_MD_CTX *to,
397 md->copy = copy;
446 return md->copy;
H A Ddigest.c5 * this file except in compliance with the License. You can obtain a copy
220 /* Make sure it's safe to copy a digest context using an ENGINE */
268 if (out->digest->copy)
269 return out->digest->copy(out, in);
H A Dpmeth_lib.c5 * this file except in compliance with the License. You can obtain a copy
198 dst->copy = src->copy;
256 if (!pctx->pmeth || !pctx->pmeth->copy)
259 /* Make sure it's safe to copy a pkey context using an ENGINE */
290 if (pctx->pmeth->copy(rctx, pctx) > 0)
507 int (*copy) (EVP_PKEY_CTX *dst,
510 pmeth->copy = copy;
695 *pcopy = pmeth->copy;
[all...]
/freebsd-13-stable/crypto/openssl/crypto/objects/
H A Dobjxref.pl5 # this file except in compliance with the License. You can obtain a copy
84 * this file except in compliance with the License. You can obtain a copy
/freebsd-13-stable/contrib/kyua/cli/
H A Dcmd_db_exec.cpp73 std::copy(args.begin(), args.end(),
/freebsd-13-stable/contrib/lib9p/
H A Dpack.c151 uint16_t copy; local
155 copy = htole16(*val);
156 return (l9p_iov_io(msg, &copy, sizeof (uint16_t)));
175 uint32_t copy; local
179 copy = htole32(*val);
180 return (l9p_iov_io(msg, &copy, sizeof (uint32_t)));
199 uint64_t copy; local
203 copy = htole64(*val);
204 return (l9p_iov_io(msg, &copy, sizeof (uint64_t)));
/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/
H A Derr.copyoutbadaddr.ksh8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
H A Derr.copyoutstrbadaddr.ksh8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Edit/
H A DEditedSource.h91 StringRef copyString(StringRef str) { return str.copy(StrAlloc); }
/freebsd-13-stable/sys/dev/netmap/
H A Dnetmap_generic.c703 * entry if necessary) and copy in the user packet. */
894 int copy; local
940 * also use to set the RX slots, but without performing the copy. */
959 copy = nm_buf_len;
960 if (mlen < copy) {
961 copy = mlen;
963 mlen -= copy;
966 ring->slot[nm_i].len = copy;
976 * and perform the copy out of the RX queue lock. */
999 copy
[all...]
/freebsd-13-stable/sys/crypto/openssl/arm/
H A Dsha256-armv4.S6 @ this file except in compliance with the License. You can obtain a copy
H A Dsha512-armv4.S6 @ this file except in compliance with the License. You can obtain a copy
/freebsd-13-stable/sys/contrib/zstd/zlibWrapper/
H A Dgzwrite.c205 /* for small len, copy to input buffer, otherwise compress directly */
207 /* copy to input buffer, compress when full */
209 z_size_t have, copy; local
215 copy = state.state->size - have;
216 if (copy > len)
217 copy = len;
218 memcpy(state.state->in + have, buf, copy);
219 state.state->strm.avail_in += copy;
220 state.state->x.pos += copy;
221 buf = (const char *)buf + copy;
[all...]
/freebsd-13-stable/sys/kern/
H A Dsubr_acl_nfs4.c365 struct acl_entry *entry, *copy, *previous, local
407 * 1.3.1. A copy of the current ACE is made, and placed
411 copy = _acl_duplicate_entry(aclp, i);
426 copy->ae_flags &= ~(ACL_ENTRY_FILE_INHERIT |
434 entry = copy;
852 struct acl_entry *entry, *copy; local
965 copy = _acl_duplicate_entry(child_aclp, i);
978 copy->ae_flags &= ~(ACL_ENTRY_NO_PROPAGATE_INHERIT |
987 if (copy->ae_entry_type == ACL_ENTRY_TYPE_ALLOW)
988 copy
[all...]
H A Dkern_rctl.c1034 struct rctl_rule *copy; local
1038 copy = uma_zalloc(rctl_rule_zone, flags);
1039 if (copy == NULL)
1041 copy->rr_subject_type = rule->rr_subject_type;
1042 copy->rr_subject.rs_proc = rule->rr_subject.rs_proc;
1043 copy->rr_subject.rs_uip = rule->rr_subject.rs_uip;
1044 copy->rr_subject.rs_loginclass = rule->rr_subject.rs_loginclass;
1045 copy->rr_subject.rs_prison_racct = rule->rr_subject.rs_prison_racct;
1046 copy->rr_per = rule->rr_per;
1047 copy
[all...]
/freebsd-13-stable/stand/i386/zfsboot/
H A Dzfsldr.S36 # to copy for boot2 (<= 15)
44 * Load the rest of zfsboot2 and BTX up, copy the parts to the right locations,
96 * have do anything fancy here to allow for an extra copy of boot1 and
127 mov %si,%ax # last byte we want to copy
134 mov %ax,%es # want to copy boot2 into.
139 sub $COPY_BLK_SZ/16,%ax # copy from boot2
/freebsd-13-stable/crypto/openssl/apps/
H A Drehash.c6 * this file except in compliance with the License. You can obtain a copy
339 char *buf, *copy = NULL; local
360 if ((copy = OPENSSL_strdup(filename)) == NULL
361 || sk_OPENSSL_STRING_push(files, copy) == 0) {
362 OPENSSL_free(copy);
/freebsd-13-stable/contrib/subversion/
H A Dautogen.sh10 # with the License. You may obtain a copy of the License at
55 # ### we don't want to copy the fancy option parsing loop there. For the
76 $libtoolize --copy --automake --force
209 # If we have an existing configure script, save a copy for comparison.
/freebsd-13-stable/contrib/bmake/mk/
H A Dautoconf.mk7 # Permission to copy, redistribute or otherwise
H A Dfiles.mk7 # Permission to copy, redistribute or otherwise
H A Dinc.mk7 # Permission to copy, redistribute or otherwise
H A Drst2htm.mk7 # Permission to copy, redistribute or otherwise
H A Dscripts.mk7 # Permission to copy, redistribute or otherwise

Completed in 302 milliseconds

1234567891011>>