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

/external/clang/include/clang/AST/
H A DDecl.h2680 unsigned NumNegativeBits : 8;
2982 NumNegativeBits = 0;
3033 unsigned NumNegativeBits);
3113 return NumNegativeBits;
3116 NumNegativeBits = Num;
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1092 unsigned NumNegativeBits = ED->getNumNegativeBits(); local
1095 if (NumNegativeBits) {
1096 unsigned NumBits = std::max(NumNegativeBits, NumPositiveBits + 1);
/external/clang/lib/Sema/
H A DSemaDecl.cpp13742 unsigned NumNegativeBits = 0; local
13760 NumNegativeBits = std::max(NumNegativeBits,
13798 else if (NumNegativeBits) {
13802 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
13805 } else if (Packed && NumNegativeBits <= ShortWidth &&
13809 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
13815 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
13820 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
13953 NumPositiveBits, NumNegativeBits);
[all...]
/external/clang/lib/AST/
H A DDecl.cpp3518 unsigned NumNegativeBits) {
3524 setNumNegativeBits(NumNegativeBits);
3515 completeDefinition(QualType NewType, QualType NewPromotionType, unsigned NumPositiveBits, unsigned NumNegativeBits) argument
/external/lldb/source/Symbol/
H A DClangASTType.cpp5354 unsigned NumNegativeBits = 0; local
5369 enum_decl->completeDefinition(enum_decl->getIntegerType(), promotion_qual_type, NumPositiveBits, NumNegativeBits);

Completed in 290 milliseconds