| 70 | constexpr bool IsMultipleOf64(int64_t n) { return (n & 63) == 0; } |
| 71 | |
| 72 | constexpr bool IsMultipleOf8(int64_t n) { return (n & 7) == 0; } |
| 73 | |
| 74 | // Returns a mask for the bit_index lower order bits. |
| 75 | // Valid in the range `[0, 8*sizof(Uint)]` if `kAllowUpperBound` |
no outgoing calls
no test coverage detected