Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4frame.c162 static const size_t BHSize = 4; variable
1092 …nextSrcSizeHint = (dctxPtr->tmpInTarget - dctxPtr->tmpInSize) + BHSize; /* rest of header + next… in LZ4F_decompress()
1103 if ((size_t)(srcEnd - srcPtr) >= BHSize) { in LZ4F_decompress()
1105 srcPtr += BHSize; in LZ4F_decompress()
1114 { size_t sizeToCopy = BHSize - dctxPtr->tmpInSize; in LZ4F_decompress()
1119 … if (dctxPtr->tmpInSize < BHSize) { /* not enough input to get full cBlockSize; wait for more */ in LZ4F_decompress()
1120 nextSrcSizeHint = BHSize - dctxPtr->tmpInSize; in LZ4F_decompress()
1141 nextSrcSizeHint = nextCBlockSize + BHSize; in LZ4F_decompress()
1166 nextSrcSizeHint = dctxPtr->tmpInTarget + BHSize; in LZ4F_decompress()
1189 nextSrcSizeHint = (dctxPtr->tmpInTarget - dctxPtr->tmpInSize) + BHSize; in LZ4F_decompress()
[all …]