Home
last modified time | relevance | path

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

/linux-6.6.21/lib/zstd/compress/
Dfse_compress.c328 size_t FSE_writeNCount (void* buffer, size_t bufferSize, in FSE_writeNCount() argument
334 if (bufferSize < FSE_NCountWriteBound(maxSymbolValue, tableLog)) in FSE_writeNCount()
335 …return FSE_writeNCount_generic(buffer, bufferSize, normalizedCounter, maxSymbolValue, tableLog, 0); in FSE_writeNCount()
337 …return FSE_writeNCount_generic(buffer, bufferSize, normalizedCounter, maxSymbolValue, tableLog, 1 … in FSE_writeNCount()
Dzstd_compress.c156 size_t const bufferSize = dict.dictBuffer != NULL ? dict.dictSize : 0; in ZSTD_sizeof_localDict() local
158 return bufferSize + cdictSize; in ZSTD_sizeof_localDict()
/linux-6.6.21/lib/zstd/common/
Dfse.h157 FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize,
/linux-6.6.21/lib/zstd/decompress/
Dzstd_decompress.c2001 size_t const bufferSize = neededInBuffSize + neededOutBuffSize; in ZSTD_decompressStream() local
2010 bufferSize > zds->staticSize - sizeof(ZSTD_DCtx), in ZSTD_decompressStream()
2016 zds->inBuff = (char*)ZSTD_customMalloc(bufferSize, zds->customMem); in ZSTD_decompressStream()