Searched refs:previousDstEnd (Results 1 – 4 of 4) sorted by relevance
64 dctx->previousDstEnd = dctx->dictEnd; in ZSTD_copyDDictParameters()67 dctx->dictContentEndForFuzzing = dctx->previousDstEnd; in ZSTD_copyDDictParameters()
133 const void* previousDstEnd; /* detect continuity */ member
787 dctx->previousDstEnd = (const char*)blockStart + blockSize; in ZSTD_insertBlock()1188 dctx->previousDstEnd = (char*)dst + rSize; in ZSTD_decompressContinue()1253 dctx->dictEnd = dctx->previousDstEnd; in ZSTD_refDictContent()1254 …dctx->virtualStart = (const char*)dict - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx… in ZSTD_refDictContent()1256 dctx->previousDstEnd = (const char*)dict + dictSize; in ZSTD_refDictContent()1259 dctx->dictContentEndForFuzzing = dctx->previousDstEnd; in ZSTD_refDictContent()1383 dctx->previousDstEnd = NULL; in ZSTD_decompressBegin()
2054 if (dst != dctx->previousDstEnd && dstSize > 0) { /* not contiguous */2055 dctx->dictEnd = dctx->previousDstEnd;2056 …dctx->virtualStart = (const char*)dst - ((const char*)(dctx->previousDstEnd) - (const char*)(dctx-…2058 dctx->previousDstEnd = dst;2070 dctx->previousDstEnd = (char*)dst + dSize;
Completed in 16 milliseconds