| 38 | }; |
| 39 | |
| 40 | void TestBitMapAccumulator::FillBitMap(uint8_t* bmap, uint32_t seed, int nbytes) { |
| 41 | ::arrow::random_bytes(nbytes, seed, bmap); |
| 42 | } |
| 43 | |
| 44 | void TestBitMapAccumulator::ByteWiseIntersectBitMaps( |
| 45 | uint8_t* dst, const std::vector<const uint8_t*>& srcs, |
nothing calls this directly
no test coverage detected