Home
last modified time | relevance | path

Searched refs:LastRowIndex (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp533 LastRowIndex = 0; in reset()
586 Sequence.LastRowIndex = RowNumber + 1; in appendRowToMatrix()
1305 RowIter LastRow = Rows.begin() + Seq.LastRowIndex; in findRowInSeq()
1389 uint32_t LastRowIndex = in lookupAddressRangeImpl() local
1391 if (LastRowIndex == UnknownRowIndex) in lookupAddressRangeImpl()
1392 LastRowIndex = CurSeq.LastRowIndex - 1; in lookupAddressRangeImpl()
1395 assert(LastRowIndex != UnknownRowIndex); in lookupAddressRangeImpl()
1397 for (uint32_t I = FirstRowIndex; I <= LastRowIndex; ++I) { in lookupAddressRangeImpl()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h209 unsigned LastRowIndex; member
220 return !Empty && (LowPC < HighPC) && (FirstRowIndex < LastRowIndex); in isValid()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfdump/
H A DStatistics.cpp932 LnStats.NumEntries += Seq.LastRowIndex - Seq.FirstRowIndex - 1; in collectStatsForObjectFile()
933 for (size_t RowIdx = Seq.FirstRowIndex; RowIdx < Seq.LastRowIndex - 1; in collectStatsForObjectFile()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1261 for (unsigned idx = seq.FirstRowIndex; idx < seq.LastRowIndex; ++idx) { in ParseLineTable()