Searched refs:bufferSize (Results 1 – 4 of 4) sorted by relevance
/linux-6.6.21/lib/zstd/compress/ |
D | fse_compress.c | 328 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()
|
D | zstd_compress.c | 156 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/ |
D | fse.h | 157 FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize,
|
/linux-6.6.21/lib/zstd/decompress/ |
D | zstd_decompress.c | 2001 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()
|