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

/external/clang/lib/AST/
H A DDecl.cpp3441 unsigned NumPositiveBits,
3447 setNumPositiveBits(NumPositiveBits);
3439 completeDefinition(QualType NewType, QualType NewPromotionType, unsigned NumPositiveBits, unsigned NumNegativeBits) argument
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1036 unsigned NumPositiveBits = ED->getNumPositiveBits(); local
1039 unsigned NumBits = std::max(NumNegativeBits, NumPositiveBits + 1);
1044 assert(NumPositiveBits <= Bitwidth);
1045 End = llvm::APInt(Bitwidth, 1) << NumPositiveBits;
/external/lldb/source/Symbol/
H A DClangASTType.cpp5353 unsigned NumPositiveBits = 1; local
5369 enum_decl->completeDefinition(enum_decl->getIntegerType(), promotion_qual_type, NumPositiveBits, NumNegativeBits);
/external/clang/lib/Sema/
H A DSemaDecl.cpp13126 unsigned NumPositiveBits = 0; local
13140 NumPositiveBits = std::max(NumPositiveBits,
13187 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
13191 NumPositiveBits < ShortWidth) {
13194 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
13200 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
13205 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
13215 if (Packed && NumPositiveBits <= CharWidth) {
13219 } else if (Packed && NumPositiveBits <
[all...]

Completed in 116 milliseconds