isShiftedMask_32 - This function returns true if the argument contains a sequence of ones with the remainder zero (32 bit version.) Ex. isShiftedMask_32(0x0000FF00U) == true.
| 73 | /// sequence of ones with the remainder zero (32 bit version.) |
| 74 | /// Ex. isShiftedMask_32(0x0000FF00U) == true. |
| 75 | static inline bool isShiftedMask_32(uint32_t Value) { |
| 76 | return isMask_32((Value - 1) | Value); |
| 77 | } |
| 78 | |
| 79 | /// isShiftedMask_64 - This function returns true if the argument contains a |
| 80 | /// sequence of ones with the remainder zero (64 bit version.) |
nothing calls this directly
no test coverage detected
searching dependent graphs…