Lines Matching refs:other
68 HInstruction* other = nullptr; in TryGenerateResetLeastSetBit() local
73 other = right; in TryGenerateResetLeastSetBit()
76 other = left; in TryGenerateResetLeastSetBit()
81 type, HInstruction::kAnd, other, instruction->GetDexPc()); in TryGenerateResetLeastSetBit()
102 HInstruction* other = nullptr; in TryGenerateMaskUptoLeastSetBit() local
106 other = right; in TryGenerateMaskUptoLeastSetBit()
109 other = left; in TryGenerateMaskUptoLeastSetBit()
114 type, HInstruction::kXor, other, instruction->GetDexPc()); in TryGenerateMaskUptoLeastSetBit()
123 bool AreLeastSetBitInputs(HInstruction* to_test, HInstruction* other) { in AreLeastSetBitInputs() argument
127 return cst != nullptr && cst->IsMinusOne() && other == add->GetLeastConstantLeft(); in AreLeastSetBitInputs()
132 return cst != nullptr && cst->IsOne() && other == sub->GetLeastConstantLeft(); in AreLeastSetBitInputs()