| 135 | |
| 136 | |
| 137 | static unsigned size_byte_number() { |
| 138 | if (!num_sub_byte_bits) |
| 139 | return 0; |
| 140 | return |
| 141 | max(ilog2_ceil(divide_up(1 << num_sub_byte_bits, bits_byte), false), 1u); |
| 142 | } |
| 143 | |
| 144 | static unsigned sub_byte_bits() { |
| 145 | return num_sub_byte_bits + size_byte_number(); |
no test coverage detected