HomeSort by relevance Sort by last modified time
    Searched refs:isUnsigned (Results 1 - 25 of 41) sorted by null

1 2

  /external/clang/test/CodeGen/
pascal-wchar-string.c 38 // CHECK: store volatile i32 1, i32* %isUnsigned
40 volatile int isUnsigned = (wchar_t)-1 > (wchar_t)0;
  /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...]
BasicValueFactory.h 79 const llvm::APSInt& getValue(uint64_t X, unsigned BitWidth, bool isUnsigned);
91 const llvm::APSInt& getValue(const llvm::APInt& X, bool isUnsigned);
120 const llvm::APSInt& getIntValue(uint64_t X, bool isUnsigned) {
121 QualType T = isUnsigned ? Ctx.UnsignedIntTy : Ctx.IntTy;
153 inline const llvm::APSInt& getZeroWithPtrWidth(bool isUnsigned = true) {
154 return getValue(0, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
157 inline const llvm::APSInt &getIntWithPtrWidth(uint64_t X, bool isUnsigned) {
158 return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
SValBuilder.h 251 NonLoc makeIntVal(const llvm::APInt& integer, bool isUnsigned) {
252 return nonloc::ConcreteInt(BasicVals.getValue(integer, isUnsigned));
262 NonLoc makeIntVal(uint64_t integer, bool isUnsigned) {
263 return nonloc::ConcreteInt(BasicVals.getIntValue(integer, isUnsigned));
266 NonLoc makeIntValWithPtrWidth(uint64_t integer, bool isUnsigned) {
268 BasicVals.getIntWithPtrWidth(integer, isUnsigned));
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 26 EXPECT_TRUE(Value.isUnsigned());
43 EXPECT_FALSE(Value.isUnsigned());
50 EXPECT_FALSE(Value.isUnsigned());
79 EXPECT_FALSE(Value.isUnsigned());
84 EXPECT_FALSE(Value.isUnsigned());
92 EXPECT_TRUE(Value.isUnsigned());
98 EXPECT_FALSE(Value.isUnsigned());
  /frameworks/compile/slang/
slang_rs_export_var.h 56 inline bool isUnsigned() const { return mIsUnsigned; }
  /external/clang/lib/Lex/
PPExpressions.cpp 43 bool isUnsigned() const { return Val.isUnsigned(); }
253 Result.Val.setIsUnsigned(Literal.isUnsigned);
259 if (!Literal.isUnsigned && Result.Val.isNegative()) {
372 bool Overflow = !Result.isUnsigned() && Result.Val.isMinSignedValue();
548 Res.setIsUnsigned(LHS.isUnsigned()|RHS.isUnsigned());
551 if (ValueLive && Res.isUnsigned()) {
552 if (!LHS.isUnsigned() && LHS.Val.isNegative())
557 if (!RHS.isUnsigned() && RHS.Val.isNegative()
    [all...]
LiteralSupport.cpp 479 isUnsigned = false;
542 if (isUnsigned) break; // Cannot be repeated.
543 isUnsigned = true;
625 isUnsigned = false;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 90 bool isUnsigned) {
91 llvm::APSInt V(X, isUnsigned);
96 bool isUnsigned) {
97 llvm::APSInt V(BitWidth, isUnsigned);
SVals.cpp 262 if (C.getValue().isUnsigned())
266 os << ' ' << (C.getValue().isUnsigned() ? 'U' : 'S')
SimpleConstraintManager.cpp 269 ComparisonType.isUnsigned() && !WraparoundType.isUnsigned())
SymbolManager.cpp 36 if (getRHS().isUnsigned())
42 if (getLHS().isUnsigned())
SimpleSValBuilder.cpp 853 assert(leftI.isUnsigned());
854 llvm::APSInt rightI(rhsInt->getValue(), /* isUnsigned */ true);
861 llvm::APSInt Multiplicand(rightI.getBitWidth(), /* isUnsigned */ true);
    [all...]
  /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/lib/ASTMatchers/Dynamic/
VariantValue.cpp 123 bool VariantValue::isUnsigned() const {
128 assert(isUnsigned());
Marshallers.h 72 static bool is(const VariantValue &Value) { return Value.isUnsigned(); }
  /external/clang/include/clang/Basic/
TargetBuiltins.h 99 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
100 if (IsUnsigned)
111 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /external/clang/include/clang/ASTMatchers/Dynamic/
VariantValue.h 127 bool isUnsigned() const;
  /external/clang/include/clang/Lex/
LiteralSupport.h 56 bool isUnsigned;
  /external/llvm/include/llvm/IR/
InstrTypes.h     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
InstCombineSelect.cpp 482 } else if (ICI->isUnsigned()) {
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp     [all...]
SemaChecking.cpp 362 return Flags.isUnsigned() ? Context.UnsignedCharTy : Context.SignedCharTy;
364 return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy;
366 return Flags.isUnsigned() ? Context.UnsignedIntTy : Context.IntTy;
368 return Flags.isUnsigned() ? Context.UnsignedLongLongTy : Context.LongLongTy;
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 360 llvm::APSInt APSNumber(/*BitWidth=*/64, /*isUnsigned=*/false);
386 llvm::APSInt NibbleMask(Value.getBitWidth(), Value.isUnsigned());
    [all...]

Completed in 1272 milliseconds

1 2