HomeSort by relevance Sort by last modified time
    Searched refs:IsUnsigned (Results 1 - 7 of 7) sorted by null

  /external/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
26 explicit APSInt() : IsUnsigned(false) {}
30 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
31 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
33 explicit APSInt(const APInt &I, bool isUnsigned = true)
34 : APInt(I), IsUnsigned(isUnsigned) {}
38 IsUnsigned = RHS.IsUnsigned;
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 21 bool IsUnsigned;
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
28 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
31 bool isUnsigned() const { return IsUnsigned; }
41 Value.setIsUnsigned(IsUnsigned);
49 llvm::APSInt Result(Value, Value.isUnsigned());
56 return llvm::APSInt(BitWidth, IsUnsigned);
61 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 18 if (IsUnsigned && Value.isSigned() && Value.isNegative())
27 MinBits = Value.getMinSignedBits() - IsUnsigned;
29 MinBits = Value.getActiveBits() + !IsUnsigned;
  /external/llvm/lib/Support/
APSInt.cpp 21 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0));
  /external/clang/include/clang/Basic/
TargetBuiltins.h 89 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
90 if (IsUnsigned)
101 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /external/clang/include/clang/AST/
TemplateBase.h 88 unsigned IsUnsigned : 1;
276 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
280 Integer.IsUnsigned);
  /external/clang/utils/TableGen/
NeonEmitter.cpp 129 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
130 if (IsUnsigned)
    [all...]

Completed in 76 milliseconds