Searched refs:buffOutSize (Results 1 – 6 of 6) sorted by relevance
| /f-stack/freebsd/contrib/zstd/examples/ |
| H A D | multiple_streaming_compression.c | 27 size_t buffOutSize; member 35 ress.buffOutSize= ZSTD_CStreamOutSize(); /* can always flush a full block */ in createResources_orDie() 37 ress.buffOut= malloc_orDie(ress.buffOutSize); in createResources_orDie() 81 ZSTD_outBuffer output = { ress.buffOut, ress.buffOutSize, 0 }; in compressFile_orDie()
|
| H A D | streaming_decompression.c | 23 …size_t const buffOutSize = ZSTD_DStreamOutSize(); /* Guarantee to successfully flush at least one… in decompressFile_orDie() local 24 void* const buffOut = malloc_orDie(buffOutSize); in decompressFile_orDie() 48 ZSTD_outBuffer output = { buffOut, buffOutSize, 0 }; in decompressFile_orDie()
|
| H A D | streaming_compression.c | 30 size_t const buffOutSize = ZSTD_CStreamOutSize(); in compressFile_orDie() local 31 void* const buffOut = malloc_orDie(buffOutSize); in compressFile_orDie() 68 ZSTD_outBuffer output = { buffOut, buffOutSize, 0 }; in compressFile_orDie()
|
| H A D | streaming_compression_thread_pool.c | 42 size_t const buffOutSize = ZSTD_CStreamOutSize(); in compressFile_orDie() local 43 void* const buffOut = malloc_orDie(buffOutSize); in compressFile_orDie() 85 ZSTD_outBuffer output = { buffOut, buffOutSize, 0 }; in compressFile_orDie()
|
| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A D | zstd_compress.c | 1303 const size_t buffOutSize, in ZSTD_estimateCCtxSize_usingCCtxParams_internal() argument 1324 + ZSTD_cwksp_alloc_size(buffOutSize); in ZSTD_estimateCCtxSize_usingCCtxParams_internal() 1625 … size_t const buffOutSize = (zbuff == ZSTDb_buffered && params.outBufferMode == ZSTD_bm_buffered) in ZSTD_resetCCtx_internal() local 1640 buffInSize, buffOutSize, pledgedSrcSize); in ZSTD_resetCCtx_internal() 1708 zc->outBuffSize = buffOutSize; in ZSTD_resetCCtx_internal() 1709 zc->outBuff = (char*)ZSTD_cwksp_reserve_buffer(ws, buffOutSize); in ZSTD_resetCCtx_internal()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 14531 size_t const buffOutSize = (zbuff==ZSTDb_buffered) ? ZSTD_compressBound(blockSize)+1 : 0; in ZSTD_resetCCtx_internal() local 14548 … size_t const bufferSpace = ZSTD_cwksp_alloc_size(buffInSize) + ZSTD_cwksp_alloc_size(buffOutSize); in ZSTD_resetCCtx_internal() 14623 zc->outBuffSize = buffOutSize; in ZSTD_resetCCtx_internal() 14624 zc->outBuff = (char*)ZSTD_cwksp_reserve_buffer(ws, buffOutSize); in ZSTD_resetCCtx_internal()
|