Lines Matching refs:NumSkippedElements
1634 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1635 if (NumSkippedElements.ugt(VecTy->getNumElements())) in getNaturalGEPRecursively()
1637 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1638 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1646 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1647 if (NumSkippedElements.ugt(ArrTy->getNumElements())) in getNaturalGEPRecursively()
1650 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1651 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1702 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPWithOffset() local
1704 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPWithOffset()
1705 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPWithOffset()
3389 uint64_t NumSkippedElements = Offset / ElementSize; in getTypePartition() local
3391 if (NumSkippedElements >= ArrTy->getNumElements()) in getTypePartition()
3394 if (NumSkippedElements >= VecTy->getNumElements()) in getTypePartition()
3397 Offset -= NumSkippedElements * ElementSize; in getTypePartition()