Lines Matching refs:cpy

1980         BYTE* cpy;  in LZ4_decompress_generic()  local
2132 cpy = op + length; in LZ4_decompress_generic()
2136 LZ4_memcpy_using_offset(op, match, cpy, offset); in LZ4_decompress_generic()
2138 LZ4_wildCopy32(op, match, cpy); in LZ4_decompress_generic()
2141 op = cpy; /* wildcopy correction */ in LZ4_decompress_generic()
2207 cpy = op+length; in LZ4_decompress_generic()
2210 if ((cpy>oend-MFLIMIT) || (ip+length>iend-(2+1+LASTLITERALS))) { in LZ4_decompress_generic()
2229 cpy = op + length; in LZ4_decompress_generic()
2234 if (cpy > oend) { in LZ4_decompress_generic()
2235 cpy = oend; in LZ4_decompress_generic()
2243 if ((ip+length != iend) || (cpy > oend)) { in LZ4_decompress_generic()
2246 DEBUGLOG(6, "or cpy(%p) > oend(%p)", cpy, oend); in LZ4_decompress_generic()
2258 if (!partialDecoding || (cpy == oend) || (ip >= (iend-2))) { in LZ4_decompress_generic()
2262 LZ4_wildCopy8(op, ip, cpy); /* can overwrite up to 8 bytes beyond cpy */ in LZ4_decompress_generic()
2263 ip += length; op = cpy; in LZ4_decompress_generic()
2317 cpy = op + length; in LZ4_decompress_generic()
2321 if (partialDecoding && (cpy > oend-MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
2350 if (unlikely(cpy > oend-MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
2352 …if (cpy > oend-LASTLITERALS) { goto _output_error; } /* Error : last LASTLITERALS bytes must be li… in LZ4_decompress_generic()
2358 while (op < cpy) { *op++ = *match++; } in LZ4_decompress_generic()
2361 if (length > 16) { LZ4_wildCopy8(op+8, match+8, cpy); } in LZ4_decompress_generic()
2363 op = cpy; /* wildcopy correction */ in LZ4_decompress_generic()