* Return rounded up binary logarithm of `x`. */
| 325 | * Return rounded up binary logarithm of `x`. |
| 326 | */ |
| 327 | Y_FORCE_INLINE ui8 CeilLog2(ui64 x) { |
| 328 | return static_cast<ui8>(MostSignificantBit(x - 1)) + 1; |
| 329 | } |
| 330 | |
| 331 | Y_FORCE_INLINE ui8 ReverseBytes(ui8 t) { |
| 332 | return t; |
no test coverage detected