Lines Matching refs:cpy
88 BYTE *cpy; in LZ4_decompress_generic() local
221 cpy = op + length; in LZ4_decompress_generic()
224 if (((endOnInput) && ((cpy > oend - MFLIMIT) in LZ4_decompress_generic()
226 || ((!endOnInput) && (cpy > oend - WILDCOPYLENGTH))) { in LZ4_decompress_generic()
228 if (cpy > oend) { in LZ4_decompress_generic()
233 cpy = oend; in LZ4_decompress_generic()
247 && (cpy != oend)) { in LZ4_decompress_generic()
257 || (cpy > oend))) { in LZ4_decompress_generic()
279 if (!partialDecoding || (cpy == oend) || (ip >= (iend - 2))) in LZ4_decompress_generic()
283 LZ4_wildCopy(op, ip, cpy); in LZ4_decompress_generic()
285 op = cpy; in LZ4_decompress_generic()
379 cpy = op + length; in LZ4_decompress_generic()
387 (cpy > oend - MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
420 if (unlikely(cpy > oend - MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
423 if (cpy > oend - LASTLITERALS) { in LZ4_decompress_generic()
436 while (op < cpy) in LZ4_decompress_generic()
441 LZ4_wildCopy(op + 8, match + 8, cpy); in LZ4_decompress_generic()
443 op = cpy; /* wildcopy correction */ in LZ4_decompress_generic()