Lines Matching refs:NumSkippedElements
1462 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1463 if (NumSkippedElements.ugt(VecTy->getNumElements())) in getNaturalGEPRecursively()
1465 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1466 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1474 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPRecursively() local
1475 if (NumSkippedElements.ugt(ArrTy->getNumElements())) in getNaturalGEPRecursively()
1478 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPRecursively()
1479 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPRecursively()
1530 APInt NumSkippedElements = Offset.sdiv(ElementSize); in getNaturalGEPWithOffset() local
1532 Offset -= NumSkippedElements * ElementSize; in getNaturalGEPWithOffset()
1533 Indices.push_back(IRB.getInt(NumSkippedElements)); in getNaturalGEPWithOffset()
3452 uint64_t NumSkippedElements = Offset / ElementSize; in getTypePartition() local
3453 if (NumSkippedElements >= SeqTy->getNumElements()) in getTypePartition()
3455 Offset -= NumSkippedElements * ElementSize; in getTypePartition()