Lines Matching defs:copy
17 * You should have received a copy of the GNU Lesser General Public
46 int run, copy;
56 run = copy = 0;
68 } else if (code >= 0xC0) { /* very long copy */
71 copy = ((code & 0x3F) << 16) + (c0 << 8) + c1 + 1;
72 } else if (code >= 0x80) { /* long copy */
74 copy = ((code & 0x7F) << 8) + c0 + 1;
75 } else { /* short copy */
76 copy = code + 1;
79 /* perform actual run or copy */
104 if (bytestream2_get_bytes_left(&qctx->buffer) < copy)
105 copy = bytestream2_get_bytes_left(&qctx->buffer);
106 while (copy > 0) {
107 int step = FFMIN(copy, width - filled);
110 copy -= step;
140 /* copy prev frame */
217 } else if(code >= 0xC0) { /* copy code: 0xC0..0xDF */