Home
last modified time | relevance | path

Searched refs:tmpOutBuffer (Results 1 - 1 of 1) sorted by relevance

/third_party/lz4/lib/
H A Dlz4frame.c1217 BYTE* tmpOutBuffer; member
1265 LZ4F_free(dctx->tmpOutBuffer, dctx->cmem); in LZ4F_freeDecompressionContext()
1492 /* dstBuffer does not contain whole useful history (64 KB), so it must be saved within tmpOutBuffer */ in LZ4F_updateDict()
1493 assert(dctx->tmpOutBuffer != NULL); in LZ4F_updateDict()
1495 if (withinTmp && (dctx->dict == dctx->tmpOutBuffer)) { /* continue history within tmpOutBuffer */ in LZ4F_updateDict()
1502 if (withinTmp) { /* copy relevant dict portion in front of tmpOut within tmpOutBuffer */ in LZ4F_updateDict()
1503 size_t const preserveSize = (size_t)(dctx->tmpOut - dctx->tmpOutBuffer); in LZ4F_updateDict()
1509 memcpy(dctx->tmpOutBuffer + preserveSize - copySize, oldDictEnd - copySize, copySize); in LZ4F_updateDict()
1511 dctx->dict = dctx->tmpOutBuffer; in LZ4F_updateDict()
[all...]

Completed in 3 milliseconds