Lines Matching refs:insert
286 if (s->insert > s->strstart)
287 s->insert = s->strstart;
310 if (s->lookahead + s->insert >= MIN_MATCH) {
311 uInt str = s->strstart - s->insert;
317 while (s->insert) {
324 s->insert--;
325 if (s->lookahead + s->insert < MIN_MATCH)
580 s->insert = 0;
586 /* insert dictionary into window and hash */
609 s->insert = s->lookahead;
693 s->insert = 0;
1224 s->insert = 0;
1726 * insert in the hash tables, in the event that deflateParams() switches to
1738 s->insert = s->strstart;
1747 if (s->insert > s->strstart)
1748 s->insert = s->strstart;
1752 s->insert += MIN(used, s->w_size - s->insert);
1778 if (s->insert > s->strstart)
1779 s->insert = s->strstart;
1786 s->insert += MIN(have, s->w_size - s->insert);
1831 * for the next match, plus MIN_MATCH bytes to insert the
1907 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
1932 * for the next match, plus MIN_MATCH bytes to insert the
1983 /* Do not insert strings in hash table beyond this. */
2036 s->insert = s->strstart < MIN_MATCH-1 ? s->strstart : MIN_MATCH-1;
2110 s->insert = 0;
2147 s->insert = 0;