| 248 | } |
| 249 | |
| 250 | static void getBitPosition(std::int64_t pos, std::int64_t& bytePos, std::int64_t& bitOffset) { |
| 251 | bytePos = pos >> 3; |
| 252 | bitOffset = pos - (bytePos << 3); |
| 253 | } |
| 254 | |
| 255 | static void setBitToZero(std::uint8_t* data, std::int64_t pos) { |
| 256 | std::int64_t bytePos = 0, bitOffset = 0; |
no outgoing calls
no test coverage detected