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

1 2 3 4

  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParserCommon.h 19 (isUInt<16>(Value) && isInt<8>(static_cast<int16_t>(Value)));
24 (isUInt<32>(Value) && isInt<8>(static_cast<int32_t>(Value)));
36 return isUInt<8>(Value) || isInt<8>(Value);
  /external/llvm/lib/Target/SystemZ/MCTargetDesc/
SystemZMCCodeEmitter.cpp 153 assert(isUInt<4>(Base) && isUInt<12>(Disp));
163 assert(isUInt<4>(Base) && isInt<20>(Disp));
174 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<4>(Index));
185 assert(isUInt<4>(Base) && isInt<20>(Disp) && isUInt<4>(Index));
197 assert(isUInt<4>(Base) && isUInt<12>(Disp) && isUInt<8>(Len))
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.cpp 54 if (isUInt<32>(Imm.getZExtValue()))
105 if (isUInt<32>(Imm.getZExtValue()))
113 if (isUInt<32>(Imm.getZExtValue()))
116 if (isUInt<32>(-Imm.getSExtValue()))
131 if (isUInt<32>(Imm.getZExtValue()))
144 if (isUInt<32>(~Imm.getZExtValue()))
206 if (isUInt<32>(Imm.getZExtValue()))
208 if (isUInt<32>(-Imm.getSExtValue()))
  /external/llvm/lib/Target/AMDGPU/
SILoadStoreOptimizer.cpp 146 if (isUInt<8>(EltOffset0) && isUInt<8>(EltOffset1))
154 return isUInt<8>(EltOffset0 / 64) && isUInt<8>(EltOffset1 / 64);
223 assert((isUInt<8>(NewOffset0) && isUInt<8>(NewOffset1)) &&
319 assert((isUInt<8>(NewOffset0) && isUInt<8>(NewOffset1)) &&
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
MathExtras.h 54 /// isUInt - Checks if an unsigned integer fits into the given bit width.
56 inline bool isUInt(uint64_t x) {
61 inline bool isUInt<8>(uint64_t x) {
65 inline bool isUInt<16>(uint64_t x) {
69 inline bool isUInt<32>(uint64_t x) {
  /external/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 288 /// isUInt - Checks if an unsigned integer fits into the given bit width.
294 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
298 isUInt(uint64_t X) {
299 static_assert(N > 0, "isUInt<0> doesn't make sense");
304 isUInt(uint64_t X) {
309 template <> constexpr inline bool isUInt<8>(uint64_t x) {
312 template <> constexpr inline bool isUInt<16>(uint64_t x) {
315 template <> constexpr inline bool isUInt<32>(uint64_t x) {
328 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp 453 bool isU1Imm() const { return Kind == Immediate && isUInt<1>(getImm()); }
454 bool isU2Imm() const { return Kind == Immediate && isUInt<2>(getImm()); }
455 bool isU3Imm() const { return Kind == Immediate && isUInt<3>(getImm()); }
456 bool isU4Imm() const { return Kind == Immediate && isUInt<4>(getImm()); }
457 bool isU5Imm() const { return Kind == Immediate && isUInt<5>(getImm()); }
459 bool isU6Imm() const { return Kind == Immediate && isUInt<6>(getImm()); }
461 isUInt<6>(getImm()) &&
463 bool isU7Imm() const { return Kind == Immediate && isUInt<7>(getImm()); }
465 isUInt<7>(getImm()) &&
467 bool isU8Imm() const { return Kind == Immediate && isUInt<8>(getImm());
    [all...]
  /external/llvm/lib/Target/AVR/
AVRRegisterInfo.cpp 171 if (isUInt<6>(Offset)) {
233 assert(isUInt<6>(Offset) && "Offset is out of range");

Completed in 1709 milliseconds

1 2 3 4