• Home
  • Raw
  • Download

Lines Matching refs:cpy

1675         BYTE* cpy;  in LZ4_decompress_generic()  local
1731 cpy = op+length; in LZ4_decompress_generic()
1734 if ((cpy>oend-32) || (ip+length>iend-32)) { goto safe_literal_copy; } in LZ4_decompress_generic()
1735 LZ4_wildCopy32(op, ip, cpy); in LZ4_decompress_generic()
1737 if (cpy>oend-8) { goto safe_literal_copy; } in LZ4_decompress_generic()
1738 … LZ4_wildCopy8(op, ip, cpy); /* LZ4_decompress_fast() cannot copy more than 8 bytes at a time : in LZ4_decompress_generic()
1741 ip += length; op = cpy; in LZ4_decompress_generic()
1743 cpy = op+length; in LZ4_decompress_generic()
1756 ip += length; op = cpy; in LZ4_decompress_generic()
1829 cpy = op + length; in LZ4_decompress_generic()
1833 LZ4_memcpy_using_offset(op, match, cpy, offset); in LZ4_decompress_generic()
1835 LZ4_wildCopy32(op, match, cpy); in LZ4_decompress_generic()
1838 op = cpy; /* wildcopy correction */ in LZ4_decompress_generic()
1901 cpy = op+length; in LZ4_decompress_generic()
1906 if ( ((endOnInput) && ((cpy>oend-MFLIMIT) || (ip+length>iend-(2+1+LASTLITERALS))) ) in LZ4_decompress_generic()
1907 || ((!endOnInput) && (cpy>oend-WILDCOPYLENGTH)) ) in LZ4_decompress_generic()
1927 if (cpy > oend) { in LZ4_decompress_generic()
1928 cpy = oend; in LZ4_decompress_generic()
1937 if ((!endOnInput) && (cpy != oend)) { goto _output_error; } in LZ4_decompress_generic()
1941 … if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) { goto _output_error; } in LZ4_decompress_generic()
1950 if (!partialDecoding || (cpy == oend) || (ip == iend)) { in LZ4_decompress_generic()
1954 LZ4_wildCopy8(op, ip, cpy); /* may overwrite up to WILDCOPYLENGTH beyond cpy */ in LZ4_decompress_generic()
1955 ip += length; op = cpy; in LZ4_decompress_generic()
2008 cpy = op + length; in LZ4_decompress_generic()
2012 if (partialDecoding && (cpy > oend-MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
2041 if (unlikely(cpy > oend-MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
2043 …if (cpy > oend-LASTLITERALS) { goto _output_error; } /* Error : last LASTLITERALS bytes must be li… in LZ4_decompress_generic()
2049 while (op < cpy) { *op++ = *match++; } in LZ4_decompress_generic()
2052 if (length > 16) { LZ4_wildCopy8(op+8, match+8, cpy); } in LZ4_decompress_generic()
2054 op = cpy; /* wildcopy correction */ in LZ4_decompress_generic()