Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h3605 void setNumNegativeBits(unsigned Num) { EnumDeclBits.NumNegativeBits = Num; } in setNumNegativeBits()
3673 unsigned NumNegativeBits);
3744 unsigned getNumNegativeBits() const { return EnumDeclBits.NumNegativeBits; } in getNumNegativeBits()
H A DDeclBase.h1459 uint64_t NumNegativeBits : 8;
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaDecl.cpp18161 unsigned NumNegativeBits = 0; in ActOnEnumBody() local
18179 NumNegativeBits = std::max(NumNegativeBits, in ActOnEnumBody()
18219 else if (NumNegativeBits) { in ActOnEnumBody()
18223 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) { in ActOnEnumBody()
18226 } else if (Packed && NumNegativeBits <= ShortWidth && in ActOnEnumBody()
18230 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) { in ActOnEnumBody()
18236 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { in ActOnEnumBody()
18241 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) in ActOnEnumBody()
18343 NumPositiveBits, NumNegativeBits); in ActOnEnumBody()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDecl.cpp4412 unsigned NumNegativeBits) { in completeDefinition() argument
4418 setNumNegativeBits(NumNegativeBits); in completeDefinition()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGExpr.cpp1634 unsigned NumNegativeBits = ED->getNumNegativeBits(); in getRangeForType() local
1637 if (NumNegativeBits) { in getRangeForType()
1638 unsigned NumBits = std::max(NumNegativeBits, NumPositiveBits + 1); in getRangeForType()