Searched refs:rhs (Results 26 - 50 of 61) sorted by relevance

123

/gem5/src/systemc/ext/dt/fx/
H A Dscfx_mant.hh162 inline scfx_mant::scfx_mant(const scfx_mant &rhs) : argument
163 m_array(0), m_size(rhs.m_size)
167 (*this)[i] = rhs[i];
172 scfx_mant::operator = (const scfx_mant &rhs) argument
174 if (&rhs != this) {
175 if (m_size != rhs.m_size) {
177 m_array = alloc(m_size = rhs.m_size);
181 (*this)[i] = rhs[i];
/gem5/ext/nomali/lib/
H A Dgpublock.cc37 GPUBlock::GPUBlock(GPUBlock &&rhs) argument
38 : gpu(rhs.gpu),
39 regs(std::move(rhs.regs))
H A Djobslot.hh46 JobSlot(JobSlot &&rhs);
H A Daddrspace.hh46 AddrSpace(AddrSpace &&rhs);
H A Djobslot.cc53 JobSlot::JobSlot(JobSlot &&rhs) argument
54 : GPUBlock(std::move(rhs)),
55 id(std::move(rhs.id)),
56 jc(rhs.jc)
H A Dgpublock.hh38 GPUBlock(GPUBlock &&rhs);
/gem5/src/mem/qos/
H A Dpolicy_pf.cc95 [] (const MasterHistory& lhs, const MasterHistory& rhs)
96 { return lhs.second > rhs.second; };
/gem5/src/mem/ruby/slicc_interface/
H A DMessage.hh118 operator>(const MsgPtr &lhs, const MsgPtr &rhs) argument
121 const Message *r = rhs.get();
/gem5/ext/pybind11/include/pybind11/detail/
H A Dinternals.h55 inline bool same_type(const std::type_info &lhs, const std::type_info &rhs) { return lhs == rhs; } argument
59 inline bool same_type(const std::type_info &lhs, const std::type_info &rhs) {
60 return lhs.name() == rhs.name() || std::strcmp(lhs.name(), rhs.name()) == 0;
74 bool operator()(const std::type_index &lhs, const std::type_index &rhs) const {
75 return lhs.name() == rhs.name() || std::strcmp(lhs.name(), rhs.name()) == 0;
/gem5/ext/mcpat/
H A Dbasic_components.h124 statsComponents & operator=(const statsComponents & rhs) { argument
125 access = rhs.access;
126 hit = rhs.hit;
127 miss = rhs.miss;
186 friend McPATOutput operator+(const McPATOutput &lhs, const McPATOutput &rhs);
187 void operator+=(const McPATOutput &rhs);
/gem5/ext/mcpat/cacti/
H A Dcacti_interface.h66 powerComponents & operator=(const powerComponents & rhs) { argument
67 dynamic = rhs.dynamic;
68 leakage = rhs.leakage;
69 gate_leakage = rhs.gate_leakage;
70 short_circuit = rhs.short_circuit;
71 longer_channel_leakage = rhs.longer_channel_leakage;
/gem5/ext/drampower/src/
H A DCmdScheduler.h90 const commandItem& rhs) const
92 return lhs.time < rhs.time;
/gem5/src/arch/arm/kvm/
H A Dgic.hh77 KvmKernelGicV2 &operator=(const KvmKernelGicV2 &&rhs) = delete; member in class:KvmKernelGicV2
78 KvmKernelGicV2 &operator=(const KvmKernelGicV2 &rhs) = delete; member in class:KvmKernelGicV2
/gem5/src/base/
H A Dcoroutine.hh155 Coroutine(const Coroutine& rhs) = delete; member in class:m5::Coroutine
156 Coroutine& operator=(const Coroutine& rhs) = delete; member in class:m5::Coroutine
H A Dstr.hh87 // Split the string s into lhs and rhs on the first occurence of the
90 split_first(const std::string &s, std::string &lhs, std::string &rhs, char c);
92 // Split the string s into lhs and rhs on the last occurence of the
95 split_last(const std::string &s, std::string &lhs, std::string &rhs, char c);
/gem5/ext/googletest/googletest/include/gtest/
H A Dgtest.h1377 const T1& lhs, const T2& rhs) {
1380 FormatForComparisonFailureMessage(lhs, rhs),
1381 FormatForComparisonFailureMessage(rhs, lhs),
1390 const T2& rhs) {
1392 if (lhs == rhs) {
1397 return CmpHelperEQFailure(lhs_expression, rhs_expression, lhs, rhs);
1406 BiggestInt rhs);
1420 const T2& rhs) {
1421 return CmpHelperEQ(lhs_expression, rhs_expression, lhs, rhs);
1433 BiggestInt rhs) {
1375 CmpHelperEQFailure(const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs) argument
1387 CmpHelperEQ(const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs) argument
1417 Compare(const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs) argument
1430 Compare(const char* lhs_expression, const char* rhs_expression, BiggestInt lhs, BiggestInt rhs) argument
1448 Compare( const char* lhs_expression, const char* rhs_expression, const T1& lhs, const T2& rhs, typename EnableIf<!is_pointer<T2>::value>::type* = 0) argument
1465 Compare( const char* lhs_expression, const char* rhs_expression, Secret* , T* rhs) argument
[all...]
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h353 // rhs. In particular, this function:
358 bool AlmostEquals(const FloatingPoint& rhs) const {
361 if (is_nan() || rhs.is_nan()) return false;
363 return DistanceBetweenSignAndMagnitudeNumbers(u_.bits_, rhs.u_.bits_)
956 bool ArrayEq(const T* lhs, size_t size, const U* rhs);
960 inline bool ArrayEq(const T& lhs, const U& rhs) { return lhs == rhs; } argument
964 inline bool ArrayEq(const T(&lhs)[N], const U(&rhs)[N]) {
965 return internal::ArrayEq(lhs, N, rhs);
972 bool ArrayEq(const T* lhs, size_t size, const U* rhs) { argument
1052 NativeArray(const NativeArray& rhs) argument
[all...]
/gem5/ext/googletest/googletest/samples/
H A Dprime_tables.h120 void operator=(const PreCalculatedPrimeTable& rhs);
/gem5/ext/googletest/googletest/scripts/
H A Dpump.py94 def __eq__(self, rhs):
95 return self.line == rhs.line and self.column == rhs.column
97 def __ne__(self, rhs):
98 return not self == rhs
100 def __lt__(self, rhs):
101 return self.line < rhs.line or (
102 self.line == rhs.line and self.column < rhs.column)
104 def __le__(self, rhs)
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h895 explicit ComparisonBase(const Rhs& rhs) : rhs_(rhs) {} argument
905 explicit Impl(const Rhs& rhs) : rhs_(rhs) {} argument
929 explicit EqMatcher(const Rhs& rhs) argument
930 : ComparisonBase<EqMatcher<Rhs>, Rhs, AnyEq>(rhs) { }
937 explicit NeMatcher(const Rhs& rhs) argument
938 : ComparisonBase<NeMatcher<Rhs>, Rhs, AnyNe>(rhs) { }
945 explicit LtMatcher(const Rhs& rhs) argument
946 : ComparisonBase<LtMatcher<Rhs>, Rhs, AnyLt>(rhs) { }
953 GtMatcher(const Rhs& rhs) argument
961 LeMatcher(const Rhs& rhs) argument
969 GeMatcher(const Rhs& rhs) argument
1090 CaseInsensitiveCStringEquals(const char* lhs, const char* rhs) argument
1094 CaseInsensitiveCStringEquals(const wchar_t* lhs, const wchar_t* rhs) argument
2701 PointwiseMatcher(const TupleMatcher& tuple_matcher, const RhsContainer& rhs) argument
2728 Impl(const TupleMatcher& tuple_matcher, const RhsStlContainer& rhs) argument
3762 TypedEq(const Rhs& rhs) argument
3815 DoubleEq(double rhs) argument
3821 NanSensitiveDoubleEq(double rhs) argument
3828 DoubleNear( double rhs, double max_abs_error) argument
3836 NanSensitiveDoubleNear( double rhs, double max_abs_error) argument
3843 FloatEq(float rhs) argument
3849 NanSensitiveFloatEq(float rhs) argument
3856 FloatNear( float rhs, float max_abs_error) argument
3864 NanSensitiveFloatNear( float rhs, float max_abs_error) argument
4150 ContainerEq(const Container& rhs) argument
4187 Pointwise(const TupleMatcher& tuple_matcher, const Container& rhs) argument
4200 Pointwise( const TupleMatcher& tuple_matcher, std::initializer_list<T> rhs) argument
4256 UnorderedPointwise(const Tuple2Matcher& tuple2_matcher, std::initializer_list<T> rhs) argument
[all...]
/gem5/ext/googletest/googletest/test/
H A Dgtest_filter_unittest.py233 def AssertSetEqual(self, lhs, rhs):
237 self.assert_(elem in rhs, '%s in %s' % (elem, rhs))
239 for elem in rhs:
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc164 explicit GreaterThanMatcher(int rhs) : rhs_(rhs) {} argument
875 const Unprintable& /* rhs */) {
3380 AStruct(const AStruct& rhs) argument
3381 : x(rhs.x), y(rhs.y), z(rhs.z.value()), p(rhs.p) {}
4042 bool operator==(const NotCopyable& rhs) const {
4043 return value() == rhs
5036 PushMatch(size_t lhs, size_t rhs) argument
5438 vector<int> rhs; local
5453 list<signed char> rhs; local
5468 vector<int> rhs; local
5477 const int rhs[] = {1, 2, 3}; local
5498 const int rhs[1] = {0}; local
5509 const int rhs[3] = {2, 6, 4}; local
5518 const int rhs[3] = {2, 4, 6}; local
5525 const int rhs[3] = {2, 4, 6}; local
5538 vector<int> rhs; local
5564 list<signed char> rhs; local
5579 vector<int> rhs; local
5588 const int rhs[] = {1, 2, 3}; local
5609 const int rhs[1] = {0}; local
5620 const int rhs[3] = {2, 6, 6}; local
5629 const int rhs[3] = {2, 4, 6}; local
5635 const int rhs[3] = {6, 4, 2}; local
5641 const int rhs[3] = {4, 6, 2}; local
[all...]
/gem5/src/dev/virtio/
H A Dbase.cc63 VirtDescriptor::operator=(VirtDescriptor &&rhs) noexcept
65 memProxy = std::move(rhs.memProxy);
66 queue = std::move(rhs.queue);
67 _index = std::move(rhs._index);
68 desc = std::move(rhs.desc);
/gem5/ext/ply/example/BASIC/
H A Dbasinterp.py116 rhs = self.eval(expr[3])
118 if lhs < rhs: return 1
122 if lhs <= rhs: return 1
126 if lhs > rhs: return 1
130 if lhs >= rhs: return 1
134 if lhs == rhs: return 1
138 if lhs != rhs: return 1
/gem5/ext/googletest/googletest/src/
H A Dgtest.cc894 bool String::CStringEquals(const char * lhs, const char * rhs) { argument
895 if ( lhs == NULL ) return rhs == NULL;
897 if ( rhs == NULL ) return false;
899 return strcmp(lhs, rhs) == 0;
1394 const FloatingPoint<RawType> lhs(val1), rhs(val2);
1395 if (lhs.AlmostEquals(rhs)) {
1440 BiggestInt rhs) {
1441 if (lhs == rhs) {
1447 FormatForComparisonFailureMessage(lhs, rhs),
1448 FormatForComparisonFailureMessage(rhs, lh
1437 CmpHelperEQ(const char* lhs_expression, const char* rhs_expression, BiggestInt lhs, BiggestInt rhs) argument
1487 CmpHelperSTREQ(const char* lhs_expression, const char* rhs_expression, const char* lhs, const char* rhs) argument
1503 CmpHelperSTRCASEEQ(const char* lhs_expression, const char* rhs_expression, const char* lhs, const char* rhs) argument
1860 WideCStringEquals(const wchar_t * lhs, const wchar_t * rhs) argument
1869 CmpHelperSTREQ(const char* lhs_expression, const char* rhs_expression, const wchar_t* lhs, const wchar_t* rhs) argument
1905 CaseInsensitiveCStringEquals(const char * lhs, const char * rhs) argument
1925 CaseInsensitiveWideCStringEquals(const wchar_t* lhs, const wchar_t* rhs) argument
[all...]

Completed in 91 milliseconds

123