Home
last modified time | relevance | path

Searched refs:litLength (Results 1 – 1 of 1) sorted by relevance

/external/lz4/lib/
Dlz4.c600 unsigned litLength = (unsigned)(ip - anchor); in LZ4_compress_generic() local
602 …if ((outputLimited) && (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimi… in LZ4_compress_generic()
604 if (litLength>=RUN_MASK) in LZ4_compress_generic()
606 int len = (int)litLength-RUN_MASK; in LZ4_compress_generic()
611 else *token = (BYTE)(litLength<<ML_BITS); in LZ4_compress_generic()
614 LZ4_wildCopy(op, anchor, op+litLength); in LZ4_compress_generic()
615 op+=litLength; in LZ4_compress_generic()