Searched refs:copy (Results 51 - 75 of 656) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Dsplit_join_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
101 std::copy(m_a_entries, m_a_entries + left, a_entries);
102 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries);
156 std::copy(m_a_entries, m_a_entries + m_size, a_entries);
157 std::copy(other.m_a_entries, other.m_a_entries + other.m_size, a_entries + m_size);
/freebsd-11-stable/crypto/heimdal/lib/asn1/
H A Dcheck-common.h58 int (ASN1CALL *copy)(const void *a, void *b));
/freebsd-11-stable/kerberos5/usr.sbin/ktutil/
H A DMakefile8 copy.c \
/freebsd-11-stable/crypto/openssl/crypto/
H A Dpariscid.pl145 copy $cnt,$rv
147 copy $tick,$lasttick
157 copy $tick,$lasttick
178 copy $cnt,$rv
182 copy $tick,$lasttick
192 copy $tick,$lasttick
194 copy $diff,$lastdiff
205 copy $tick,$lasttick
/freebsd-11-stable/usr.bin/tset/
H A Dmap.c76 char *copy, *p, *termp; local
78 copy = strdup(arg);
80 if (copy == NULL || mapp == NULL)
157 badmopt: errx(1, "illegal -m option format: %s", copy);
/freebsd-11-stable/usr.bin/users/
H A Dusers.cc69 copy(names.begin(), last, ostream_iterator<string>(cout, " "));
/freebsd-11-stable/contrib/bmake/mk/
H A Dlibnames.mk7 # Permission to copy, redistribute or otherwise
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Daslsupport.y23 * copy of the source code appearing in this file ("Covered Code") an
25 * base code distributed originally by Intel ("Original Intel Code") to copy,
/freebsd-11-stable/usr.bin/printf/
H A Dprintf.c454 static char *copy; local
462 if ((newcopy = realloc(copy, newlen)) == NULL) {
466 copy = newcopy;
470 memmove(copy, str, len - 3);
471 copy[len - 3] = 'j';
472 copy[len - 2] = ch;
473 copy[len - 1] = '\0';
474 return (copy);
/freebsd-11-stable/sys/dev/netmap/
H A Dnetmap_offloadings.c262 size_t copy; local
367 copy = src_len;
368 if (gso_bytes + copy > dst_na->mfs)
369 copy = dst_na->mfs - gso_bytes;
370 memcpy(dst + gso_bytes, src, copy);
371 gso_bytes += copy;
372 src += copy;
373 src_len -= copy;
/freebsd-11-stable/crypto/openssh/
H A Dfreebsd-configure.sh23 (cd $openssh && libtoolize --copy && autoheader && autoconf)
H A Dkrl.c4 * Permission to use, copy, modify, and distribute this software for any
923 struct sshbuf *copy = NULL, *sect = NULL; local
941 /* Take a copy of the KRL buffer so we can verify its signature later */
942 if ((copy = sshbuf_fromb(buf)) == NULL) {
946 if ((r = sshbuf_consume(copy, sizeof(KRL_MAGIC) - 1)) != 0)
954 if ((r = sshbuf_get_u32(copy, &format_version)) != 0)
960 if ((r = sshbuf_get_u64(copy, &krl->krl_version)) != 0 ||
961 (r = sshbuf_get_u64(copy, &krl->generated_date)) != 0 ||
962 (r = sshbuf_get_u64(copy, &krl->flags)) != 0 ||
963 (r = sshbuf_skip_string(copy)) !
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSmallPtrSet.cpp145 assert(&RHS != this && "Self-copy should be handled by the caller.");
175 std::copy(RHS.CurArray, RHS.EndPointer(), CurArray);
195 std::copy(RHS.CurArray, RHS.CurArray + RHS.NumNonEmpty, CurArray);
227 // If only RHS is small, copy the small elements into LHS and move the pointer
231 std::copy(RHS.CurArray, RHS.CurArray + RHS.NumNonEmpty, this->SmallArray);
240 // If only LHS is small, copy the small elements into RHS and move the pointer
244 std::copy(this->CurArray, this->CurArray + this->NumNonEmpty,
260 std::copy(this->SmallArray + MinNonEmpty,
264 std::copy(RHS.SmallArray + MinNonEmpty, RHS.SmallArray + RHS.NumNonEmpty,
/freebsd-11-stable/sys/fs/nandfs/
H A Dbmap.c301 nandfs_daddr_t *copy)
325 bcopy(bp->b_data, copy, fsdev->nd_blocksize);
340 __func__, node, i, nlbn, *left, ap, copy[i]));
342 if (copy[i] == 0) {
355 copy + MNINDIR(fsdev));
359 error = nandfs_bdestroy(node, copy[i]);
369 error = nandfs_vblock_end(fsdev, copy[i]);
373 copy[i] = 0;
389 bcopy(copy, bp->b_data, fsdev->nd_blocksize);
404 nandfs_daddr_t *copy; local
299 bmap_truncate_indirect(struct nandfs_node *node, int level, nandfs_lbn_t *left, int *cleaned, struct nandfs_indir *ap, struct nandfs_indir *fp, nandfs_daddr_t *copy) argument
[all...]
/freebsd-11-stable/contrib/openbsm/bin/auditreduce/
H A Dauditreduce.c113 char *orig, *copy, re_error[64]; local
117 copy = strdup(re_string);
118 orig = copy;
119 len = strlen(copy);
121 if (copy[i] == ',' && i > 0) {
122 if (copy[i - 1] == '\\')
123 strlcpy(&copy[i - 1], &copy[i], len);
126 copy[i] = '\0';
138 if (*copy
[all...]
/freebsd-11-stable/contrib/elftoolchain/common/
H A Dutarray.h54 ctor_f *copy; member in struct:__anon1047
60 UT_icd icd; /* initializer, copy and destructor functions */
101 if ((a)->icd.copy) { (a)->icd.copy( _utarray_eltptr(a,(a)->i++), p); } \
129 if ((a)->icd.copy) { (a)->icd.copy( _utarray_eltptr(a,j), p); } \
143 if ((a)->icd.copy) { \
146 (a)->icd.copy(_utarray_eltptr(a,j+_ut_i), _utarray_eltptr(w,_ut_i)); \
/freebsd-11-stable/contrib/binutils/bfd/
H A Dhash.c18 You should have received a copy of the GNU General Public License
119 created, the @var{copy} argument is used to decide whether to
120 copy the string onto the hash table objalloc or not. If
121 @var{copy} is passed as <<FALSE>>, you must be careful not to
419 bfd_boolean copy)
456 if (copy)
680 #define strtab_hash_lookup(t, string, create, copy) \
682 bfd_hash_lookup (&(t)->table, (string), (create), (copy)))
743 bfd_boolean copy)
749 entry = strtab_hash_lookup (tab, str, TRUE, copy);
416 bfd_hash_lookup(struct bfd_hash_table *table, const char *string, bfd_boolean create, bfd_boolean copy) argument
738 _bfd_stringtab_add(struct bfd_strtab_hash *tab, const char *str, bfd_boolean hash, bfd_boolean copy) argument
[all...]
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_asic.c7 * copy of this software and associated documentation files (the "Software"),
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
202 .copy = {
207 .copy = &r100_copy_blit,
278 .copy = {
283 .copy = &r100_copy_blit,
354 .copy = {
359 .copy = &r100_copy_blit,
430 .copy = {
435 .copy
[all...]
/freebsd-11-stable/contrib/flex/
H A Dmisc.c252 /* copy_string - returns a dynamically allocated copy of a string */
259 char *copy; local
267 copy = (char *) flex_alloc (size);
269 if (copy == NULL)
272 for (c2 = copy; (*c2++ = *str++) != 0;) ;
274 return copy;
279 * returns a dynamically allocated copy of a (potentially) unsigned string
286 Char *copy; local
291 copy = allocate_Character_array (c - str + 1);
293 for (c = copy; (*
[all...]
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DFile.h48 // Make a copy of the atom's name and content that is owned by this file.
49 name = name.copy(allocator());
50 content = content.copy(allocator());
70 // Make a copy of the atom's name and content that is owned by this file.
71 name = name.copy(allocator());
72 content = content.copy(allocator());
73 sectionName = sectionName.copy(allocator());
91 // Make a copy of the atom's name and content that is owned by this file.
92 name = name.copy(allocator());
118 // Make a copy o
[all...]
/freebsd-11-stable/contrib/libreadline/
H A Dutil.c21 have a copy of the license, write to the Free Software Foundation,
137 /* Return a copy of the string between FROM and TO.
144 char *copy; local
151 copy = (char *)xmalloc (1 + length);
152 strncpy (copy, rl_line_buffer + from, length);
153 copy[length] = '\0';
154 return (copy);
/freebsd-11-stable/contrib/ofed/libmlx5/
H A Dsrq.c53 int copy; local
61 copy = min_t(long, size, be32toh(scat->byte_count));
62 memcpy((void *)(unsigned long)be64toh(scat->addr), buf, copy);
63 size -= copy;
67 buf += copy;
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Dcopy.c2 * copy.c: copy/move wrappers around wc 'copy' functionality.
11 * with the License. You may obtain a copy of the License at
65 * copy src_path into parent_of_dst_path as basename (dst_path)
86 /* Get a fresh copy of the pre-existing state of the WC's mergeinfo
403 /* Already pinned ... copy the peg date. */
409 /* Already pinned ... copy the peg revision number. */
464 "checked out in the working copy "
526 "mixed-revision working copy "
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp322 std::copy(VL.begin(), VL.end(), varlist_end());
347 std::copy(VL.begin(), VL.end(), varlist_end());
353 std::copy(VL.begin(), VL.end(), getPrivateCopies().end());
380 std::copy(PrivateCopies.begin(), PrivateCopies.end(), varlist_end());
387 std::copy(SrcExprs.begin(), SrcExprs.end(), getPrivateCopies().end());
394 std::copy(DstExprs.begin(), DstExprs.end(), getSourceExprs().end());
401 std::copy(AssignmentOps.begin(), AssignmentOps.end(),
449 std::copy(PL.begin(), PL.end(), varlist_end());
455 std::copy(IL.begin(), IL.end(), getPrivates().end());
461 std::copy(U
[all...]
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dtext.cpp48 char* copy = new char[std::strlen(str) + 1]; local
49 std::strcpy(copy, str);
50 return copy;

Completed in 197 milliseconds

1234567891011>>