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 | 577 InductionInfo* new_b = TransferAddSub(a->op_b, b->op_b, op); in TransferAddSub() local 578 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub() 579 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferAddSub() 584 InductionInfo* new_b = TransferAddSub(a, b->op_b, op); in TransferAddSub() local 590 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub() 591 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_); in TransferAddSub() 596 InductionInfo* new_b = TransferAddSub(a->op_b, b, op); in TransferAddSub() local 600 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub() 601 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferAddSub() 619 InductionInfo* new_b = TransferNeg(a->op_b); in TransferNeg() local [all …]
|