Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.cpp25 FirstAbbrCode = 0; in clear()
37 if (FirstAbbrCode == 0) { in extract()
38 FirstAbbrCode = AbbrDecl.getCode(); in extract()
42 FirstAbbrCode = UINT32_MAX; in extract()
59 if (FirstAbbrCode == UINT32_MAX) { in getAbbreviationDeclaration()
66 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()
68 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.h27 uint32_t FirstAbbrCode; variable