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

1 2 3

  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
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;
55 bool isSigned() const { return !IsUnsigned; }
    [all...]
  /external/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
APSInt.h 23 bool IsUnsigned;
27 explicit APSInt() : IsUnsigned(false) {}
31 explicit APSInt(uint32_t BitWidth, bool isUnsigned = true)
32 : APInt(BitWidth, 0), IsUnsigned(isUnsigned) {}
34 explicit APSInt(APInt I, bool isUnsigned = true)
35 : APInt(std::move(I)), IsUnsigned(isUnsigned) {}
59 bool isSigned() const { return !IsUnsigned; }
60 bool isUnsigned() const { return IsUnsigned;
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
APSIntType.h 22 bool IsUnsigned;
26 : BitWidth(Width), IsUnsigned(Unsigned) {}
29 : BitWidth(Value.getBitWidth()), IsUnsigned(Value.isUnsigned()) {}
32 bool isUnsigned() const { return IsUnsigned; }
42 Value.setIsUnsigned(IsUnsigned);
50 llvm::APSInt Result(Value, Value.isUnsigned());
57 return llvm::APSInt(BitWidth, IsUnsigned);
62 return llvm::APSInt::getMinValue(BitWidth, IsUnsigned);
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
APSIntType.cpp 20 if (IsUnsigned && !AllowSignConversions &&
26 if (Value.isSigned() && !IsUnsigned)
37 MinBits = Value.getMinSignedBits() - IsUnsigned;
39 MinBits = Value.getActiveBits() + !IsUnsigned;
  /external/swiftshader/third_party/LLVM/lib/Support/
APSInt.cpp 21 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0));
  /external/llvm/lib/Support/
APSInt.cpp 31 *this = APSInt(Tmp, /*IsUnsigned=*/false);
37 *this = APSInt(Tmp, /*IsUnsigned=*/true);
41 ID.AddInteger((unsigned) (IsUnsigned ? 1 : 0));
  /art/compiler/optimizing/
nodes_vector_test.cc 227 EXPECT_TRUE(v1->IsUnsigned());
228 EXPECT_FALSE(v2->IsUnsigned());
229 EXPECT_TRUE(v3->IsUnsigned());
255 EXPECT_TRUE(v1->IsUnsigned());
256 EXPECT_FALSE(v2->IsUnsigned());
257 EXPECT_TRUE(v3->IsUnsigned());
295 EXPECT_TRUE(v1->IsUnsigned() && v1->IsRounded());
296 EXPECT_TRUE(v2->IsUnsigned() && !v2->IsRounded());
297 EXPECT_TRUE(!v3->IsUnsigned() && v3->IsRounded());
298 EXPECT_TRUE(!v4->IsUnsigned() && !v4->IsRounded())
    [all...]
  /external/clang/include/clang/Basic/
TargetBuiltins.h 123 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) {
124 if (IsUnsigned)
135 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; }
  /prebuilts/go/darwin-x86/src/go/types/
universe.go 32 Uint: {Uint, IsInteger | IsUnsigned, "uint"},
33 Uint8: {Uint8, IsInteger | IsUnsigned, "uint8"},
34 Uint16: {Uint16, IsInteger | IsUnsigned, "uint16"},
35 Uint32: {Uint32, IsInteger | IsUnsigned, "uint32"},
36 Uint64: {Uint64, IsInteger | IsUnsigned, "uint64"},
37 Uintptr: {Uintptr, IsInteger | IsUnsigned, "uintptr"},
55 {Byte, IsInteger | IsUnsigned, "byte"},

Completed in 592 milliseconds

1 2 3