Lines Matching defs:StartIndex
3775 const int64_t StartIndex = Start ? getIndex(Start) : -1LL;
3778 BasicBlocks.insert(BasicBlocks.begin() + (StartIndex + 1), NumNewBlocks,
3781 int64_t I = StartIndex + 1;
3804 const unsigned StartIndex = getIndex(&*StartBB);
3807 BasicBlocks.insert(BasicBlocks.begin() + StartIndex + 1, NumNewBlocks,
3809 auto RetIter = BasicBlocks.begin() + StartIndex + 1;
3811 unsigned I = StartIndex + 1;
3831 void BinaryFunction::updateBBIndices(const unsigned StartIndex) {
3832 for (unsigned I = StartIndex; I < BasicBlocks.size(); ++I)
3839 const unsigned StartIndex = getIndex(Start) + 1;
3841 BasicBlocks[StartIndex + I]->setCFIState(CFIState);
3854 unsigned StartIndex = getIndex(Start);
3855 Begin = std::next(BasicBlocks.begin(), StartIndex + 1);
3856 End = std::next(BasicBlocks.begin(), StartIndex + NumNewBlocks + 1);