Lines Matching refs:LocEnd
276 size_t LocEnd; in getFunctionLineEntries() local
277 std::tie(LocBegin, LocEnd) = getLineExtentIncludingInlinees(FuncId); in getFunctionLineEntries()
278 if (LocBegin >= LocEnd) { in getFunctionLineEntries()
283 for (size_t Idx = LocBegin; Idx != LocEnd; ++Idx) { in getFunctionLineEntries()
322 size_t LocEnd; in getLineExtentIncludingInlinees() local
323 std::tie(LocBegin, LocEnd) = getLineExtent(FuncId); in getLineExtentIncludingInlinees()
332 LocEnd = std::max(LocEnd, Extent.second); in getLineExtentIncludingInlinees()
336 return {LocBegin, LocEnd}; in getLineExtentIncludingInlinees()
487 size_t LocEnd; in encodeInlineLineTable() local
488 std::tie(LocBegin, LocEnd) = getLineExtentIncludingInlinees(Frag.SiteFuncId); in encodeInlineLineTable()
490 if (LocBegin >= LocEnd) in encodeInlineLineTable()
492 ArrayRef<MCCVLoc> Locs = getLinesForExtent(LocBegin, LocEnd); in encodeInlineLineTable()
609 ArrayRef<MCCVLoc> LocAfter = getLinesForExtent(LocEnd, LocEnd + 1); in encodeInlineLineTable()