Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/lib/zstd/
H A 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()
/kernel/linux/linux-6.6/lib/zstd/compress/
H A Dzstd_compress.c1359 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; in ZSTD_sizeof_matchState() local
1364 + h3Size * sizeof(U32); in ZSTD_sizeof_matchState()
1384 DEBUGLOG(4, "chainSize: %u - hSize: %u - h3Size: %u", in ZSTD_sizeof_matchState()
1385 (U32)chainSize, (U32)hSize, (U32)h3Size); in ZSTD_sizeof_matchState()
1657 size_t const h3Size = hashLog3 ? ((size_t)1) << hashLog3 : 0; in ZSTD_reset_matchState() local
1678 ms->hashTable3 = (U32*)ZSTD_cwksp_reserve_table(ws, h3Size * sizeof(U32)); in ZSTD_reset_matchState()
2077 size_t const h3Size = h3log ? ((size_t)1 << h3log) : 0; in ZSTD_resetCCtx_byCopyingCDict() local
2079 ZSTD_memset(cctx->blockState.matchState.hashTable3, 0, h3Size * sizeof(U32)); in ZSTD_resetCCtx_byCopyingCDict()
2170 size_t const h3Size = h3log ? ((size_t)1 << h3log) : 0; in ZSTD_copyCCtx_internal() local
2180 h3Size * sizeo in ZSTD_copyCCtx_internal()
2285 U32 const h3Size = (U32)1 << ms->hashLog3; ZSTD_reduceIndex() local
[all...]

Completed in 14 milliseconds