Searched refs:cpy (Results 1 – 2 of 2) sorted by relevance
89 BYTE* cpy; in LZ4_decompress_generic() local130 cpy = op+length; in LZ4_decompress_generic()131 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()132 || ((!endOnInput) && (cpy>oend-COPYLENGTH))) in LZ4_decompress_generic()136 …if (cpy > oend) goto _output_error; /* Error : write attempt beyond end … in LZ4_decompress_generic()141 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic()142 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic()149 LZ4_wildCopy(op, ip, cpy); in LZ4_decompress_generic()150 ip += length; op = cpy; in LZ4_decompress_generic()153 match = cpy - LZ4_readLE16(ip); ip+=2; in LZ4_decompress_generic()[all …]
53 uint8_t *cpy, copymap = 0; in lzjb_decompress() local69 cpy = dst - offset; in lzjb_decompress()70 if (src > s_end || cpy < (uint8_t *) d_start) { in lzjb_decompress()75 *dst++ = *cpy++; in lzjb_decompress()