Lines Matching refs:op
269 static inline int lz4_encodesequence(const u8 **ip, u8 **op, const u8 **anchor, in lz4_encodesequence() argument
277 token = (*op)++; in lz4_encodesequence()
282 *(*op)++ = 255; in lz4_encodesequence()
283 *(*op)++ = (u8)len; in lz4_encodesequence()
288 LZ4_BLINDCOPY(*anchor, *op, length); in lz4_encodesequence()
291 LZ4_WRITE_LITTLEENDIAN_16(*op, (u16)(*ip - ref)); in lz4_encodesequence()
299 *(*op)++ = 255; in lz4_encodesequence()
300 *(*op)++ = 255; in lz4_encodesequence()
304 *(*op)++ = 255; in lz4_encodesequence()
306 *(*op)++ = (u8)len; in lz4_encodesequence()
328 u8 *op = (u8 *)dest; in lz4_compresshcctx() local
362 lz4_encodesequence(&ip, &op, &anchor, ml, ref); in lz4_compresshcctx()
423 lz4_encodesequence(&ip, &op, &anchor, ml, ref); in lz4_compresshcctx()
425 lz4_encodesequence(&ip, &op, &anchor, ml2, ref2); in lz4_compresshcctx()
449 lz4_encodesequence(&ip, &op, &anchor, ml, ref); in lz4_compresshcctx()
487 lz4_encodesequence(&ip, &op, &anchor, ml, ref); in lz4_compresshcctx()
503 *op++ = (RUN_MASK << ML_BITS); in lz4_compresshcctx()
506 *op++ = 255; in lz4_compresshcctx()
507 *op++ = (u8) lastrun; in lz4_compresshcctx()
509 *op++ = (lastrun << ML_BITS); in lz4_compresshcctx()
510 memcpy(op, anchor, iend - anchor); in lz4_compresshcctx()
511 op += iend - anchor; in lz4_compresshcctx()
513 return (int) (((char *)op) - dest); in lz4_compresshcctx()