Lines Matching refs:copy
238 unsigned long copy; /* number of stored or match bytes to copy */ local
328 copy = length;
331 if (copy > have) copy = have;
332 if (copy > left) copy = left;
333 zmemcpy(put, next, copy);
334 have -= copy;
335 next += copy;
336 left -= copy;
337 put += copy;
338 length -= copy;
404 copy = 3 + BITS(2);
411 copy = 3 + BITS(3);
418 copy = 11 + BITS(7);
421 if (state->have + copy > state->nlen + state->ndist) {
426 while (copy--)
563 copy = WSIZE - offset;
564 if (copy < left) {
565 from = put + copy;
566 copy = left - copy;
570 copy = left;
572 if (copy > length) copy = length;
573 length -= copy;
574 left -= copy;
577 } while (--copy);