Home
last modified time | relevance | path

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

/external/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugInfoEntry.cpp129 const uint64_t abbr_idx = debug_info_data.GetULEB128 (offset_ptr); in FastExtract() local
130 assert (abbr_idx < (1 << DIE_ABBR_IDX_BITSIZE)); in FastExtract()
131 m_abbr_idx = abbr_idx; in FastExtract()
145 … (unsigned)abbr_idx); in FastExtract()
295 const uint64_t abbr_idx = debug_info_data.GetULEB128(&offset); in Extract() local
296 assert (abbr_idx < (1 << DIE_ABBR_IDX_BITSIZE)); in Extract()
297 m_abbr_idx = abbr_idx; in Extract()
298 if (abbr_idx) in Extract()
300 …AbbreviationDeclaration *abbrevDecl = cu->GetAbbreviations()->GetAbbreviationDeclaration(abbr_idx); in Extract()