Home
last modified time | relevance | path

Searched refs:m_idx_offset (Results 1 – 2 of 2) sorted by relevance

/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugAbbrev.cpp18 m_idx_offset = 0; in Clear()
39 if (m_idx_offset == 0) in extract()
40 m_idx_offset = abbrevDeclaration.Code(); in extract()
43 m_idx_offset = UINT32_MAX; in extract()
54 if (m_idx_offset == UINT32_MAX) { in GetAbbreviationDeclaration()
62 uint32_t idx = abbrCode - m_idx_offset; in GetAbbreviationDeclaration()
H A DDWARFDebugAbbrev.h32 : m_offset(offset), m_idx_offset(idx_offset), m_decls() {} in DWARFAbbreviationDeclarationSet()
49 uint32_t GetIndexOffset() const { return m_idx_offset; } in GetIndexOffset()
53 uint32_t m_idx_offset = 0; variable