Searched refs:rhs (Results 1 - 25 of 40) sorted by relevance

12

/art/runtime/arch/arm/
H A Dregisters_arm.cc28 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
29 if (rhs >= R0 && rhs <= PC) {
30 os << kRegisterNames[rhs];
32 os << "Register[" << static_cast<int>(rhs) << "]";
37 std::ostream& operator<<(std::ostream& os, const SRegister& rhs) { argument
38 if (rhs >= S0 && rhs < kNumberOfSRegisters) {
39 os << "s" << static_cast<int>(rhs);
41 os << "SRegister[" << static_cast<int>(rhs) << "]";
[all...]
H A Dregisters_arm.h52 std::ostream& operator<<(std::ostream& os, const Register& rhs);
92 std::ostream& operator<<(std::ostream& os, const SRegister& rhs);
/art/runtime/arch/mips/
H A Dregisters_mips.cc30 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
31 if (rhs >= ZERO && rhs <= RA) {
32 os << kRegisterNames[rhs];
34 os << "Register[" << static_cast<int>(rhs) << "]";
39 std::ostream& operator<<(std::ostream& os, const FRegister& rhs) { argument
40 if (rhs >= F0 && rhs < kNumberOfFRegisters) {
41 os << "f" << static_cast<int>(rhs);
43 os << "FRegister[" << static_cast<int>(rhs) << "]";
[all...]
H A Dregisters_mips.h65 std::ostream& operator<<(std::ostream& os, const Register& rhs);
104 std::ostream& operator<<(std::ostream& os, const FRegister& rhs);
/art/runtime/arch/x86/
H A Dregisters_x86.cc27 std::ostream& operator<<(std::ostream& os, const Register& rhs) { argument
28 if (rhs >= EAX && rhs <= EDI) {
29 os << kRegisterNames[rhs];
31 os << "Register[" << static_cast<int>(rhs) << "]";
H A Dregisters_x86.h42 std::ostream& operator<<(std::ostream& os, const Register& rhs);
/art/runtime/
H A Dclass_reference.h29 inline bool operator<(const ClassReference& lhs, const ClassReference& rhs) { argument
30 if (lhs.second < rhs.second) {
32 } else if (lhs.second > rhs.second) {
35 return (lhs.first < rhs.first);
H A Dinstruction_set.h32 std::ostream& operator<<(std::ostream& os, const InstructionSet& rhs);
H A Dmapping_table.h90 bool operator==(const DexToPcIterator& rhs) const {
91 CHECK(table_ == rhs.table_);
92 return element_ == rhs.element_;
94 bool operator!=(const DexToPcIterator& rhs) const {
95 CHECK(table_ == rhs.table_);
96 return element_ != rhs.element_;
163 bool operator==(const PcToDexIterator& rhs) const {
164 CHECK(table_ == rhs.table_);
165 return element_ == rhs.element_;
167 bool operator!=(const PcToDexIterator& rhs) cons
[all...]
H A Dinvoke_type.h33 std::ostream& operator<<(std::ostream& os, const InvokeType& rhs);
H A Dindirect_reference_table.h117 std::ostream& operator<<(std::ostream& os, const IndirectRefKind& rhs);
224 bool equals(const IrtIterator& rhs) const {
225 return (i_ == rhs.i_ && table_ == rhs.table_);
241 bool inline operator==(const IrtIterator& lhs, const IrtIterator& rhs) { argument
242 return lhs.equals(rhs);
245 bool inline operator!=(const IrtIterator& lhs, const IrtIterator& rhs) { argument
246 return !lhs.equals(rhs);
H A Dsafe_map.h41 Self& operator=(const Self& rhs) { argument
42 map_ = rhs.map_;
87 bool Equals(const Self& rhs) const {
88 return map_ == rhs.map_;
96 bool operator==(const SafeMap<K, V, Comparator>& lhs, const SafeMap<K, V, Comparator>& rhs) { argument
97 return lhs.Equals(rhs);
101 bool operator!=(const SafeMap<K, V, Comparator>& lhs, const SafeMap<K, V, Comparator>& rhs) { argument
102 return !(lhs == rhs);
H A Dlocks.h63 std::ostream& operator<<(std::ostream& os, const LockLevel& rhs);
/art/test/083-compiler-regressions/src/
H A DZeroTests.java42 private static long longDiv(long lhs, long rhs) { argument
43 return lhs / rhs;
46 private static long longMod(long lhs, long rhs) { argument
47 return lhs % rhs;
/art/runtime/base/
H A Dlogging.h36 UNLIKELY(!(_values.lhs OP _values.rhs)); /* empty */) \
39 << " (" #LHS "=" << _values.lhs << ", " #RHS "=" << _values.rhs << ") "
138 EagerEvaluator(LHS lhs, RHS rhs) : lhs(lhs), rhs(rhs) { } argument
140 RHS rhs; member in struct:art::EagerEvaluator
150 EagerEvaluator(T1 lhs, T2 rhs) \
152 rhs(reinterpret_cast<const void*>(rhs)) { } \
154 const void* rhs; \
170 MakeEagerEvaluator(LHS lhs, RHS rhs) argument
251 operator <<(std::ostream& os, const Dumpable<T>& rhs) argument
[all...]
H A Dlogging.cc242 std::ostream& operator<<(std::ostream& os, const HexDump& rhs) { argument
243 rhs.Dump(os);
/art/runtime/jdwp/
H A Djdwp_main.cc606 std::ostream& operator<<(std::ostream& os, const JdwpLocation& rhs) { argument
608 << Dbg::GetClassName(rhs.class_id) << "." << Dbg::GetMethodName(rhs.method_id)
609 << "@" << StringPrintf("%#llx", rhs.dex_pc) << " " << rhs.type_tag << "]";
613 bool operator==(const JdwpLocation& lhs, const JdwpLocation& rhs) { argument
614 return lhs.dex_pc == rhs.dex_pc && lhs.method_id == rhs.method_id &&
615 lhs.class_id == rhs.class_id && lhs.type_tag == rhs
618 operator !=(const JdwpLocation& lhs, const JdwpLocation& rhs) argument
[all...]
H A Dobject_registry.cc25 std::ostream& operator<<(std::ostream& os, const ObjectRegistryEntry& rhs) { argument
26 os << "ObjectRegistryEntry[" << rhs.jni_reference_type
27 << ",reference=" << rhs.jni_reference
28 << ",count=" << rhs.reference_count
29 << ",id=" << rhs.id << "]";
H A Djdwp.h74 std::ostream& operator<<(std::ostream& os, const JdwpLocation& rhs)
76 bool operator==(const JdwpLocation& lhs, const JdwpLocation& rhs);
77 bool operator!=(const JdwpLocation& lhs, const JdwpLocation& rhs);
87 std::ostream& operator<<(std::ostream& os, const JdwpTransportType& rhs);
H A Dobject_registry.h46 std::ostream& operator<<(std::ostream& os, const ObjectRegistryEntry& rhs);
/art/runtime/mirror/
H A Dstring.cc261 int32_t String::CompareTo(String* rhs) const {
264 if (lhs == rhs) {
274 int rhsCount = rhs->GetLength();
278 const uint16_t* rhsChars = rhs->GetCharArray()->GetData() + rhs->GetOffset();
/art/compiler/
H A Dcompiled_method.h55 bool operator==(const CompiledCode& rhs) const {
56 return (code_ == rhs.code_);
/art/runtime/verifier/
H A Dreg_type.cc709 static bool AssignableFrom(const RegType& lhs, const RegType& rhs, bool strict)
711 if (lhs.Equals(rhs)) {
715 return rhs.IsBooleanTypes();
717 return rhs.IsByteTypes();
719 return rhs.IsShortTypes();
721 return rhs.IsCharTypes();
723 return rhs.IsIntegralTypes();
725 return rhs.IsFloatTypes();
727 return rhs.IsLongTypes();
729 return rhs
733 << lhs << "' := '" << rhs << "'"; local
1012 operator <<(std::ostream& os, const RegType& rhs) argument
[all...]
/art/compiler/utils/mips/
H A Dconstants_mips.h52 std::ostream& operator<<(std::ostream& os, const DRegister& rhs);
/art/compiler/utils/arm/
H A Dconstants_arm.h100 std::ostream& operator<<(std::ostream& os, const DRegister& rhs);
124 std::ostream& operator<<(std::ostream& os, const Condition& rhs);

Completed in 374 milliseconds

12