Searched refs:copy (Results 1 - 25 of 77) sorted by relevance

1234

/gem5/ext/systemc/src/sysc/qt/md/
H A Dhppa_b.s4 ; Permission to use, copy, modify and distribute this software and
60 copy %r3,%r22 ; copy the procedure label to r22, ...
63 copy %mrp,%rp ; remember the return-pointer
65 copy %r3,%r22
68 copy %mrp,%rp
70 copy %r3,%r22
73 copy %mrp,%rp
75 copy %r3,%r22
78 copy
[all...]
H A Dhppa.s6 ; Permission to use, copy, modify and distribute this software and
68 copy %arg0,%r22 ; helper to be called by $$dyncall
69 copy %sp,%arg0 ; pass current sp as arg0 to helper
70 copy %arg3,%sp ; set new sp
74 copy %mrp,%rp
149 copy %r18,%arg0 ; set user arg `pu'.
150 copy %r17,%arg1 ; ... user function pt.
151 copy %r16,%arg2 ; ... user function userf.
153 copy %r15,%r22 ; function to be called by $$dyncall
157 copy
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_modules.cpp25 A& operator=(const A &copy) { print_copy_assigned(this); v = copy.v; return *this; } argument
39 B& operator=(const B &copy) { print_copy_assigned(this); a1 = copy.a1; a2 = copy.a2; return *this; } argument
H A Dtest_smart_ptr.py160 copy = s.copy # init_holder_helper(holder_ptr=false, owned=true)
162 assert s.set_ref(copy)
163 assert s.set_holder(copy)
175 del ref, copy, holder_ref, holder_copy, s
196 copy = s.copy # init_holder_helper(holder_ptr=false, owned=true, bad_wp=false)
198 assert s.set_ref(copy)
199 assert s.set_holder(copy)
211 del ref, bad_wp, copy, holder_re
[all...]
H A Dtest_methods_and_attributes.py236 copy = getattr(obj, access + "_copy")
237 assert copy.value == 1
238 copy.value = 2
241 copy = getattr(obj, access + "_func")
242 assert copy.value == 1
243 copy.value = 2
H A Dtest_builtin_casters.py251 a1 = m.refwrap_list(copy=True)
252 a2 = m.refwrap_list(copy=True)
257 b1 = m.refwrap_list(copy=False)
258 b2 = m.refwrap_list(copy=False)
H A Dtest_buffers.py35 # PyPy: Memory leak in the "np.array(m, copy=False)" call
50 mat2 = np.array(mat, copy=False)
H A Dtest_builtin_casters.cpp132 m.def("refwrap_list", [](bool copy) {
136 l.append(py::cast(f, copy ? py::return_value_policy::copy
140 }, "copy"_a);
/gem5/src/base/
H A Drefcnt.hh69 // Don't allow a default copy constructor or copy operator on
70 // these objects because the default operation will copy the
149 copy(T *d) function in class:RefCountingPtr
179 copy(d);
189 RefCountingPtr(T *data) { copy(data); }
193 RefCountingPtr(const RefCountingPtr &r) { copy(r.data); }
205 RefCountingPtr(const NonConstT &r) { copy(r.data); }
H A Dpollevent.cc82 queue->copy();
92 queue->copy();
126 PollQueue::copy() function in class:PollQueue
149 copy();
184 copy();
H A Dpollevent.hh81 void copy();
H A Dcirclebuf.hh76 * @param len Number of elements to copy
88 * @param len Number of elements to copy
95 std::copy(begin() + offset, begin() + offset + len, out);
125 std::copy(in, in + len, end());
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
156 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
159 copy(&ptr);
165 copy(&ptr);
172 copy(&ptr);
213 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/gem5/tests/gem5/
H A Dsuite.py30 import copy
112 _fixtures = copy.copy(fixtures)
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_hash.h8 License. You may obtain a copy of the License at
106 void copy( const sc_phash_base* );
107 void copy( const sc_phash_base& b ) { copy(&b); } function in class:sc_core::sc_phash_base
108 void copy( const sc_phash_base& b, void* (*kdup)(const void*), void (*kfree)(void*));
177 void copy(const sc_phash<K,C>* b) { sc_phash_base::copy(b); } function in class:sc_core::sc_phash
178 void copy(const sc_phash<K,C>& b) { sc_phash_base::copy(b); } function in class:sc_core::sc_phash
179 void copy(cons function in class:sc_core::sc_phash
290 void copy(const sc_pdhash<K,C>& b) { sc_phash_base::copy(b, kdup, kfree); } function in class:sc_core::sc_pdhash
378 void copy(const sc_strhash<C>* b) { sc_phash_base::copy(*b, sc_strhash_kdup, sc_strhash_kfree); } function in class:sc_core::sc_strhash
379 void copy(const sc_strhash<C>& b) { sc_phash_base::copy(b, sc_strhash_kdup, sc_strhash_kfree); } function in class:sc_core::sc_strhash
[all...]
/gem5/util/style/
H A Dregion.py149 def copy(self): member in class:Regions
150 copy = Regions()
151 copy.regions.extend(self.regions)
152 return copy
226 result = self.copy()
/gem5/src/dev/ps2/
H A Ddevice.cc61 std::copy(outBuffer.begin(), outBuffer.end(), buffer.begin());
/gem5/ext/googletest/googletest/test/
H A Dgtest_env_var_test.py45 environ = os.environ.copy()
H A Dgtest_test_utils.py62 environ = os.environ.copy()
268 old_environ = os.environ.copy()
/gem5/ext/testlib/
H A Dfixture.py29 import copy
/gem5/ext/ply/ply/
H A Dcpp.py70 import copy
386 macro.value[i] = copy.copy(macro.value[i])
420 # Make a copy of the macro token sequence
421 rep = [copy.copy(_x) for _x in macro.value]
429 rep[i] = copy.copy(rep[i])
483 ex = self.expand_macros([copy.copy(_
[all...]
/gem5/ext/nomali/lib/
H A DRules.mk7 # You may obtain a copy of the License at
/gem5/ext/nomali/tests/
H A DRules.mk7 # You may obtain a copy of the License at
/gem5/src/mem/ruby/network/
H A DMessageBuffer.cc393 vector<MsgPtr> copy(m_prio_heap);
394 sort_heap(copy.begin(), copy.end(), greater<MsgPtr>());
395 ccprintf(out, "%s] %s", copy, name());
/gem5/src/python/m5/
H A Dproxy.py54 import copy
167 # Return a copy of self rather than modifying self in place
170 new_self = copy.deepcopy(self)
180 new_self = copy.deepcopy(self)

Completed in 35 milliseconds

1234