Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugLine.cpp517 LastRowIndex = 0; in reset()
570 Sequence.LastRowIndex = RowNumber + 1; in appendRowToMatrix()
1289 RowIter LastRow = Rows.begin() + Seq.LastRowIndex; in findRowInSeq()
1373 uint32_t LastRowIndex = in lookupAddressRangeImpl() local
1375 if (LastRowIndex == UnknownRowIndex) in lookupAddressRangeImpl()
1376 LastRowIndex = CurSeq.LastRowIndex - 1; in lookupAddressRangeImpl()
1379 assert(LastRowIndex != UnknownRowIndex); in lookupAddressRangeImpl()
1381 for (uint32_t I = FirstRowIndex; I <= LastRowIndex; ++I) { in lookupAddressRangeImpl()
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp1254 for (unsigned idx = seq.FirstRowIndex; idx < seq.LastRowIndex; ++idx) { in ParseLineTable()