HomeSort by relevance Sort by last modified time
    Searched refs:isMask_32 (Results 1 - 24 of 24) sorted by null

  /external/capstone/
MathExtras.h 60 /// isMask_32 - This function returns true if the argument is a sequence of ones
62 /// version). Ex. isMask_32(0x0000FFFFU) == true.
63 static inline bool isMask_32(uint32_t Value) {
78 return isMask_32((Value - 1) | Value);
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
MathExtras.h 85 /// isMask_32 - This function returns true if the argument is a sequence of ones
87 /// version). Ex. isMask_32(0x0000FFFFU) == true.
88 inline bool isMask_32(uint32_t Value) {
103 return isMask_32((Value - 1) | Value);
  /external/llvm/include/llvm/Support/
MathExtras.h 348 /// isMask_32 - This function returns true if the argument is a non-empty
350 /// zero (32 bit version). Ex. isMask_32(0x0000FFFFU) == true.
351 inline bool isMask_32(uint32_t Value) {
366 return Value && isMask_32((Value - 1) | Value);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
MathExtras.h 370 /// isMask_32 - This function returns true if the argument is a non-empty
372 /// zero (32 bit version). Ex. isMask_32(0x0000FFFFU) == true.
373 constexpr inline bool isMask_32(uint32_t Value) {
388 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 370 /// isMask_32 - This function returns true if the argument is a non-empty
372 /// zero (32 bit version). Ex. isMask_32(0x0000FFFFU) == true.
373 constexpr inline bool isMask_32(uint32_t Value) {
388 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/
MathExtras.h 370 /// isMask_32 - This function returns true if the argument is a non-empty
372 /// zero (32 bit version). Ex. isMask_32(0x0000FFFFU) == true.
373 constexpr inline bool isMask_32(uint32_t Value) {
388 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
MathExtras.h 396 /// Ex. isMask_32(0x0000FFFFU) == true.
397 constexpr inline bool isMask_32(uint32_t Value) {
410 return Value && isMask_32((Value - 1) | Value);
  /external/llvm/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 56 if (!isMask_32(value)) {
XCoreInstrInfo.cpp 418 if (!isMask_32(val)) {
  /external/swiftshader/third_party/LLVM/lib/Target/XCore/
XCoreISelDAGToDAG.cpp 61 if (!isMask_32(value)) {
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86FloatingPoint.cpp     [all...]
  /external/llvm/lib/Target/AMDGPU/
AMDGPUISelDAGToDAG.cpp     [all...]

Completed in 1897 milliseconds