Lines Matching defs:used
22 * is used to find longer strings when a small match has been found.
23 * A similar algorithm is used in comic (by Jan-Mark Wams) and freeze
25 * A previous version of this file used a more sophisticated algorithm
206 * its value will never be used.
837 * Shifts are used to approximate divisions, for speed.
1627 * In case deflateParams() is used to later switch to a non-zero compression
1651 unsigned used = s->strm->avail_in;
1729 used -= s->strm->avail_in; /* number of input bytes directly copied */
1730 if (used) {
1731 /* If any input was used, then no unused input remains in the window,
1734 if (used >= s->w_size) { /* supplant the previous history */
1741 if (s->window_size - s->strstart <= used) {
1750 zmemcpy(s->window + s->strstart, s->strm->next_in - used, used);
1751 s->strstart += used;
1752 s->insert += MIN(used, s->w_size - s->insert);
1821 * matches. It is used only for the fast compression options.