Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dcompress.c99 size_t const h3Size = ((size_t)1) << hashLog3; in ZSTD_CCtxWorkspaceBound() local
100 size_t const tableSpace = (chainSize + hSize + h3Size) * sizeof(U32); in ZSTD_CCtxWorkspaceBound()
259 size_t const h3Size = ((size_t)1) << hashLog3; in ZSTD_resetCCtx_advanced() local
260 size_t const tableSpace = (chainSize + hSize + h3Size) * sizeof(U32); in ZSTD_resetCCtx_advanced()
285 ptr = zc->hashTable3 + h3Size; in ZSTD_resetCCtx_advanced()
364 size_t const h3Size = (size_t)1 << srcCCtx->hashLog3; in ZSTD_copyCCtx() local
365 size_t const tableSpace = (chainSize + hSize + h3Size) * sizeof(U32); in ZSTD_copyCCtx()
423 U32 const h3Size = (zc->hashLog3) ? 1 << zc->hashLog3 : 0; in ZSTD_reduceIndex() local
424 ZSTD_reduceTable(zc->hashTable3, h3Size, reducerValue); in ZSTD_reduceIndex()