Home
last modified time | relevance | path

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

/external/clang/include/clang/AST/
DDecl.h2474 unsigned NumNegativeBits : 8; variable
2723 NumNegativeBits = 0; in EnumDecl()
2773 unsigned NumNegativeBits);
2842 return NumNegativeBits; in getNumNegativeBits()
2845 NumNegativeBits = Num; in setNumNegativeBits()
/external/clang/lib/Sema/
DSemaDecl.cpp10814 unsigned NumNegativeBits = 0; in ActOnEnumBody() local
10832 NumNegativeBits = std::max(NumNegativeBits, in ActOnEnumBody()
10872 else if (NumNegativeBits) { in ActOnEnumBody()
10876 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) { in ActOnEnumBody()
10879 } else if (Packed && NumNegativeBits <= ShortWidth && in ActOnEnumBody()
10883 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) { in ActOnEnumBody()
10889 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) { in ActOnEnumBody()
10894 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth) in ActOnEnumBody()
10998 NumPositiveBits, NumNegativeBits); in ActOnEnumBody()
/external/clang/lib/AST/
DDecl.cpp2675 unsigned NumNegativeBits) { in completeDefinition() argument
2681 setNumNegativeBits(NumNegativeBits); in completeDefinition()
/external/clang/lib/CodeGen/
DCGExpr.cpp955 unsigned NumNegativeBits = ED->getNumNegativeBits(); in getRangeForLoadFromType() local
958 if (NumNegativeBits) { in getRangeForLoadFromType()
959 unsigned NumBits = std::max(NumNegativeBits, NumPositiveBits + 1); in getRangeForLoadFromType()