Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.cpp24 FirstAbbrCode = 0; in clear()
44 if (FirstAbbrCode == 0) { in extract()
45 FirstAbbrCode = AbbrDecl.getCode(); in extract()
48 FirstAbbrCode = UINT32_MAX; in extract()
64 if (FirstAbbrCode == UINT32_MAX) { in getAbbreviationDeclaration()
71 if (AbbrCode < FirstAbbrCode || AbbrCode >= FirstAbbrCode + Decls.size()) in getAbbreviationDeclaration()
73 return &Decls[AbbrCode - FirstAbbrCode]; in getAbbreviationDeclaration()
/freebsd-src/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAbbrev.h26 uint32_t FirstAbbrCode; variable
52 uint32_t getFirstAbbrCode() const { return FirstAbbrCode; } in getFirstAbbrCode()