reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
   30   uint32_t getBitWidth() const { return BitWidth; }
   40     Value = Value.extOrTrunc(BitWidth);
   56     return llvm::APSInt(BitWidth, IsUnsigned);
   61     return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
   66     return llvm::APSInt::getMaxValue(BitWidth, IsUnsigned);
   70     return (llvm::APSInt(BitWidth, IsUnsigned) = RawValue);
   92     return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned;
   92     return BitWidth == Other.BitWidth && IsUnsigned == Other.IsUnsigned;
  100     return std::tie(BitWidth, IsUnsigned) <
  101            std::tie(Other.BitWidth, Other.IsUnsigned);
tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
   41   if (MinBits <= BitWidth)