• Home
  • Raw
  • Download

Lines Matching refs:cpy

1422     BYTE* cpy;  in LZ4_decompress_generic()  local
1508 cpy = op+length; in LZ4_decompress_generic()
1510 if ( ((endOnInput) && ((cpy>oend-MFLIMIT) || (ip+length>iend-(2+1+LASTLITERALS))) ) in LZ4_decompress_generic()
1511 || ((!endOnInput) && (cpy>oend-WILDCOPYLENGTH)) ) in LZ4_decompress_generic()
1514 …if (cpy > oend) { cpy = oend; length = oend-op; } /* Partial decoding : stop in the mi… in LZ4_decompress_generic()
1517 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic()
1518 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic()
1523 if (!partialDecoding || (cpy == oend)) { in LZ4_decompress_generic()
1529 LZ4_wildCopy(op, ip, cpy); /* may overwrite up to WILDCOPYLENGTH beyond cpy */ in LZ4_decompress_generic()
1530 ip += length; op = cpy; in LZ4_decompress_generic()
1588 cpy = op + length; in LZ4_decompress_generic()
1592 if (partialDecoding && (cpy > oend-MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
1620 if (unlikely(cpy > oend-MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()
1622 …if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be lit… in LZ4_decompress_generic()
1628 while (op < cpy) *op++ = *match++; in LZ4_decompress_generic()
1631 if (length > 16) LZ4_wildCopy(op+8, match+8, cpy); in LZ4_decompress_generic()
1633 op = cpy; /* wildcopy correction */ in LZ4_decompress_generic()