Home
last modified time | relevance | path

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

/third_party/lz4/lib/
Dlz4.c1022 { unsigned const litLength = (unsigned)(ip - anchor); in LZ4_compress_generic_validated() local
1025 (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength/255) > olimit)) ) { in LZ4_compress_generic_validated()
1029 …(unlikely(op + (litLength+240)/255 /* litlen */ + litLength /* literals */ + 2 /* offset */ + 1 /*… in LZ4_compress_generic_validated()
1033 if (litLength >= RUN_MASK) { in LZ4_compress_generic_validated()
1034 int len = (int)(litLength - RUN_MASK); in LZ4_compress_generic_validated()
1039 else *token = (BYTE)(litLength<<ML_BITS); in LZ4_compress_generic_validated()
1042 LZ4_wildCopy8(op, anchor, op+litLength); in LZ4_compress_generic_validated()
1043 op+=litLength; in LZ4_compress_generic_validated()
1045 … (int)(anchor-(const BYTE*)source), litLength, (int)(ip-(const BYTE*)source)); in LZ4_compress_generic_validated()