| 199 | } |
| 200 | |
| 201 | void bits_split_indexes(int64_t hardware_flags, const int num_bits, const uint8_t* bits, |
| 202 | int* num_indexes_bit0, uint16_t* indexes_bit0, |
| 203 | uint16_t* indexes_bit1, int bit_offset) { |
| 204 | bits_to_indexes(0, hardware_flags, num_bits, bits, num_indexes_bit0, indexes_bit0, |
| 205 | bit_offset); |
| 206 | int num_indexes_bit1; |
| 207 | bits_to_indexes(1, hardware_flags, num_bits, bits, &num_indexes_bit1, indexes_bit1, |
| 208 | bit_offset); |
| 209 | } |
| 210 | |
| 211 | void bits_to_bytes(int64_t hardware_flags, const int num_bits, const uint8_t* bits, |
| 212 | uint8_t* bytes, int bit_offset) { |
nothing calls this directly
no test coverage detected