Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4frame.c745 size_t tmpOutStart; member
918 dctxPtr->tmpOutStart = 0; in LZ4F_decodeHeader()
993 const BYTE* const oldDictEnd = dctxPtr->dict + dctxPtr->dictSize - dctxPtr->tmpOutStart; in LZ4F_updateDict()
1000 dctxPtr->dictSize = preserveSize + dctxPtr->tmpOutStart + dstSize; in LZ4F_updateDict()
1259 dctxPtr->tmpOutStart = 0; in LZ4F_decompress()
1265 { size_t sizeToCopy = dctxPtr->tmpOutSize - dctxPtr->tmpOutStart; in LZ4F_decompress()
1267 memcpy(dstPtr, dctxPtr->tmpOut + dctxPtr->tmpOutStart, sizeToCopy); in LZ4F_decompress()
1273 dctxPtr->tmpOutStart += sizeToCopy; in LZ4F_decompress()
1277 if (dctxPtr->tmpOutStart == dctxPtr->tmpOutSize) { in LZ4F_decompress()
1389 const BYTE* oldDictEnd = dctxPtr->dict + dctxPtr->dictSize - dctxPtr->tmpOutStart; in LZ4F_decompress()
[all …]