Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4frame.c200 static const size_t BHSize = 4; variable
1216 decodeResult = BHSize; /* block header size */ in LZ4F_getFrameInfo()
1359 …nextSrcSizeHint = (dctx->tmpInTarget - dctx->tmpInSize) + BHSize; /* rest of header + nextBlockH… in LZ4F_decompress()
1395 if ((size_t)(srcEnd - srcPtr) >= BHSize) { in LZ4F_decompress()
1397 srcPtr += BHSize; in LZ4F_decompress()
1407 size_t const wantedData = BHSize - dctx->tmpInSize; in LZ4F_decompress()
1413 if (dctx->tmpInSize < BHSize) { /* not enough input for cBlockSize */ in LZ4F_decompress()
1414 nextSrcSizeHint = BHSize - dctx->tmpInSize; in LZ4F_decompress()
1443 nextSrcSizeHint = nextCBlockSize + crcSize + BHSize; in LZ4F_decompress()
1478 + BHSize /* next header size */; in LZ4F_decompress()
[all …]