MCPcopy Create free account
hub / github.com/apache/arrow / bits_split_indexes

Function bits_split_indexes

cpp/src/arrow/compute/util.cc:201–209  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

199}
200
201void 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
211void bits_to_bytes(int64_t hardware_flags, const int num_bits, const uint8_t* bits,
212 uint8_t* bytes, int bit_offset) {

Callers

nothing calls this directly

Calls 1

bits_to_indexesFunction · 0.85

Tested by

no test coverage detected