HomeSort by relevance Sort by last modified time
    Searched defs:isMask_32 (Results 1 - 5 of 5) 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-7.0/llvm/include/llvm/Support/
MathExtras.h 404 /// Ex. isMask_32(0x0000FFFFU) == true.
405 constexpr inline bool isMask_32(uint32_t Value) {
418 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);

Completed in 208 milliseconds