Searched defs:copy (Results 1 - 13 of 13) sorted by relevance

/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
/gem5/util/style/
H A Dregion.py149 def copy(self): member in class:Regions
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h213 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
H A Dgtest-internal.h1078 Element* const copy = new Element[a_size]; local
/gem5/src/base/
H A Dpollevent.cc126 PollQueue::copy() function in class:PollQueue
H A Drefcnt.hh149 copy(T *d) function in class:RefCountingPtr
/gem5/src/python/m5/util/
H A Dsorteddict.py106 def copy(self): member in class:SortedDict
/gem5/src/systemc/tests/tlm/endian_conv/
H A Dtestall.py154 def copy(self): member in class:memory_state_cl
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_hash.cpp243 sc_phash_base::copy( const sc_phash_base* b ) function in class:sc_core::sc_phash_base
252 sc_phash_base::copy(const sc_phash_base& b, void* (*kdup)(const void*), void (*kfree)(void*)) function in class:sc_core::sc_phash_base
H A Dsc_hash.h107 void copy( const sc_phash_base& b ) { copy(&b); } function in class:sc_core::sc_phash_base
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/ext/testlib/
H A Dconfig.py398 def copy(self): member in class:Argument
/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h325 copy, member in class:return_value_policy
/gem5/ext/pybind11/include/pybind11/
H A Dpytypes.h622 It operator++(int) { auto copy = *this; Policy::increment(); return copy; } local
624 It operator--(int) { auto copy = *this; Policy::decrement(); return copy; } local
628 friend It operator+(const It &a, difference_type n) { auto copy = a; return copy += n; } local
630 friend It operator-(const It &a, difference_type n) { auto copy = a; return copy -= n; } local

Completed in 37 milliseconds