Searched refs:bufferSize (Results 1 – 4 of 4) sorted by relevance
/linux/lib/zstd/compress/ |
A D | fse_compress.c | 285 size_t FSE_writeNCount (void* buffer, size_t bufferSize, in FSE_writeNCount() argument 291 if (bufferSize < FSE_NCountWriteBound(maxSymbolValue, tableLog)) in FSE_writeNCount() 292 …return FSE_writeNCount_generic(buffer, bufferSize, normalizedCounter, maxSymbolValue, tableLog, 0); in FSE_writeNCount() 294 …return FSE_writeNCount_generic(buffer, bufferSize, normalizedCounter, maxSymbolValue, tableLog, 1 … in FSE_writeNCount()
|
A D | zstd_compress.c | 141 size_t const bufferSize = dict.dictBuffer != NULL ? dict.dictSize : 0; in ZSTD_sizeof_localDict() local 143 return bufferSize + cdictSize; in ZSTD_sizeof_localDict()
|
/linux/lib/zstd/common/ |
A D | fse.h | 157 FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize,
|
/linux/lib/zstd/decompress/ |
A D | zstd_decompress.c | 1936 size_t const bufferSize = neededInBuffSize + neededOutBuffSize; in ZSTD_decompressStream() local 1945 bufferSize > zds->staticSize - sizeof(ZSTD_DCtx), in ZSTD_decompressStream() 1951 zds->inBuff = (char*)ZSTD_customMalloc(bufferSize, zds->customMem); in ZSTD_decompressStream()
|
Completed in 22 milliseconds