| 181 | } |
| 182 | |
| 183 | static inline void SetBit(uint8_t* bits, int64_t i) { bits[i / 8] |= kBitmask[i % 8]; } |
| 184 | |
| 185 | static inline void SetBitTo(uint8_t* bits, int64_t i, bool bit_is_set) { |
| 186 | // https://graphics.stanford.edu/~seander/bithacks.html |
no outgoing calls