Searched refs:copy (Results 451 - 475 of 605) sorted by relevance

<<11121314151617181920>>

/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Dasltokens.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-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParsePragma.cpp2297 std::copy(Pragma.begin(), Pragma.end(), Toks.get());
2514 std::copy(TokenVector.begin(), TokenVector.end(), TokenArray.get());
2926 std::copy(TokenList.begin(), TokenList.end(), TokenArray.get());
2993 Info.Toks = llvm::makeArrayRef(ValueList).copy(PP.getPreprocessorAllocator());
3115 std::copy(TokenList.begin(), TokenList.end(), TokenArray.get());
3450 llvm::makeArrayRef(AttributeTokens).copy(PP.getPreprocessorAllocator());
/freebsd-13-stable/contrib/libxo/xohtml/external/
H A Djquery.js24 // Define a local copy of jQuery
327 var options, name, src, copy, copyIsArray, clone,
333 // Handle a deep copy situation
341 // Handle case when target is a string or something (possible in deep copy)
358 copy = options[ name ];
361 if ( target === copy ) {
366 if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) {
376 target[ name ] = jQuery.extend( deep, clone, copy );
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp932 // Delegate to the previous constructor, because later copy constructor may
1082 // Make a copy so we can convert it to the extended semantics.
2482 integerPart *copy;
2484 /* If we're signed and negative negate a copy. */
2486 copy = new integerPart[srcCount];
2487 APInt::tcAssign(copy, src, srcCount);
2488 APInt::tcNegate(copy, srcCount);
2489 status = convertFromUnsignedParts(copy, srcCount, rounding_mode);
2490 delete [] copy;
/freebsd-13-stable/contrib/apr/
H A Dbuild-outputs.mk24 file_io/unix/copy.lo: file_io/unix/copy.c .make.dirs include/apr_allocator.h include/apr_errno.h include/apr_file_info.h include/apr_file_io.h include/apr_general.h include/apr_inherit.h include/apr_pools.h include/apr_tables.h include/apr_thread_mutex.h include/apr_time.h include/apr_user.h include/apr_want.h
40 OBJECTS_file_io_unix = file_io/unix/buffer.lo file_io/unix/copy.lo file_io/unix/dir.lo file_io/unix/fileacc.lo file_io/unix/filedup.lo file_io/unix/filepath.lo file_io/unix/filepath_util.lo file_io/unix/filestat.lo file_io/unix/flock.lo file_io/unix/fullrw.lo file_io/unix/mktemp.lo file_io/unix/open.lo file_io/unix/pipe.lo file_io/unix/readwrite.lo file_io/unix/seek.lo file_io/unix/tempdir.lo
179 file_io/os2/copy.lo: file_io/os2/copy.c .make.dirs
198 OBJECTS_file_io_os2 = file_io/os2/buffer.lo file_io/os2/copy.lo file_io/os2/dir.lo file_io/os2/dir_make_recurse.lo file_io/os2/fileacc.lo file_io/os2/filedup.lo file_io/os2/filepath.lo file_io/os2/filepath_util.lo file_io/os2/filestat.lo file_io/os2/filesys.lo file_io/os2/flock.lo file_io/os2/fullrw.lo file_io/os2/maperrorcode.lo file_io/os2/mktemp.lo file_io/os2/open.lo file_io/os2/pipe.lo file_io/os2/readwrite.lo file_io/os2/seek.lo file_io/os2/tempdir.lo
263 OBJECTS_file_io_win32 = file_io/unix/copy.lo file_io/unix/fileacc.lo file_io/unix/filepath_util.lo file_io/unix/fullrw.lo file_io/unix/mktemp.lo file_io/unix/tempdir.lo file_io/win32/buffer.lo file_io/win32/dir.lo file_io/win32/filedup.lo file_io/win32/filepath.lo file_io/win32/filestat.lo file_io/win32/filesys.lo file_io/win32/flock.lo file_io/win32/open.lo file_io/win32/pipe.lo file_io/win32/readwrite.lo file_io/win32/seek.lo
/freebsd-13-stable/sys/contrib/openzfs/cmd/zfs/
H A Dzfs_main.c8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
811 * Given an existing dataset, create a writable copy whose initial contents
7669 char *atp, *copy; local
7709 copy = NULL;
7711 copy = strdup(fromsnap);
7713 copy = strdup(tosnap);
7714 if (copy == NULL)
7717 if ((atp = strchr(copy, '@')) != NULL)
7720 if ((zhp = zfs_open(g_zfs, copy, ZFS_TYPE_FILESYSTEM)) == NULL) {
7721 free(copy);
[all...]
/freebsd-13-stable/sys/contrib/ipfilter/netinet/
H A Dfil.c4156 /* size(I) - number of bytes to copy */
4192 /* size(I) - number of bytes to copy */
4251 /* Stores a copy of current pointers, counters, etc, in the friostat */
4622 * If the rule is being loaded from user space, i.e. we had to copy it
4997 * If zero'ing statistics, copy current to caller and zero.
5016 * When we copy this rule back out, set the data
6342 /* ptr(I) - pointer to data to copy out */
6419 /* sz(I) - size of data to copy */
6421 /* As per ipf_inobj, except the size of the object to copy in is passed in */
6482 /* sz(I) - size of data to copy */
7153 ipftuneable_t *copy; local
[all...]
/freebsd-13-stable/contrib/wpa/wpa_supplicant/
H A Dwpa_cli.c3910 char *copy = NULL, *id, *pos2; local
3947 copy = os_strdup(pos + 4);
3949 if (copy) {
3950 pos2 = id = copy;
3965 os_free(copy);
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBlocks.cpp55 /// Build the helper function to copy a block.
69 /// Represents a type of copy/destroy operation that should be performed for an
103 // String for the copy helper.
107 // Merge the strings for the copy helper and dispose helper.
151 // concatenate the copy and dispose strings.
179 /// void *copy_func_helper_decl; // optional copy helper.
224 // Optional copy/dispose helpers.
266 // If either the copy helper or the dispose helper has internal linkage,
306 /// descriptor provides copy and dispose helper functions
308 /// object with a nontrivial destructor or copy constructo
2297 llvm::Value *copy = CGF.EmitARCRetainBlock(oldValue, /*mandatory*/ true); variable
2526 T *copy = new (CGM.getContext()) T(std::forward<T>(generator)); local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp881 std::copy(Params.begin(), Params.end(), getParams());
882 std::copy(SelLocs.begin(), SelLocs.end(), getStoredSelLocs());
1030 // alloc/copy/new have a conventional meaning for both class and
1455 std::copy(typeParams.begin(), typeParams.end(), begin());
/freebsd-13-stable/sys/crypto/openssl/arm/
H A Dbsaes-armv7.S6 @ this file except in compliance with the License. You can obtain a copy
1529 mov r4, r0 @ copy arguments
1539 vst1.8 {q1}, [sp] @ copy counter value
/freebsd-13-stable/sys/net/
H A Dbpf.c224 &bpf_zerocopy_enable, 0, "Enable new zero-copy BPF buffer sessions");
679 * Make room for link header, and copy it to sockaddr
686 * short copy unspecified parameters will be
1290 * zero-copy buffers, we can't write to (or rotate) buffers that are
1346 * BIOCSETZBUF Set current zero-copy buffer locations.
1347 * BIOCGETZMAX Get maximum zero-copy buffer size.
1348 * BIOCROTZBUF Force rotation of zero-copy buffer
1596 * allocate them here. If we're using zero-copy,
2469 * transfer. bcopy is passed in to copy contiguous chunks, while
2470 * bpf_append_mbuf is passed in to copy mbu
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileFromAtoms.cpp1086 sym.name = tempRef.copy(file.ownedAllocations);
1519 std::copy(sectionContent.begin(), sectionContent.end(),
H A DArchHandler_arm64.cpp543 std::copy(atom.rawContent().begin(), atom.rawContent().end(),
H A DArchHandler_x86_64.cpp550 std::copy(atom.rawContent().begin(), atom.rawContent().end(),
H A DMachONormalizedFileYAML.cpp323 // When writing yaml, copy content byte array to Hex8 vector.
330 // copy Hex8 vector to byte array.
339 std::copy(_normalizedContent.begin(), _normalizedContent.end(), bytes);
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Devp.h5 * this file except in compliance with the License. You can obtain a copy
90 int EVP_MD_meth_set_copy(EVP_MD *md, int (*copy)(EVP_MD_CTX *to,
1429 int (*copy) (EVP_PKEY_CTX *dst,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Lex/
H A DPragma.cpp152 std::copy(Tokens.begin() + 1, Tokens.end(), Toks.get());
386 std::copy(PragmaToks.begin(), PragmaToks.end(), TokArray);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DAttributes.cpp785 llvm::copy(Attrs, getTrailingObjects<Attribute>());
982 llvm::copy(Sets, getTrailingObjects<AttributeSet>());
/freebsd-13-stable/crypto/openssl/crypto/bn/asm/
H A Dsparcv9-mont.pl5 # this file except in compliance with the License. You can obtain a copy
286 ld [$tp+%o7],%o1 ! conditional copy
/freebsd-13-stable/usr.sbin/makefs/
H A Dcd9660.c1152 * we want so we'll copy it back to record
1216 cd9660_count_collisions(cd9660node *copy) argument
1221 for (iter = copy;
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_fs/
H A Dtransaction.c10 * with the License. You may obtain a copy of the License at
663 /* Return a deep copy of SOURCE and allocate it in RESULT_POOL.
804 will not be retained. Thus, we copy the key into the target pool
1349 /* Find out what the next unique node-id and copy-id are for
3107 If this is a directory, copy all children as well.
3110 the first available node and copy ids for this filesystem, for older
3121 If REPS_TO_CACHE is not NULL, append to it a copy (allocated in
3322 representation_t *copy
3326 APR_ARRAY_PUSH(reps_to_cache, representation_t *) = copy;
3329 copy
3321 representation_t *copy local
[all...]
/freebsd-13-stable/contrib/subversion/subversion/libsvn_fs_x/
H A Dindex.c10 * with the License. You may obtain a copy of the License at
1166 /* Implement svn_cache__partial_getter_func_t: copy the data requested in
1186 /* copy the info */
1391 /* read from disk, cache and copy the result */
1558 /* Implement svn_cache__partial_getter_func_t: copy the data requested in
1591 /* Implement svn_cache__partial_getter_func_t: copy the data requested in
1611 /* copy the revision's page table into BATON */
2437 /* copy data from cache to BATON */
2564 /* copy the requested info into *BATON */
2654 * The same can happen if you copy
2898 svn_fs_x__p2l_entry_t *copy; local
[all...]
H A Dtransaction.c10 * with the License. You may obtain a copy of the License at
943 /* Return a deep copy of SOURCE and allocate it in RESULT_POOL.
1058 will not be retained. Thus, we copy the key into the target pool
1633 /* Find out what the next unique node-id and copy-id are for
1722 /* Assign copy-id. */
3072 pointer to the new noderev-id. If this is a directory, copy all
3076 the first available node and copy ids for this filesystem, for older
3087 If REPS_TO_CACHE is not NULL, append to it a copy (allocated in
3259 svn_fs_x__representation_t *copy
3263 APR_ARRAY_PUSH(reps_to_cache, svn_fs_x__representation_t *) = copy;
3258 svn_fs_x__representation_t *copy local
[all...]
/freebsd-13-stable/crypto/openssl/crypto/
H A Dsparccpuid.S4 ! this file except in compliance with the License. You can obtain a copy

Completed in 572 milliseconds

<<11121314151617181920>>