Home
last modified time | relevance | path

Searched refs:to_test (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dinstruction_simplifier_x86_shared.cc123 bool AreLeastSetBitInputs(HInstruction* to_test, HInstruction* other) { in AreLeastSetBitInputs() argument
124 if (to_test->IsAdd()) { in AreLeastSetBitInputs()
125 HAdd* add = to_test->AsAdd(); in AreLeastSetBitInputs()
129 if (to_test->IsSub()) { in AreLeastSetBitInputs()
130 HSub* sub = to_test->AsSub(); in AreLeastSetBitInputs()
Dinstruction_simplifier_x86_shared.h25 bool AreLeastSetBitInputs(HInstruction* to_test, HInstruction* other);
Dinstruction_builder.cc1230 static bool IsSubClass(ObjPtr<mirror::Class> to_test, ObjPtr<mirror::Class> super_class) in IsSubClass() argument
1232 return to_test != nullptr && !to_test->IsInterface() && to_test->IsSubClass(super_class); in IsSubClass()