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

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h1384 uint64_t NumNegativeBits : 8;
H A DDecl.h3535 void setNumNegativeBits(unsigned Num) { EnumDeclBits.NumNegativeBits = Num; }
3601 unsigned NumNegativeBits);
3672 unsigned getNumNegativeBits() const { return EnumDeclBits.NumNegativeBits; }
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDecl.cpp17528 unsigned NumNegativeBits = 0; local
17546 NumNegativeBits = std::max(NumNegativeBits,
17586 else if (NumNegativeBits) {
17590 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
17593 } else if (Packed && NumNegativeBits <= ShortWidth &&
17597 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
17603 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
17608 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
17712 NumPositiveBits, NumNegativeBits);
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp4281 unsigned NumNegativeBits) {
4287 setNumNegativeBits(NumNegativeBits);
4278 completeDefinition(QualType NewType, QualType NewPromotionType, unsigned NumPositiveBits, unsigned NumNegativeBits) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExpr.cpp1563 unsigned NumNegativeBits = ED->getNumNegativeBits(); local
1566 if (NumNegativeBits) {
1567 unsigned NumBits = std::max(NumNegativeBits, NumPositiveBits + 1);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp7817 unsigned NumNegativeBits = 0; local
7833 NumNegativeBits);

Completed in 266 milliseconds