| 82 | int Init(const IndexTableOptions& options); |
| 83 | |
| 84 | const Header* HeaderAt(int index) const { |
| 85 | if (BAIDU_UNLIKELY(index < _start_index)) { |
| 86 | return NULL; |
| 87 | } |
| 88 | return _header_queue.bottom(index - _start_index); |
| 89 | }; |
| 90 | |
| 91 | int GetIndexOfHeader(const HeaderAndHashCode& h) { |
| 92 | DCHECK(_need_indexes); |
no test coverage detected