Lines Matching refs:IndexOffset
544 APInt IndexOffset = Idx - BasisIdx; in emitBump() local
549 IndexOffset.getBitWidth(), in emitBump()
553 APInt::sdivrem(IndexOffset, ElementSize, Q, R); in emitBump()
555 IndexOffset = Q; in emitBump()
562 if (IndexOffset == 1) in emitBump()
565 if (IndexOffset.isAllOnesValue()) in emitBump()
571 IntegerType::get(Basis.Ins->getContext(), IndexOffset.getBitWidth()); in emitBump()
573 if (IndexOffset.isPowerOf2()) { in emitBump()
575 ConstantInt *Exponent = ConstantInt::get(DeltaType, IndexOffset.logBase2()); in emitBump()
578 if ((-IndexOffset).isPowerOf2()) { in emitBump()
581 ConstantInt::get(DeltaType, (-IndexOffset).logBase2()); in emitBump()
584 Constant *Delta = ConstantInt::get(DeltaType, IndexOffset); in emitBump()