Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4frame.c1422 { size_t const nextCBlockSize = LZ4F_readLE32(selectedIn) & 0x7FFFFFFFU; in LZ4F_decompress() local
1424 if (nextCBlockSize==0) { /* frameEnd signal, no more block */ in LZ4F_decompress()
1428 if (nextCBlockSize > dctx->maxBlockSize) in LZ4F_decompress()
1432 dctx->tmpInTarget = nextCBlockSize; in LZ4F_decompress()
1440 dctx->tmpInTarget = nextCBlockSize + crcSize; in LZ4F_decompress()
1443 nextSrcSizeHint = nextCBlockSize + crcSize + BHSize; in LZ4F_decompress()