HomeSort by: relevance | last modified time | path
    Searched refs:NumNegativeBits (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclBase.h 1459 uint64_t NumNegativeBits : 8;
Decl.h 3605 void setNumNegativeBits(unsigned Num) { EnumDeclBits.NumNegativeBits = Num; }
3673 unsigned NumNegativeBits);
3744 unsigned getNumNegativeBits() const { return EnumDeclBits.NumNegativeBits; }
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDecl.cpp 18161 unsigned NumNegativeBits = 0;
18179 NumNegativeBits = std::max(NumNegativeBits,
18219 else if (NumNegativeBits) {
18223 if (Packed && NumNegativeBits <= CharWidth && NumPositiveBits < CharWidth) {
18226 } else if (Packed && NumNegativeBits <= ShortWidth &&
18230 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
18236 if (NumNegativeBits <= BestWidth && NumPositiveBits < BestWidth) {
18241 if (NumNegativeBits > BestWidth || NumPositiveBits >= BestWidth)
18343 NumPositiveBits, NumNegativeBits);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Decl.cpp 4412 unsigned NumNegativeBits) {
4418 setNumNegativeBits(NumNegativeBits);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 1634 unsigned NumNegativeBits = ED->getNumNegativeBits();
1637 if (NumNegativeBits) {
1638 unsigned NumBits = std::max(NumNegativeBits, NumPositiveBits + 1);

Completed in 53 milliseconds