Lines Matching refs:cpy

2242         BYTE *cpy;  in LZ4_decompress_generic()  local
2319 cpy = op + length; in LZ4_decompress_generic()
2323 if ((cpy > oend - 32) || (ip + length > iend - 32)) in LZ4_decompress_generic()
2327 LZ4_wildCopy32(op, ip, cpy); in LZ4_decompress_generic()
2331 if (cpy > oend - 8) in LZ4_decompress_generic()
2335 … LZ4_wildCopy8(op, ip, cpy); /* LZ4_decompress_fast() cannot copy more than 8 bytes at a time : in LZ4_decompress_generic()
2339 op = cpy; in LZ4_decompress_generic()
2343 cpy = op + length; in LZ4_decompress_generic()
2366 op = cpy; in LZ4_decompress_generic()
2478 cpy = op + length; in LZ4_decompress_generic()
2483 LZ4_memcpy_using_offset(op, match, cpy, offset); in LZ4_decompress_generic()
2487 LZ4_wildCopy32(op, match, cpy); in LZ4_decompress_generic()
2490 op = cpy; /* wildcopy correction */ in LZ4_decompress_generic()
2566 cpy = op + length; in LZ4_decompress_generic()
2571 …if (((endOnInput) && ((cpy > oend - MFLIMIT) || (ip + length > iend - (2 + 1 + LASTLITERALS)))) ||… in LZ4_decompress_generic()
2594 cpy = op + length; in LZ4_decompress_generic()
2599 if (cpy > oend) in LZ4_decompress_generic()
2601 cpy = oend; in LZ4_decompress_generic()
2611 if ((!endOnInput) && (cpy != oend)) in LZ4_decompress_generic()
2618 if ((endOnInput) && ((ip + length != iend) || (cpy > oend))) in LZ4_decompress_generic()
2622 DEBUGLOG(6, "or cpy(%p) > oend(%p)", cpy, oend); in LZ4_decompress_generic()
2634 if (!partialDecoding || (cpy == oend) || (ip >= (iend - 2))) in LZ4_decompress_generic()
2641 LZ4_wildCopy8(op, ip, cpy); /* may overwrite up to WILDCOPYLENGTH beyond cpy */ in LZ4_decompress_generic()
2643 op = cpy; in LZ4_decompress_generic()
2713 cpy = op + length; in LZ4_decompress_generic()
2717 if (partialDecoding && (cpy > oend - MATCH_SAFEGUARD_DISTANCE)) in LZ4_decompress_generic()
2759 if (unlikely(cpy > oend - MATCH_SAFEGUARD_DISTANCE)) in LZ4_decompress_generic()
2762 if (cpy > oend - LASTLITERALS) in LZ4_decompress_generic()
2772 while (op < cpy) in LZ4_decompress_generic()
2782 LZ4_wildCopy8(op + 8, match + 8, cpy); in LZ4_decompress_generic()
2785 op = cpy; /* wildcopy correction */ in LZ4_decompress_generic()