Searched defs:IsUnsigned (Results 1 - 5 of 5) sorted by relevance

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DAPSIntType.h21 bool IsUnsigned; member in class:clang::ento::APSIntType
25 : BitWidth(Width), IsUnsigned(Unsigned) {}
28 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
31 bool isUnsigned() const { return IsUnsigned; }
41 Value.setIsUnsigned(IsUnsigned);
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);
89 return BitWidth == Other.BitWidth && IsUnsigned
[all...]
/external/clang/include/clang/Basic/
H A DTargetBuiltins.h89 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { argument
90 if (IsUnsigned)
/external/llvm/include/llvm/ADT/
H A DAPSInt.h23 bool IsUnsigned; member in class:llvm::APSInt
31 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 : APInt(I), IsUnsigned(isUnsigned) {}
38 IsUnsigned = RHS.IsUnsigned;
55 bool isSigned() const { return !IsUnsigned; }
56 bool isUnsigned() const { return IsUnsigned; }
57 void setIsUnsigned(bool Val) { IsUnsigned = Val; }
58 void setIsSigned(bool Val) { IsUnsigned = !Val; }
72 return APSInt(APInt::trunc(width), IsUnsigned);
[all...]
/external/clang/include/clang/AST/
H A DTemplateBase.h84 unsigned IsUnsigned : 1; member in struct:clang::TemplateArgument::__anon3310::__anon3311
249 return APSInt(APInt(Integer.BitWidth, Integer.VAL), Integer.IsUnsigned);
253 Integer.IsUnsigned);
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp129 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { argument
130 if (IsUnsigned)

Completed in 238 milliseconds