| 55 | return 1ULL << ShiftOfBit(index); |
| 56 | } |
| 57 | static WordType FirstWordMask(uint64_t start) |
| 58 | { |
| 59 | return ~0ULL << (start % kBitsPerWord); |
| 60 | } |
| 61 | |
| 62 | static WordType LastWordMask(uint64_t end) |
| 63 | { |
nothing calls this directly
no outgoing calls
no test coverage detected