Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/contrib/zstd/lib/compress/
Dzstd_compress.c674 size_t const h3Size = ((size_t)1) << hashLog3; in ZSTD_sizeof_matchState() local
675 size_t const tableSpace = (chainSize + hSize + h3Size) * sizeof(U32); in ZSTD_sizeof_matchState()
683 (U32)chainSize, (U32)hSize, (U32)h3Size); in ZSTD_sizeof_matchState()
908 size_t const h3Size = ((size_t)1) << hashLog3; in ZSTD_reset_matchState() local
909 size_t const tableSpace = (chainSize + hSize + h3Size) * sizeof(U32); in ZSTD_reset_matchState()
938 ptr = ms->hashTable3 + h3Size; in ZSTD_reset_matchState()
1131 { size_t const h3Size = (size_t)1 << cctx->blockState.matchState.hashLog3; in ZSTD_resetCCtx_usingCDict() local
1133 memset(cctx->blockState.matchState.hashTable3, 0, h3Size * sizeof(U32)); in ZSTD_resetCCtx_usingCDict()
1186 size_t const h3Size = (size_t)1 << srcCCtx->blockState.matchState.hashLog3; in ZSTD_copyCCtx_internal() local
1187 size_t const tableSpace = (chainSize + hSize + h3Size) * sizeof(U32); in ZSTD_copyCCtx_internal()
[all …]