Home
last modified time | relevance | path

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

/linux-6.15/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 … 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-6.15/drivers/gpu/drm/nouveau/include/nvrm/535.113.01/common/sdk/nvidia/inc/ctrl/ctrl0073/
H A Dctrl0073specific.h36 NvU32 bufferSize; member
/linux-6.15/lib/zstd/common/
H A Dfse.h113 FSE_PUBLIC_API size_t FSE_writeNCount (void* buffer, size_t bufferSize,
/linux-6.15/drivers/gpu/drm/nouveau/nvkm/engine/disp/
H A Dr535.c1175 if (ctrl->bufferSize <= *psize) { in r535_tmds_edid_get()
1176 memcpy(data, ctrl->edidBuffer, ctrl->bufferSize); in r535_tmds_edid_get()
1177 *psize = ctrl->bufferSize; in r535_tmds_edid_get()
/linux-6.15/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()