Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFListTable.cpp30 uint8_t OffsetByteSize = Format == dwarf::DWARF64 ? 8 : 4; in extract() local
68 HeaderData.OffsetEntryCount * OffsetByteSize) in extract()
74 *OffsetPtr += HeaderData.OffsetEntryCount * OffsetByteSize; in extract()
H A DDWARFVerifier.cpp1964 uint64_t OffsetByteSize = getDwarfOffsetByteSize(Format); in verifyDebugStrOffsets() local
1965 DA.setAddressSize(OffsetByteSize); in verifyDebugStrOffsets()
1966 uint64_t Remainder = (Length - 4) % OffsetByteSize; in verifyDebugStrOffsets()
1972 SectionName, StartOffset, Length, OffsetByteSize, Remainder); in verifyDebugStrOffsets()
1976 for (uint64_t Index = 0; C && C.tell() + OffsetByteSize <= NextUnit; ++Index) { in verifyDebugStrOffsets()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFListTable.h127 uint8_t OffsetByteSize = Format == dwarf::DWARF64 ? 8 : 4; in getOffsetEntry() local
128 uint64_t Offset = OffsetTableOffset + OffsetByteSize * Index; in getOffsetEntry()
129 auto R = Data.getUnsigned(&Offset, OffsetByteSize); in getOffsetEntry()