Lines Matching refs:op
264 BYTE **op, in LZ4HC_encodeSequence() argument
276 token = (*op)++; in LZ4HC_encodeSequence()
279 && ((*op + (length>>8) in LZ4HC_encodeSequence()
290 *(*op)++ = 255; in LZ4HC_encodeSequence()
291 *(*op)++ = (BYTE)len; in LZ4HC_encodeSequence()
296 LZ4_wildCopy(*op, *anchor, (*op) + length); in LZ4HC_encodeSequence()
297 *op += length; in LZ4HC_encodeSequence()
300 LZ4_writeLE16(*op, (U16)(*ip - match)); in LZ4HC_encodeSequence()
301 *op += 2; in LZ4HC_encodeSequence()
307 && (*op + (length>>8) in LZ4HC_encodeSequence()
318 *(*op)++ = 255; in LZ4HC_encodeSequence()
319 *(*op)++ = 255; in LZ4HC_encodeSequence()
324 *(*op)++ = 255; in LZ4HC_encodeSequence()
327 *(*op)++ = (BYTE)length; in LZ4HC_encodeSequence()
354 BYTE *op = (BYTE *) dest; in LZ4HC_compress_generic() local
355 BYTE * const oend = op + maxOutputSize; in LZ4HC_compress_generic()
402 if (LZ4HC_encodeSequence(&ip, &op, in LZ4HC_compress_generic()
468 if (LZ4HC_encodeSequence(&ip, &op, &anchor, in LZ4HC_compress_generic()
472 if (LZ4HC_encodeSequence(&ip, &op, &anchor, in LZ4HC_compress_generic()
498 if (LZ4HC_encodeSequence(&ip, &op, &anchor, in LZ4HC_compress_generic()
539 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, in LZ4HC_compress_generic()
559 && (((char *)op - dest) + lastRun + 1 in LZ4HC_compress_generic()
566 *op++ = (RUN_MASK<<ML_BITS); in LZ4HC_compress_generic()
569 *op++ = 255; in LZ4HC_compress_generic()
570 *op++ = (BYTE) lastRun; in LZ4HC_compress_generic()
572 *op++ = (BYTE)(lastRun<<ML_BITS); in LZ4HC_compress_generic()
573 LZ4_memcpy(op, anchor, iend - anchor); in LZ4HC_compress_generic()
574 op += iend - anchor; in LZ4HC_compress_generic()
578 return (int) (((char *)op) - dest); in LZ4HC_compress_generic()