Searched defs:NumNegativeBits (Results 1 - 4 of 4) sorted by relevance

/external/clang/lib/AST/
H A DDecl.cpp3442 unsigned NumNegativeBits) {
3448 setNumNegativeBits(NumNegativeBits);
3439 completeDefinition(QualType NewType, QualType NewPromotionType, unsigned NumPositiveBits, unsigned NumNegativeBits) argument
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1035 unsigned NumNegativeBits = ED->getNumNegativeBits(); local
1038 if (NumNegativeBits) {
1039 unsigned NumBits = std::max(NumNegativeBits, NumPositiveBits + 1);
/external/lldb/source/Symbol/
H A DClangASTType.cpp5354 unsigned NumNegativeBits = 0; local
5369 enum_decl->completeDefinition(enum_decl->getIntegerType(), promotion_qual_type, NumPositiveBits, NumNegativeBits);
/external/clang/lib/Sema/
H A DSemaDecl.cpp13125 unsigned NumNegativeBits = 0; local
13143 NumNegativeBits = std::max(NumNegativeBits,
13183 else if (NumNegativeBits) {
13187 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
13190 } else if (Packed && NumNegativeBits <= ShortWidth &&
13194 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
13200 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
13205 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
13309 NumPositiveBits, NumNegativeBits);
[all...]

Completed in 543 milliseconds