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

/external/clang/include/clang/AST/
H A DDecl.h2544 unsigned NumPositiveBits : 8;
2848 NumPositiveBits = 0;
2897 unsigned NumPositiveBits,
2961 return NumPositiveBits;
2964 NumPositiveBits = Num;
2965 assert(NumPositiveBits == Num && "can't store this bitcount");
/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...]
/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/clang/lib/AST/
H A DDecl.cpp3441 unsigned NumPositiveBits,
3447 setNumPositiveBits(NumPositiveBits);
3439 completeDefinition(QualType NewType, QualType NewPromotionType, unsigned NumPositiveBits, unsigned NumNegativeBits) argument
/external/lldb/source/Symbol/
H A DClangASTType.cpp5353 unsigned NumPositiveBits = 1; local
5369 enum_decl->completeDefinition(enum_decl->getIntegerType(), promotion_qual_type, NumPositiveBits, NumNegativeBits);

Completed in 217 milliseconds