Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Ddecompress.c2232 size_t const neededOutSize = zds->maxWindowSize + blockSize + WILDCOPY_OVERLENGTH * 2; in ZSTD_initDStream() local
2236 zds->outBuff = (char *)ZSTD_malloc(neededOutSize, zds->customMem); in ZSTD_initDStream()
2237 zds->outBuffSize = neededOutSize; in ZSTD_initDStream()
2367 size_t const neededOutSize = zds->maxWindowSize + blockSize + WILDCOPY_OVERLENGTH * 2; in ZSTD_decompressStream() local
2371 if (zds->outBuffSize < neededOutSize) { in ZSTD_decompressStream()