• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/common/

Lines Matching defs:copy

3553     uInt left;          /* if STORED, bytes left to copy */
3609 /* copy as much as possible from the sliding window to the output area */
3741 /* copy input/output information to locals (UPDATE macro restores) */
4046 /* while there is input ready, copy to output buffer, moving
4636 uInt dist; /* distance back to copy from */
4637 } copy; /* if EXT or COPY, where and how much */
4685 Bytef *f; /* pointer to copy strings from */
4688 /* copy input/output information to locals (UPDATE macro restores) */
4728 c->sub.copy.get = e & 15;
4750 j = c->sub.copy.get;
4766 c->sub.copy.get = e & 15;
4767 c->sub.copy.dist = t->base;
4782 j = c->sub.copy.get;
4784 c->sub.copy.dist += (uInt)b & inflate_mask[j];
4786 Tracevv((stderr, "inflate: distance %u\n", c->sub.copy.dist));
4790 f = (uInt)(q - s->window) < c->sub.copy.dist ?
4791 s->end - (c->sub.copy.dist - (q - s->window)) :
4792 q - c->sub.copy.dist;
4794 f = q - c->sub.copy.dist;
4795 if ((uInt)(q - s->window) < c->sub.copy.dist)
4796 f = s->end - (c->sub.copy.dist - (uInt)(q - s->window));
4864 /* copy as much as possible from the sliding window to the output area */
4878 /* compute number of bytes to copy as far as end of window */
4891 /* copy as far as end of window */
4898 /* see if more to copy at beginning of window */
4906 /* compute bytes to copy */
4919 /* copy */
4985 uInt c; /* bytes to copy */
4986 uInt d; /* distance back to copy from */
4987 Bytef *r; /* copy source pointer */
5020 /* decode distance base of block to copy */
5034 /* do the copy */
5037 { /* just copy */
5048 c -= e; /* copy to end of window */
5052 r = s->window; /* copy rest from start of window */
5055 do { /* copy all or what's left */