Lines Matching refs:NumSkippedElements
1493 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1494 if (NumSkippedElements.ugt(cast<FixedVectorType>(VecTy)->getNumElements())) in getNaturalGEPRecursively()
1496 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1497 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1506 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1507 if (NumSkippedElements.ugt(ArrTy->getNumElements())) in getNaturalGEPRecursively()
1510 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1511 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1565 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPWithOffset() local
1567 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPWithOffset()
1568 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPWithOffset()
3693 uint64_t NumSkippedElements = Offset / ElementSize; in getTypePartition() local
3694 if (NumSkippedElements >= TyNumElements) in getTypePartition()
3696 Offset -= NumSkippedElements * ElementSize; in getTypePartition()