• Home
  • Raw
  • Download

Lines Matching refs:op

260     BYTE** op,  in LZ4HC_encodeSequence()  argument
276 token = (*op)++; in LZ4HC_encodeSequence()
277 …if ((limitedOutputBuffer) && ((*op + (length>>8) + length + (2 + 1 + LASTLITERALS)) > oend)) retur… in LZ4HC_encodeSequence()
278 …K<<ML_BITS); len = length-RUN_MASK; for(; len > 254 ; len-=255) *(*op)++ = 255; *(*op)++ = (BYTE)… in LZ4HC_encodeSequence()
282 LZ4_wildCopy(*op, *anchor, (*op) + length); in LZ4HC_encodeSequence()
283 *op += length; in LZ4HC_encodeSequence()
286 LZ4_writeLE16(*op, (U16)(*ip-match)); *op += 2; in LZ4HC_encodeSequence()
290 …if ((limitedOutputBuffer) && (*op + (length>>8) + (1 + LASTLITERALS) > oend)) return 1; /* Check… in LZ4HC_encodeSequence()
294 for(; length > 509 ; length-=510) { *(*op)++ = 255; *(*op)++ = 255; } in LZ4HC_encodeSequence()
295 if (length > 254) { length-=255; *(*op)++ = 255; } in LZ4HC_encodeSequence()
296 *(*op)++ = (BYTE)length; in LZ4HC_encodeSequence()
326 BYTE* op = (BYTE*) dest; in LZ4HC_compress_hashChain() local
327 BYTE* const oend = op + maxOutputSize; in LZ4HC_compress_hashChain()
359 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0; in LZ4HC_compress_hashChain()
407 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0; in LZ4HC_compress_hashChain()
409 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml2, ref2, limit, oend)) return 0; in LZ4HC_compress_hashChain()
427 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0; in LZ4HC_compress_hashChain()
463 if (LZ4HC_encodeSequence(&ip, &op, &anchor, ml, ref, limit, oend)) return 0; in LZ4HC_compress_hashChain()
478 …if ((limit) && (((char*)op - dest) + lastRun + 1 + ((lastRun+255-RUN_MASK)/255) > (U32)maxOutputSi… in LZ4HC_compress_hashChain()
479 …(lastRun>=(int)RUN_MASK) { *op++=(RUN_MASK<<ML_BITS); lastRun-=RUN_MASK; for(; lastRun > 254 ; las… in LZ4HC_compress_hashChain()
480 else *op++ = (BYTE)(lastRun<<ML_BITS); in LZ4HC_compress_hashChain()
481 memcpy(op, anchor, iend - anchor); in LZ4HC_compress_hashChain()
482 op += iend-anchor; in LZ4HC_compress_hashChain()
486 return (int) (((char*)op)-dest); in LZ4HC_compress_hashChain()