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