Searched refs:copy (Results 351 - 375 of 605) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/sys/netgraph/
H A Dng_gif.c315 copy:
/freebsd-13-stable/sys/dev/terasic/mtl/
H A Dterasic_mtl_syscons.c70 * memory copy between a software frame buffer and the hardware frame buffer
466 .copy = terasic_mtl_vidsw_copy,
/freebsd-13-stable/usr.bin/dc/
H A Dbcode.c6 * Permission to use, copy, modify, and distribute this software for any
806 struct value copy; local
817 push(stack_dup_value(v, &copy));
880 struct value copy; local
903 push(stack_dup_value(v, &copy));
/freebsd-13-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.y70 static char *copy (char *);
1232 yylval.s = copy(cp);
1357 copy(char *s)
H A Dftpcmd.c18 You should have received a copy of the GNU General Public License
269 static char *copy (char *);
1287 null, do not copy; instead, return the length of what the result
1332 copy anything; just return the number of bytes that would be
3288 yylval.s = copy(cp);
3413 copy(char *s)
3410 copy(char *s) function
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallVector.h206 /// We approximate is_trivially_copyable with trivial move/copy construction and
208 /// copy these types with memcpy, there is no way for the type to observe this.
292 // If this wasn't grown from the inline copy, deallocate the old space.
302 /// T's. This allows using memcpy in place of copy/move construction and
316 // Just do a copy.
380 // If this wasn't grown from the inline copy, deallocate the old space.
659 std::copy(From, To, I);
765 NewEnd = std::copy(RHS.begin(), RHS.begin()+RHSSize, this->begin());
788 std::copy(RHS.begin(), RHS.begin()+CurSize, this->begin());
H A DIntervalMap.h227 /// copy - Copy elements from another node.
231 /// @param Count Number of elements to copy.
233 void copy(const NodeBase<T1, T2, M> &Other, unsigned i, function in class:llvm::IntervalMapImpl::NodeBase
246 /// @param Count Number of elements to copy.
249 copy(*this, i, j, Count);
255 /// @param Count Number of elements to copy.
294 Sib.copy(*this, 0, SSize, Count);
306 Sib.copy(*this, Size-Count, 0, Count);
318 // We want to grow, copy from sib.
323 // We want to shrink, copy t
[all...]
/freebsd-13-stable/contrib/kyua/utils/fs/
H A Doperations_test.cpp113 fs::copy(source, target);
124 ATF_REQUIRE_THROW_RE(fs::error, "Cannot open copy source f1.txt",
125 fs::copy(source, target));
143 ATF_REQUIRE_THROW_RE(fs::error, "Cannot create copy target f2.txt",
144 fs::copy(source, target));
/freebsd-13-stable/contrib/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h1169 // Initializes this object with a copy of the input.
1171 Element* const copy = new Element[a_size]; local
1172 CopyArray(array, a_size, copy);
1173 array_ = copy;
/freebsd-13-stable/sys/dev/acpica/
H A Dacpi_apei.c343 apei_ge_handler(struct apei_ge *ge, bool copy) argument
345 uint8_t *buf = copy ? ge->copybuf : ge->buf;
366 if (!copy && ge->v1.Header.Type == ACPI_HEST_TYPE_GENERIC_ERROR_V2 &&
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFEmitter.cpp78 std::copy(Name.begin(), Name.end(), Sec.Header.Name);
88 std::copy(str.begin(), str.end(), Sec.Header.Name + 1);
116 std::copy(Name.begin(), Name.end(), Sym.Header.Name);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp300 // a copy. The filed-based buffer will be released when it goes
1054 std::copy(ChildExecPath.begin(), ChildExecPath.end(), &ChildPath[0]);
1058 std::copy(ChildInStr.begin(), ChildInStr.end(), &ChildIn[0]);
1062 std::copy(ChildOutStr.begin(), ChildOutStr.end(), &ChildOut[0]);
/freebsd-13-stable/contrib/opie/
H A Dftpcmd.y7 You should have received a copy of the license with this software. If
8 you didn't get a copy, you may request one from <license@inner.net>.
955 char c, *copy();
1057 *(char **)&yylval = copy(cp);
1175 char *copy FUNCTION((s), char *s)
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_affinity.h36 void copy(const KMPAffinity::Mask *src) override {
267 void copy(const KMPAffinity::Mask *src) override {
397 void copy(const KMPAffinity::Mask *src) override {
/freebsd-13-stable/usr.sbin/autofs/
H A Dcommon.c133 char *component, *copy, *tofree, *partial, *tmp; local
141 copy = tofree = checked_strdup(path + 1);
145 component = strsep(&copy, "/");
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryWriter.cpp1275 bNodeStr = bNodeStr.drop_back(edgeStr.size()-n).copy(allocator);
1279 StringRef abEdgeStr = edgeStr.substr(0,n).copy(allocator);
1280 StringRef bcEdgeStr = edgeStr.substr(n).copy(allocator);
1303 auto *newNode = new (allocator) TrieNode(entry.name.copy(allocator));
1314 newNode->_importedName = entry.otherName.copy(allocator);
/freebsd-13-stable/sys/dev/vte/
H A Dif_vte.c986 int copy, error, nsegs, padlen; local
1009 * To mitigate the de-fragmenting issue, perform deep copy
1012 * that is composed of single TX buffer, the deep copy is
1016 copy = 0;
1018 copy++;
1021 copy++;
1022 if (copy != 0) {
1023 /* Avoid expensive m_defrag(9) and do deep copy. */
1041 /* Get a writable copy. */
1150 * If there's a BPF listener, bounce a copy o
[all...]
/freebsd-13-stable/sys/arm64/broadcom/genet/
H A Dif_genet.c1145 bool copy = false, shift = false; local
1157 copy = true;
1178 if (copy) { \
1208 copy = true;
1221 copy = true;
/freebsd-13-stable/usr.sbin/ppp/
H A Ddatalink.c1298 struct fsm_retry copy; local
1367 copy = dl->pap.cfg.fsm;
1369 dl->pap.cfg.fsm = copy;
1371 copy = dl->chap.auth.cfg.fsm;
1373 dl->chap.auth.cfg.fsm = copy;
/freebsd-13-stable/share/man/man9/
H A DMakefile67 copy.9 \
869 MLINKS+=copy.9 copyin.9 \
870 copy.9 copyin_nofault.9 \
871 copy.9 copyinstr.9 \
872 copy.9 copyout.9 \
873 copy.9 copyout_nofault.9 \
874 copy.9 copystr.9
/freebsd-13-stable/crypto/heimdal/admin/
H A DMakefile.in8 # gives unlimited permission to copy and/or distribute it,
101 dist_ktutil_OBJECTS = add.$(OBJEXT) change.$(OBJEXT) copy.$(OBJEXT) \
403 copy.c \
516 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/copy.Po@am__quote@
/freebsd-13-stable/contrib/subversion/subversion/libsvn_subr/
H A Dsubst.c11 * with the License. You may obtain a copy of the License at
703 newline in the file, and copy it to {SRC_FORMAT, *SRC_FORMAT_LEN} to
1020 * buffer. First try to get to the boring state so we can copy
1504 /* deep copy the hash to make sure it's allocated in RESULT_POOL */
1505 apr_hash_t *copy = apr_hash_make(result_pool);
1517 svn_hash_sets(copy, apr_pstrdup(result_pool, key),
1522 keywords = copy;
1585 /* The easy way out: no translation needed, just copy. */
1793 /* The easy way out: no translation needed, just copy. */
1501 apr_hash_t *copy = apr_hash_make(result_pool); local
/freebsd-13-stable/contrib/unbound/validator/
H A Dval_utils.c1145 struct ub_packed_rrset_key* copy = packed_rrset_copy_region( local
1148 if(!copy)
1153 msg->rep->rrsets[0] = copy;
/freebsd-13-stable/contrib/tcsh/
H A Dsh.dir.c325 * Otherwise, a copy is made and sent back.
1130 Char *copy; local
1144 p2 = copy = Strsave(cp);
1166 xfree(copy);
/freebsd-13-stable/libexec/ftpd/
H A Dftpcmd.y1135 static char *copy(char *);
1381 yylval.s = copy(cp);
1506 copy(char *s)

Completed in 468 milliseconds

<<11121314151617181920>>