Home
last modified time | relevance | path

Searched refs:rhs (Results 76 – 100 of 147) sorted by relevance

123456

/art/test/ti-agent/
Djvmti_helper.cc130 std::ostream& operator<<(std::ostream& os, const jvmtiError& rhs) { in operator <<() argument
131 switch (rhs) { in operator <<()
231 LOG(FATAL) << "Unexpected error type " << static_cast<int>(rhs); in operator <<()
Djvmti_helper.h80 std::ostream& operator<<(std::ostream& os, const jvmtiError& rhs);
/art/runtime/arch/
Dinstruction_set_features.cc257 std::ostream& operator<<(std::ostream& os, const InstructionSetFeatures& rhs) { in operator <<() argument
258 os << "ISA: " << rhs.GetInstructionSet() << " Feature string: " << rhs.GetFeatureString(); in operator <<()
Dinstruction_set_features.h142 std::ostream& operator<<(std::ostream& os, const InstructionSetFeatures& rhs);
/art/libdexfile/dex/
Dutf.cc216 const uint16_t rhs = *utf16++; in CompareModifiedUtf8ToUtf16AsCodePointValues() local
218 if (lhs != rhs) { in CompareModifiedUtf8ToUtf16AsCodePointValues()
219 return lhs > rhs ? 1 : -1; in CompareModifiedUtf8ToUtf16AsCodePointValues()
Dtype_lookup_table.cc29 static inline bool ModifiedUtf8StringEquals(const char* lhs, const char* rhs) { in ModifiedUtf8StringEquals() argument
30 return CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(lhs, rhs) == 0; in ModifiedUtf8StringEquals()
/art/compiler/optimizing/
Dnodes.cc1705 std::ostream& operator<<(std::ostream& os, ComparisonBias rhs) { in operator <<() argument
1707 switch (rhs) { in operator <<()
1715 LOG(FATAL) << "Unknown ComparisonBias: " << static_cast<int>(rhs); in operator <<()
1739 std::ostream& operator<<(std::ostream& os, HInstruction::InstructionKind rhs) { in operator <<() argument
1741 switch (rhs) { in operator <<()
1744 os << "Unknown instruction kind " << static_cast<int>(rhs); in operator <<()
2845 std::ostream& operator<<(std::ostream& os, const ReferenceTypeInfo& rhs) { in operator <<() argument
2848 << " is_valid=" << rhs.IsValid() in operator <<()
2849 << " type=" << (!rhs.IsValid() ? "?" : mirror::Class::PrettyClass(rhs.GetTypeHandle().Get())) in operator <<()
2850 << " is_exact=" << rhs.IsExact() in operator <<()
[all …]
Dreference_type_propagation.cc414 HInstruction* rhs = input->AsEqual()->GetConstantRight(); in MatchIfInstanceOf() local
415 if (rhs != nullptr) { in MatchIfInstanceOf()
417 if (lhs->IsInstanceOf() && rhs->IsIntConstant()) { in MatchIfInstanceOf()
418 if (rhs->AsIntConstant()->IsTrue()) { in MatchIfInstanceOf()
423 DCHECK(rhs->AsIntConstant()->IsFalse()) << rhs->AsIntConstant()->GetValue(); in MatchIfInstanceOf()
431 HInstruction* rhs = input->AsNotEqual()->GetConstantRight(); in MatchIfInstanceOf() local
432 if (rhs != nullptr) { in MatchIfInstanceOf()
434 if (lhs->IsInstanceOf() && rhs->IsIntConstant()) { in MatchIfInstanceOf()
435 if (rhs->AsIntConstant()->IsFalse()) { in MatchIfInstanceOf()
440 DCHECK(rhs->AsIntConstant()->IsTrue()) << rhs->AsIntConstant()->GetValue(); in MatchIfInstanceOf()
Dregister_allocator_graph_color.cc132 const CoalesceOpportunity* rhs) { in CmpPriority()
133 return lhs->priority < rhs->priority; in CmpPriority()
419 const InterferenceNode* rhs) { in HasGreaterNodePriority() argument
421 if (lhs->RequiresColor() != rhs->RequiresColor()) { in HasGreaterNodePriority()
426 return lhs->GetSpillWeight() > rhs->GetSpillWeight(); in HasGreaterNodePriority()
1239 const std::tuple<size_t, bool, InterferenceNode*>& rhs) { in BuildInterferenceGraph() argument
1241 < std::tie(std::get<0>(rhs), std::get<1>(rhs)); in BuildInterferenceGraph()
2017 const std::tuple<size_t, bool, LiveInterval*>& rhs) { in ColorSpillSlots() argument
2019 < std::tie(std::get<0>(rhs), std::get<1>(rhs)); in ColorSpillSlots()
Dcodegen_test.cc474 int rhs[] = {2, 1, 2, -1, 0xabc}; in TEST_F() local
494 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]); in TEST_F()
509 RunCode(target_config, *compiler_options, graph, hook_before_codegen, true, lhs[i] < rhs[i]); in TEST_F()
522 int rhs[] = {2, 1, 2, -1, 0xabc}; in TEST_F() local
552 HIntConstant* cst_rhs = graph->GetIntConstant(rhs[i]); in TEST_F()
578 RunCode(target_config, *compiler_options, graph, hook_before_codegen, true, lhs[i] < rhs[i]); in TEST_F()
/art/runtime/
Dcompiler_filter.h108 std::ostream& operator<<(std::ostream& os, const CompilerFilter::Filter& rhs);
Dcompiler_filter.cc243 std::ostream& operator<<(std::ostream& os, const CompilerFilter::Filter& rhs) { in operator <<() argument
244 return os << CompilerFilter::NameOfFilter(rhs); in operator <<()
/art/compiler/utils/arm/
Dconstants_arm.h99 std::ostream& operator<<(std::ostream& os, const DRegister& rhs);
/art/runtime/verifier/
Dverifier_deps.cc849 bool VerifierDeps::Equals(const VerifierDeps& rhs) const { in Equals()
850 if (dex_deps_.size() != rhs.dex_deps_.size()) { in Equals()
855 auto rhs_it = rhs.dex_deps_.begin(); in Equals()
857 for (; (lhs_it != dex_deps_.end()) && (rhs_it != rhs.dex_deps_.end()); lhs_it++, rhs_it++) { in Equals()
871 DCHECK((lhs_it == dex_deps_.end()) && (rhs_it == rhs.dex_deps_.end())); in Equals()
875 bool VerifierDeps::DexFileDeps::Equals(const VerifierDeps::DexFileDeps& rhs) const { in Equals()
876 return (strings_ == rhs.strings_) && in Equals()
877 (assignable_types_ == rhs.assignable_types_) && in Equals()
878 (unassignable_types_ == rhs.unassignable_types_) && in Equals()
879 (classes_ == rhs.classes_) && in Equals()
[all …]
/art/test/137-cfi/src/
DMain.java60 public int compare(Main lhs, Main rhs) { in compare() argument
/art/dexlayout/
Ddex_ir.h136 bool operator==(const Iterator& rhs) const { return position_ == rhs.position_; }
137 bool operator!=(const Iterator& rhs) const { return !(*this == rhs); }
138 bool operator<(const Iterator& rhs) const { return position_ < rhs.position_; }
139 bool operator>(const Iterator& rhs) const { return rhs < *this; }
140 bool operator<=(const Iterator& rhs) const { return !(rhs < *this); }
141 bool operator>=(const Iterator& rhs) const { return !(*this < rhs); }
187 difference_type operator-(const Iterator& rhs) {
188 return position_ - rhs.position_;
209 friend bool operator<(const Iterator<U>& lhs, const Iterator<U>& rhs);
/art/runtime/entrypoints/quick/
Dquick_field_entrypoints.cc137 StackArtFieldHandleScope<1> rhs(self); \
138 ReflectiveHandle<ArtField> field_handle(rhs.NewHandle(field)); \
185 StackArtFieldHandleScope<1> rhs(self); \
186 ReflectiveHandle<ArtField> field_handle(rhs.NewHandle(field)); \
/art/test/953-invoke-polymorphic-compiler/src/
DMain.java182 private static boolean And(boolean lhs, boolean rhs) { in And() argument
183 return lhs & rhs; in And()
186 private static boolean Xor(boolean lhs, boolean rhs) { in Xor() argument
187 return lhs ^ rhs; in Xor()
/art/dex2oat/dex/
Ddex_to_dex_compiler.h120 std::ostream& operator<<(std::ostream& os, DexToDexCompiler::CompilationLevel rhs);
/art/libartbase/base/
Dvariant_map.h402 const detail::VariantMapKeyRaw* rhs) const { in operator()
404 return lhs != rhs; in operator()
407 return lhs->Compare(rhs); in operator()
Dmem_map.h416 inline void swap(MemMap& lhs, MemMap& rhs) { in swap() argument
417 lhs.swap(rhs); in swap()
/art/compiler/debug/
Delf_debug_frame_writer.h172 [](const MethodDebugInfo* lhs, const MethodDebugInfo* rhs) { in WriteCFISection()
174 ArrayRef<const uint8_t> r = rhs->cfi; in WriteCFISection()
/art/runtime/jni/
Djni_internal.h147 std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs);
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc248 [](ManagedRegister lhs, ManagedRegister rhs) { return lhs.Equals(rhs); })); in CalleeSaveRegisters() argument
/art/compiler/
Dcompiled_method.h53 bool operator==(const CompiledCode& rhs) const;

123456