Searched refs:new_b (Results 1 – 2 of 2) sorted by relevance
/art/runtime/ |
D | jvalue.h | 39 void SetB(int8_t new_b) { in PACKED() 40 j = ((static_cast<int64_t>(new_b) << 56) >> 56); // Sign-extend to 64 bits. in PACKED()
|
/art/compiler/optimizing/ |
D | induction_var_analysis.cc | 576 InductionInfo* new_b = TransferAddSub(a->op_b, b->op_b, op); in TransferAddSub() local 577 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub() 578 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferAddSub() 583 InductionInfo* new_b = TransferAddSub(a, b->op_b, op); in TransferAddSub() local 589 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub() 590 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_); in TransferAddSub() 595 InductionInfo* new_b = TransferAddSub(a->op_b, b, op); in TransferAddSub() local 599 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub() 600 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferAddSub() 618 InductionInfo* new_b = TransferNeg(a->op_b); in TransferNeg() local [all …]
|