Home
last modified time | relevance | path

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

123456

/art/runtime/
Doat_file.h73 std::ostream& operator<<(std::ostream& os, OatClassType rhs);
Dclass_linker.cc617 bool operator() (const FieldGap& lhs, const FieldGap& rhs) in operator ()()
622 return lhs.size < rhs.size || (lhs.size == rhs.size && lhs.start_offset > rhs.start_offset); in operator ()()
/art/runtime/gc/allocator/
Drosalloc.h939 friend std::ostream& operator<<(std::ostream& os, RosAlloc::PageMapKind rhs);
943 std::ostream& operator<<(std::ostream& os, RosAlloc::PageMapKind rhs);
/art/runtime/entrypoints/
Dentrypoint_utils-inl.h387 StackArtFieldHandleScope<1> rhs(self); in FindFieldFromCode()
388 ReflectiveHandle<ArtField> resolved_field_handle(rhs.NewHandle(resolved_field)); in FindFieldFromCode()
/art/compiler/optimizing/
Dcode_generator_x86.cc1629 Location rhs, in GenerateFPCompare() argument
1634 if (rhs.IsFpuRegister()) { in GenerateFPCompare()
1635 __ ucomisd(lhs.AsFpuRegister<XmmRegister>(), rhs.AsFpuRegister<XmmRegister>()); in GenerateFPCompare()
1644 DCHECK(rhs.IsDoubleStackSlot()); in GenerateFPCompare()
1645 __ ucomisd(lhs.AsFpuRegister<XmmRegister>(), Address(ESP, rhs.GetStackIndex())); in GenerateFPCompare()
1648 if (rhs.IsFpuRegister()) { in GenerateFPCompare()
1649 __ ucomiss(lhs.AsFpuRegister<XmmRegister>(), rhs.AsFpuRegister<XmmRegister>()); in GenerateFPCompare()
1658 DCHECK(rhs.IsStackSlot()); in GenerateFPCompare()
1659 __ ucomiss(lhs.AsFpuRegister<XmmRegister>(), Address(ESP, rhs.GetStackIndex())); in GenerateFPCompare()
1782 Location rhs = condition->GetLocations()->InAt(1); in GenerateTestAndBranch() local
[all …]
Dssa_liveness_analysis.h211 [](const value_type& lhs, const value_type& rhs) { in FindUseAtOrAfterPosition()
212 return lhs.GetPosition() < rhs.GetPosition(); in FindUseAtOrAfterPosition()
Dnodes.h101 inline bool IsSameDexFile(const DexFile& lhs, const DexFile& rhs) { in IsSameDexFile() argument
108 return &lhs == &rhs; in IsSameDexFile()
305 std::ostream& operator<<(std::ostream& os, const ReferenceTypeInfo& rhs);
2649 std::ostream& operator<<(std::ostream& os, HInstruction::InstructionKind rhs);
3681 std::ostream& operator<<(std::ostream& os, ComparisonBias rhs);
4848 std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::MethodLoadKind rhs);
4849 std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::CodePtrLocation rhs);
4850 std::ostream& operator<<(std::ostream& os, HInvokeStaticOrDirect::ClinitCheckRequirement rhs);
6558 std::ostream& operator<<(std::ostream& os, HLoadClass::LoadKind rhs);
6724 std::ostream& operator<<(std::ostream& os, HLoadString::LoadKind rhs);
[all …]
Doptimizing_compiler.cc695 [](const linker::LinkerPatch& lhs, const linker::LinkerPatch& rhs) { in EmitAndSortLinkerPatches() argument
696 return lhs.LiteralOffset() < rhs.LiteralOffset(); in EmitAndSortLinkerPatches()
Dcode_generator_arm_vixl.cc4481 Location rhs = div->GetLocations()->InAt(1); in VisitDiv() local
4485 if (rhs.IsConstant()) { in VisitDiv()
4492 DCHECK(calling_convention.GetRegisterAt(1).Is(RegisterFrom(rhs))); in VisitDiv()
4505 DCHECK(calling_convention.GetRegisterAt(2).Is(LowRegisterFrom(rhs))); in VisitDiv()
4506 DCHECK(calling_convention.GetRegisterAt(3).Is(HighRegisterFrom(rhs))); in VisitDiv()
5005 Location rhs = locations->InAt(1); in HandleIntegerRotate() local
5008 if (rhs.IsConstant()) { in HandleIntegerRotate()
5012 uint32_t rot = CodeGenerator::GetInt32ValueOf(rhs.GetConstant()) & 0x1F; in HandleIntegerRotate()
5021 __ Ror(out, in, RegisterFrom(rhs)); in HandleIntegerRotate()
5033 Location rhs = locations->InAt(1); in HandleLongRotate() local
[all …]
Dinstruction_builder.cc1953 StackArtFieldHandleScope<1> rhs(soa.Self()); in ResolveField() local
1954 ReflectiveHandle<ArtField> resolved_field_handle(rhs.NewHandle(resolved_field)); in ResolveField()
/art/dex2oat/linker/
Doat_writer.cc1431 bool operator()(const CompiledMethod* lhs, const CompiledMethod* rhs) const { in operator ()()
1433 if (lhs->GetQuickCode().data() != rhs->GetQuickCode().data()) { in operator ()()
1434 return lhs->GetQuickCode().data() < rhs->GetQuickCode().data(); in operator ()()
1437 if (UNLIKELY(lhs->GetVmapTable().data() != rhs->GetVmapTable().data())) { in operator ()()
1438 return lhs->GetVmapTable().data() < rhs->GetVmapTable().data(); in operator ()()
1440 if (UNLIKELY(lhs->GetPatches().data() != rhs->GetPatches().data())) { in operator ()()
1441 return lhs->GetPatches().data() < rhs->GetPatches().data(); in operator ()()
1443 if (UNLIKELY(lhs->IsIntrinsic() != rhs->IsIntrinsic())) { in operator ()()
1444 return rhs->IsIntrinsic(); in operator ()()
/art/runtime/verifier/
Dreg_type.cc1030 std::ostream& operator<<(std::ostream& os, const RegType& rhs) { in operator <<() argument
1031 os << rhs.Dump(); in operator <<()
Dreg_type.h350 const RegType& rhs,
1161 std::ostream& operator<<(std::ostream& os, const RegType& rhs)
/art/dexlayout/
Ddex_verify.cc183 bool operator()(dex_ir::ClassDef* lhs, dex_ir::ClassDef* rhs) const { in operator ()()
184 return lhs->ClassType()->GetIndex() < rhs->ClassType()->GetIndex(); in operator ()()
/art/libartbase/base/
Dtransform_iterator_test.cc36 bool operator==(const ValueHolder& lhs, const ValueHolder& rhs) { in operator ==() argument
37 return lhs.value == rhs.value; in operator ==()
/art/compiler/utils/arm/
Djni_macro_assembler_arm_vixl.cc500 [](const ArgumentLocation& lhs, const ArgumentLocation& rhs) { in MoveArguments() argument
501 return lhs.GetFrameOffset().Uint32Value() < rhs.GetFrameOffset().Uint32Value(); in MoveArguments()
/art/runtime/interpreter/
Dunstarted_runtime.cc1788 ObjPtr<mirror::Object> rhs = reinterpret_cast32<mirror::Object*>(args[0]); in UnstartedJNIStringCompareTo() local
1789 if (rhs == nullptr) { in UnstartedJNIStringCompareTo()
1793 result->SetI(receiver->AsString()->CompareTo(rhs->AsString())); in UnstartedJNIStringCompareTo()
/art/runtime/mirror/
Dvar_handle.cc49 const VarHandleAccessorToAccessModeEntry& rhs) { in CompareName()
50 return strcmp(lhs.method_name, rhs.method_name) < 0; in CompareName()
/art/oatdump/
Doatdump.cc1559 [this](size_t lhs, size_t rhs) { in StackMapsHelper() argument
1562 StackMap right = code_info_.GetStackMapAt(rhs); in StackMapsHelper()
1565 return (left_pc < right_pc) || (left_pc == right_pc && lhs < rhs); in StackMapsHelper()
/art/runtime/jni/
Djni_internal.cc3246 std::ostream& operator<<(std::ostream& os, const jobjectRefType& rhs) { in operator <<() argument
3247 switch (rhs) { in operator <<()
3261 LOG(FATAL) << "jobjectRefType[" << static_cast<int>(rhs) << "]"; in operator <<()
/art/libdexfile/dex/
Ddex_file_verifier.cc3419 auto compare = [&get_string](const dex::StringId& lhs, const char* rhs) { in FindStringRangesForMethodNames() argument
3420 return CompareModifiedUtf8ToModifiedUtf8AsUtf16CodePointValues(get_string(lhs), rhs) < 0; in FindStringRangesForMethodNames()
/art/test/083-compiler-regressions/src/
DMain.java9693 private static void causeNPE1(LVNTests lhs, LVNTests rhs) { in causeNPE1() argument
9695 rhs.link = null; in causeNPE1()
9712 private static void causeNPE2(LVNTests lhs, LVNTests rhs) { in causeNPE2() argument
9714 rhs.setLink(null); in causeNPE2()

123456