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

1 2 3 4 5

  /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-4053586/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
PointerEmbeddedInt.h 65 : llvm::isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : isUInt<Bits>(I)) &&
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ADT/
PointerEmbeddedInt.h 65 assert((std::is_signed<IntT>::value ? isInt<Bits>(I) : 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-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/darwin-x86/clang-4393122/include/llvm/Support/
MathExtras.h 320 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
324 isUInt(uint64_t X) {
325 static_assert(N > 0, "isUInt<0> doesn't make sense");
330 isUInt(uint64_t X) {
335 template <> constexpr inline bool isUInt<8>(uint64_t x) {
338 template <> constexpr inline bool isUInt<16>(uint64_t x) {
341 template <> constexpr inline bool isUInt<32>(uint64_t x) {
354 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
MathExtras.h 320 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
324 isUInt(uint64_t X) {
325 static_assert(N > 0, "isUInt<0> doesn't make sense");
330 isUInt(uint64_t X) {
335 template <> constexpr inline bool isUInt<8>(uint64_t x) {
338 template <> constexpr inline bool isUInt<16>(uint64_t x) {
341 template <> constexpr inline bool isUInt<32>(uint64_t x) {
354 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
MathExtras.h 320 /// to keep MSVC from (incorrectly) warning on isUInt<64> that we're shifting
324 isUInt(uint64_t X) {
325 static_assert(N > 0, "isUInt<0> doesn't make sense");
330 isUInt(uint64_t X) {
335 template <> constexpr inline bool isUInt<8>(uint64_t x) {
338 template <> constexpr inline bool isUInt<16>(uint64_t x) {
341 template <> constexpr inline bool isUInt<32>(uint64_t x) {
354 return isUInt<N + S>(x) && (x % (UINT64_C(1) << S) == 0);

Completed in 914 milliseconds

1 2 3 4 5