| 217 | } |
| 218 | |
| 219 | static inline void SetBit(uint8_t* bits, int64_t i) { bits[i / 8] |= kBitmask[i % 8]; } |
| 220 | |
| 221 | static inline void SetBitTo(uint8_t* bits, int64_t i, bool bit_is_set) { |
| 222 | // https://graphics.stanford.edu/~seander/bithacks.html |
no outgoing calls