Searched refs:bufferSize (Results 1 – 6 of 6) sorted by relevance
/linux/lib/zstd/compress/ |
H A D | fse_compress.c | 331 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 D | zstd_compress.c | 163 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 D | fse.h | 113 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 D | disp.h | 347 NvU32 bufferSize; member
|
/linux/drivers/gpu/drm/nouveau/nvkm/subdev/gsp/rm/r535/ |
H A D | disp.c | 1235 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 D | zstd_decompress.c | 2141 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()
|