Lines Matching refs:NumSkippedElements
1402 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1403 if (NumSkippedElements.ugt(VecTy->getNumElements())) in getNaturalGEPRecursively()
1405 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1406 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1414 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1415 if (NumSkippedElements.ugt(ArrTy->getNumElements())) in getNaturalGEPRecursively()
1418 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1419 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1470 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPWithOffset() local
1472 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPWithOffset()
1473 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPWithOffset()
3218 uint64_t NumSkippedElements = Offset / ElementSize; in getTypePartition() local
3220 if (NumSkippedElements >= ArrTy->getNumElements()) in getTypePartition()
3223 if (NumSkippedElements >= VecTy->getNumElements()) in getTypePartition()
3226 Offset -= NumSkippedElements * ElementSize; in getTypePartition()