Lines Matching refs:litLength
302 unsigned const int litLength = (unsigned int)(ip - anchor); in LZ4_compress_generic() local
308 (unlikely(op + litLength + in LZ4_compress_generic()
310 (litLength / 255) > olimit))) in LZ4_compress_generic()
313 if (litLength >= RUN_MASK) { in LZ4_compress_generic()
314 int len = (int)litLength - RUN_MASK; in LZ4_compress_generic()
322 *token = (BYTE)(litLength << ML_BITS); in LZ4_compress_generic()
325 LZ4_wildCopy(op, anchor, op + litLength); in LZ4_compress_generic()
326 op += litLength; in LZ4_compress_generic()
612 unsigned int litLength = (unsigned int)(ip - anchor); in LZ4_compress_destSize_generic() local
615 if (op + ((litLength + 240) / 255) in LZ4_compress_destSize_generic()
616 + litLength > oMaxLit) { in LZ4_compress_destSize_generic()
621 if (litLength >= RUN_MASK) { in LZ4_compress_destSize_generic()
622 unsigned int len = litLength - RUN_MASK; in LZ4_compress_destSize_generic()
628 *token = (BYTE)(litLength << ML_BITS); in LZ4_compress_destSize_generic()
631 LZ4_wildCopy(op, anchor, op + litLength); in LZ4_compress_destSize_generic()
632 op += litLength; in LZ4_compress_destSize_generic()