Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/lz4/
Dlz4.c1097 { unsigned const litLength = (unsigned)(ip - anchor); in LZ4_compress_generic_validated() local
1100 (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)) ) { in LZ4_compress_generic_validated()
1104 …(unlikely(op + (litLength+240)/255 /* litlen */ + litLength /* literals */ + 2 /* offset */ + 1 /*… in LZ4_compress_generic_validated()
1108 if (litLength >= RUN_MASK) { in LZ4_compress_generic_validated()
1109 int len = (int)(litLength - RUN_MASK); in LZ4_compress_generic_validated()
1114 else *token = (BYTE)(litLength<<ML_BITS); in LZ4_compress_generic_validated()
1117 LZ4_wildCopy8(op, anchor, op+litLength); in LZ4_compress_generic_validated()
1118 op+=litLength; in LZ4_compress_generic_validated()
1120 … (int)(anchor-(const BYTE*)source), litLength, (int)(ip-(const BYTE*)source)); in LZ4_compress_generic_validated()