Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dfse_compress.c331 size_t FSE_writeNCount (void* buffer, size_t bufferSize, in FSE_writeNCount() argument
337 if (bufferSize < FSE_NCountWriteBound(maxSymbolValue, tableLog)) in FSE_writeNCount()
338 return FSE_writeNCount_generic(buffer, bufferSize, normalizedCounter, maxSymbolValue, tableLog, 0); in FSE_writeNCount()
340 return FSE_writeNCount_generic(buffer, bufferSize, normalizedCounter, maxSymbolValue, tableLog, 1 /* write in buffer is safe */); in FSE_writeNCount()
H A Dzstd_compress.c163 size_t const bufferSize = dict.dictBuffer != NULL ? dict.dictSize : 0; in ZSTD_sizeof_localDict() local
165 return bufferSize + cdictSize; in ZSTD_sizeof_localDict()
/linux/lib/zstd/common/
H A Dfse.h113 FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize,
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/rm/r535/nvrm/
H A Ddisp.h347 NvU32 bufferSize; member
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/rm/r535/
H A Ddisp.c1235 if (ctrl->bufferSize <= *psize) { in r535_tmds_edid_get()
1236 memcpy(data, ctrl->edidBuffer, ctrl->bufferSize); in r535_tmds_edid_get()
1237 *psize = ctrl->bufferSize; in r535_tmds_edid_get()
/linux/lib/zstd/decompress/
H A Dzstd_decompress.c2141 size_t const bufferSize = neededInBuffSize + neededOutBuffSize; in ZSTD_decompressStream() local
2150 bufferSize > zds->staticSize - sizeof(ZSTD_DCtx), in ZSTD_decompressStream()
2156 zds->inBuff = (char*)ZSTD_customMalloc(bufferSize, zds->customMem); in ZSTD_decompressStream()