Home
last modified time | relevance | path

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

/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugAbbrev.cpp21 FirstAbbrCode = 0; in clear()
33 if (FirstAbbrCode == 0) { in extract()
34 FirstAbbrCode = AbbrDecl.getCode(); in extract()
38 FirstAbbrCode = UINT32_MAX; in extract()
55 if (FirstAbbrCode == UINT32_MAX) { in getAbbreviationDeclaration()
62 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()
64 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugAbbrev.h23 uint32_t FirstAbbrCode; variable