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

1234

/gem5/ext/ply/ply/
H A Dlex.py37 import re, sys, types, copy, os
142 c = copy.copy(self)
436 ldict = f.f_globals.copy()
/gem5/src/gpu-compute/
H A Dkernel_cfg.cc174 //copy all basic blocks to all postdominator lists except for exit block
250 std::copy(block->postDominatorIds.begin(),
/gem5/ext/googletest/googletest/scripts/
H A Dgen_gtest_pred_impl.py644 defs = DEFS.copy()
/gem5/ext/googletest/googletest/test/
H A Dgtest_shuffle_test.py81 environ_copy = os.environ.copy()
/gem5/src/arch/generic/
H A Dvec_pred_reg.hh266 std::copy(that.begin(), that.end(), container.begin());
/gem5/tests/testing/
H A Dtests.py314 shutil.copy(
/gem5/ext/testlib/
H A Dloader.py161 new_suite_uids = self.suite_uids.copy()
/gem5/ext/pybind11/tests/
H A Dtest_eigen.py156 copy or const reference, we can pass a numpy array that has negative strides. Otherwise, an
219 z = np.array(a, copy=True)
477 # We should be able to explicitly copy like this (and since we're copying,
535 dbl_matrix_colmajor = np.array(int_matrix_colmajor, dtype='double', order='F', copy=True)
536 int_matrix_rowmajor = np.array(int_matrix_colmajor, order='C', copy=True)
537 dbl_matrix_rowmajor = np.array(int_matrix_rowmajor, dtype='double', order='C', copy=True)
579 The `Ref` caster sometimes creates a copy which needs to stay alive. This needs to
H A Dtest_copy_move.cpp2 tests/test_copy_move_policies.cpp -- 'copy' and 'move' return value policies
36 /* Custom type caster move/copy test classes */
107 py::return_value_policy::copy);
195 // #389: rvp::move should fall-through to copy on non-movable objects
H A Dtest_sequences_and_iterators.cpp351 m.def("make_iterator_1", []() { return py::make_iterator<py::return_value_policy::copy>(list); });
H A Dtest_methods_and_attributes.cpp318 auto rvp_copy = py::return_value_policy::copy;
/gem5/src/python/m5/
H A Dparams.py67 import copy
1793 # only one copy of a particular node
1953 newRef = copy.copy(self)
2061 newRef = copy.copy(self)
2168 baseEnums = allEnums.copy()
2169 baseParams = allParams.copy()
2174 allEnums = baseEnums.copy()
2175 allParams = baseParams.copy()
[all...]
H A DSimObject.py1172 # by those param values as well in a consistent "deep copy"-style
1229 # "deep copy" recursive clone, check the _memo dict to see if
1749 baseClasses = allClasses.copy()
1750 baseInstances = instanceDict.copy()
1755 allClasses = baseClasses.copy()
1756 instanceDict = baseInstances.copy()
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_signed_subref.inc8 License. You may obtain a copy of the License at
H A Dsc_unsigned_subref.inc8 License. You may obtain a copy of the License at
H A Dsc_nbcommon.inc8 License. You may obtain a copy of the License at
73 // Create a copy of v with sgn s. v is of the same type.
85 // Create a copy of v where v is of the different type.
102 // Create a copy of v where v is an sign-less instance.
2518 // it on buf. Thus, we have to do the complementation on a copy of
2584 // Create a copy of v with sgn s.
2596 // Create a copy of v where v is of the different type.
/gem5/src/systemc/dt/int/
H A Dsc_signed_subref.inc8 License. You may obtain a copy of the License at
H A Dsc_unsigned_subref.inc8 License. You may obtain a copy of the License at
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h1076 // Initializes this object with a copy of the input.
1078 Element* const copy = new Element[a_size]; local
1079 CopyArray(array, a_size, copy);
1080 array_ = copy;
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py9 You may obtain a copy of the License at
28 from copy import deepcopy, copy
640 self.subdata[index] = copy(subnode)
/gem5/ext/pybind11/include/pybind11/
H A Dcast.h533 case return_value_policy::copy:
537 throw cast_error("return_value_policy = copy, but the "
770 // T is non-copyable, but code containing such a copy constructor fails to actually compile.
773 // Specialization for types that appear to be copy constructible but also look like stl containers
775 // so, copy constructability depends on whether the value_type is copy constructible.
784 // Likewise for std::pair before C++17 (which mandates that the copy constructor not exist when the
785 // two types aren't themselves copy constructible).
837 policy = return_value_policy::copy;
891 /* Only enabled when the types are {copy,mov
[all...]
H A Dstl_bind.h317 // The case for special objects, like std::vector<bool>, that have to be returned-by-copy:
337 return_value_policy::copy, ItType, ItType, T>(
431 // Register copy constructor (if possible)
513 // Map assignment when copy-assignable: just copy the value
528 // Not copy-assignable, but still copy-constructible: we can update the value by erasing and reinserting
542 // value type is not copy assignable so the only way to insert it is to erase it first...
/gem5/src/cpu/kvm/
H A Dx86_cpu.cc1472 std::copy(cpuid.begin(), cpuid.end(), kvm_cpuid->entries);
1492 std::copy(msrs.begin(), msrs.end(), kvm_msrs->entries);
/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h305 Otherwise, it uses return_value::move or return_value::copy for rvalue
316 /** Reference an existing object (i.e. do not create a new copy) and take
322 /** Create a new copy of the returned object, which will be owned by
325 copy, member in class:return_value_policy
/gem5/src/arch/
H A Disa_parser.py127 # Start with the template namespace. Make a copy since we're
129 myDict = self.parser.templateMap.copy()
238 my_locals = vars().copy()
247 context = parser.exportContext.copy()
509 # note the empty slice '[:]' gives us a copy of self.flags[0]

Completed in 80 milliseconds

1234