Home
last modified time | relevance | path

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

/DragonOS-0.1.8/kernel/src/libs/
Dlz4.c1351 unsigned const litLength = (unsigned)(ip - anchor); in LZ4_compress_generic_validated() local
1354 (unlikely(op + litLength + (2 + 1 + LASTLITERALS) + (litLength / 255) > olimit))) in LZ4_compress_generic_validated()
1359 …(unlikely(op + (litLength + 240) / 255 /* litlen */ + litLength /* literals */ + 2 /* offset */ + … in LZ4_compress_generic_validated()
1364 if (litLength >= RUN_MASK) in LZ4_compress_generic_validated()
1366 int len = (int)(litLength - RUN_MASK); in LZ4_compress_generic_validated()
1373 *token = (BYTE)(litLength << ML_BITS); in LZ4_compress_generic_validated()
1376 LZ4_wildCopy8(op, anchor, op + litLength); in LZ4_compress_generic_validated()
1377 op += litLength; in LZ4_compress_generic_validated()
1379 … (int)(anchor - (const BYTE *)source), litLength, (int)(ip - (const BYTE *)source)); in LZ4_compress_generic_validated()