| 1681 | } |
| 1682 | |
| 1683 | void insertString (uint32_t str, IPos& match_head) |
| 1684 | { |
| 1685 | updateHash (ins_h, window[(str) + (MIN_MATCH - 1)]); |
| 1686 | match_head = prev[str & w_mask] = head[ins_h]; |
| 1687 | head[ins_h] = (Pos) str; |
| 1688 | } |
| 1689 | |
| 1690 | void initLongestMatch() |
| 1691 | { |
no outgoing calls
no test coverage detected