Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.cpp24 FirstAbbrCode = 0; in clear()
36 if (FirstAbbrCode == 0) { in extract()
37 FirstAbbrCode = AbbrDecl.getCode(); in extract()
41 FirstAbbrCode = UINT32_MAX; in extract()
58 if (FirstAbbrCode == UINT32_MAX) { in getAbbreviationDeclaration()
65 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()
67 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.h26 uint32_t FirstAbbrCode; variable