Searched refs:other (Results 51 - 70 of 70) sorted by relevance

123

/gem5/ext/pybind11/tests/
H A Dtest_copy_move.cpp23 lacking_copy_ctor(const lacking_copy_ctor& other) = delete; member in struct:lacking_copy_ctor
30 lacking_move_ctor(const lacking_move_ctor& other) = delete; member in struct:lacking_move_ctor
31 lacking_move_ctor(lacking_move_ctor&& other) = delete; member in struct:lacking_move_ctor
/gem5/ext/systemc/src/tlm_utils/
H A Dmulti_passthrough_target_socket.h309 tlm::tlm_fw_transport_if<TYPES>* get_last_binder(tlm::tlm_bw_transport_if<TYPES>* other){ argument
310 m_multi_binds[m_binders.size()-1]=other;
/gem5/ext/pybind11/include/pybind11/
H A Dbuffer_info.h59 buffer_info(buffer_info &&other) { argument
60 (*this) = std::move(other);
H A Diostream.h121 scoped_ostream_redirect(scoped_ostream_redirect &&other) = default; member in class:scoped_ostream_redirect
H A Dcast.h287 bool operator==(const iterator &other) { return curr.index == other.curr.index; } argument
288 bool operator!=(const iterator &other) { return curr.index != other.curr.index; } argument
643 // Defer accepting None to other overloads (if we aren't in convert mode):
1242 // without any encoding/decoding attempt). For other C++ char sizes this is a no-op.
1285 // Defer accepting None to other overloads (if we aren't in convert mode):
1736 // store the result in the given variable. For other types, this is a no-op.
H A Dpybind11.h482 result other than PYBIND11_TRY_NEXT_OVERLOAD.
1409 object other = kv.second[int_(0)];
1410 if (other.equal(arg))
1724 /// Makes an iterator over values of an stl container or other container supporting
/gem5/src/systemc/ext/tlm_utils/
H A Dmulti_passthrough_target_socket.h328 get_last_binder(tlm::tlm_bw_transport_if<TYPES> *other) argument
330 m_multi_binds[m_binders.size() - 1] = other;
/gem5/src/mem/slicc/symbols/
H A DStateMachine.py12 # documentation and/or other materials provided with the distribution;
114 for other in self.actions.itervalues():
115 if action.ident == other.ident:
118 if action.short == other.short:
119 other.warning("Duplicate action shorthand: %s" % other.ident)
120 other.warning(" shorthand = %s" % other.short)
/gem5/src/dev/virtio/
H A Dbase.hh6 * not be construed as granting a license to any other intellectual
20 * documentation and/or other materials provided with the distribution;
156 VirtDescriptor(VirtDescriptor &&other) noexcept;
294 VirtDescriptor(const VirtDescriptor &other);
H A Dbase.cc6 * not be construed as granting a license to any other intellectual
20 * documentation and/or other materials provided with the distribution;
53 VirtDescriptor::VirtDescriptor(VirtDescriptor &&other) noexcept
55 *this = std::forward<VirtDescriptor>(other);
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_vector.h215 sc_member_access( const non_const_policy& other )
216 : ptr_(other.ptr_)
535 sc_vector_assembly( const sc_vector_assembly & other )
536 : vec_( other.vec_ )
537 , ptr_( other.ptr_ )
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h12 // in the documentation and/or other materials provided with the
260 AssertionResult(const AssertionResult& other);
282 AssertionResult& operator=(AssertionResult other) { argument
283 swap(other);
326 // Swap the contents of this AssertionResult with other.
327 void swap(AssertionResult& other);
1456 // to match the Secret* in the other overload, which would otherwise make
1820 // generic name and clashes with some other libraries.
1829 // is a generic name and clashes with some other libraries.
1908 // other comparison
[all...]
/gem5/ext/testlib/
H A Dconfig.py10 # documentation and/or other materials provided with the distribution;
406 pretending to be an int. This makes the int stay on the heap and eat other
415 def __add__(self, other):
416 self.val += other
/gem5/src/systemc/tests/
H A Dverify.py11 # documentation and/or other materials provided with the distribution;
122 def __lt__(self, other):
123 return self.number < other.number
/gem5/src/arch/
H A Disa_parser.py5 # not be construed as granting a license to any other intellectual
23 # documentation and/or other materials provided with the distribution;
110 # the attribute spaces of other objects (e.g. InstObjParams instances).
313 def __add__(self, other):
315 self.header_output + other.header_output,
316 self.decoder_output + other.decoder_output,
317 self.exec_output + other.exec_output,
318 self.decode_block + other.decode_block,
319 self.has_decode_default or other.has_decode_default)
1631 # into other to
[all...]
/gem5/src/mem/cache/prefetch/
H A DPrefetcher.py5 # not be construed as granting a license to any other intellectual
22 # documentation and/or other materials provided with the distribution;
424 offsets and the other half with negative ones)")
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc12 // in the documentation and/or other materials provided with the
99 // TODO(kenton@google.com): There are other ways to get the time on
113 // Assume other platforms have gettimeofday().
987 AssertionResult::AssertionResult(const AssertionResult& other) argument
988 : success_(other.success_),
989 message_(other.message_.get() != NULL ?
990 new ::std::string(*other.message_) :
995 void AssertionResult::swap(AssertionResult& other) { argument
997 swap(success_, other.success_);
998 swap(message_, other
[all...]
/gem5/ext/systemc/src/sysc/qt/md/
H A Dksr1.s165 # is this stack; other
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-port.h12 // in the documentation and/or other materials provided with the
39 // This file is fundamental to Google Test. All other Google Test source
41 // any other Google Test header.
145 // don't have access to other platforms, support for them may be less
227 // other platforms, including Windows.
325 // probably other compilers set that too in C++11 mode.
489 // For other compilers, we assume exceptions are disabled to be
583 // For all other compilers, we assume RTTI is enabled.
904 // does not exist on any other system.
1160 RE(const RE& other) { Ini argument
[all...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc12 // in the documentation and/or other materials provided with the
3292 ConstPropagatingPtr(const ConstPropagatingPtr& other) : val_(other.val_) {} argument

Completed in 108 milliseconds

123