Searched refs:litLength (Results 1 – 1 of 1) sorted by relevance
552 { unsigned const litLength = (unsigned)(ip - anchor); in LZ4_compress_generic() local555 (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit))) in LZ4_compress_generic()557 if (litLength >= RUN_MASK) { in LZ4_compress_generic()558 int len = (int)litLength-RUN_MASK; in LZ4_compress_generic()563 else *token = (BYTE)(litLength<<ML_BITS); in LZ4_compress_generic()566 LZ4_wildCopy(op, anchor, op+litLength); in LZ4_compress_generic()567 op+=litLength; in LZ4_compress_generic()787 { unsigned litLength = (unsigned)(ip - anchor); in LZ4_compress_destSize_generic() local789 if (op + ((litLength+240)/255) + litLength > oMaxLit) { in LZ4_compress_destSize_generic()794 if (litLength>=RUN_MASK) { in LZ4_compress_destSize_generic()[all …]