Searched refs:hashTable (Results 1 – 11 of 11) sorted by relevance
| /f-stack/freebsd/contrib/zstd/lib/compress/ |
| H A D | zstd_fast.c | 20 U32* const hashTable = ms->hashTable; in ZSTD_fillHashTable() local 34 hashTable[hash0] = curr; in ZSTD_fillHashTable() 41 hashTable[hash] = curr + p; in ZSTD_fillHashTable() 53 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_generic() local 99 U32 const matchIndex0 = hashTable[h0]; in ZSTD_compressBlock_fast_generic() 100 U32 const matchIndex1 = hashTable[h1]; in ZSTD_compressBlock_fast_generic() 212 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_dictMatchState_generic() local 229 const U32* const dictHashTable = dms->hashTable; in ZSTD_compressBlock_fast_dictMatchState_generic() 262 U32 const matchIndex = hashTable[h]; in ZSTD_compressBlock_fast_dictMatchState_generic() 380 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_extDict_generic() local [all …]
|
| H A D | zstd_lazy.c | 25 U32* const hashTable = ms->hashTable; in ZSTD_updateDUBT() local 45 U32 const matchIndex = hashTable[h]; in ZSTD_updateDUBT() 238 U32* const hashTable = ms->hashTable; in ZSTD_DUBT_findBestMatch() local 309 matchIndex = hashTable[h]; in ZSTD_DUBT_findBestMatch() 455 U32* const hashTable = ms->hashTable; in ZSTD_insertAndFindFirstIndex_internal() local 466 hashTable[h] = idx; in ZSTD_insertAndFindFirstIndex_internal() 483 U32* const hashTable = ms->hashTable; in ZSTD_dedicatedDictSearch_lazy_loadDictionary() local 499 U32* const tmpHashTable = hashTable; in ZSTD_dedicatedDictSearch_lazy_loadDictionary() 575 hashTable[bucketIdx + i] = 0; in ZSTD_dedicatedDictSearch_lazy_loadDictionary() 587 hashTable[h + i] = hashTable[h + i - 1]; in ZSTD_dedicatedDictSearch_lazy_loadDictionary() [all …]
|
| H A D | zstd_opt.c | 375 U32* const hashTable = ms->hashTable; in ZSTD_insertBt1() local 381 U32 matchIndex = hashTable[h]; in ZSTD_insertBt1() 408 hashTable[h] = curr; /* Update Hash Table */ in ZSTD_insertBt1() 525 U32* const hashTable = ms->hashTable; in ZSTD_insertBtAndGetAllMatches() local 527 U32 matchIndex = hashTable[h]; in ZSTD_insertBtAndGetAllMatches() 640 hashTable[h] = curr; /* Update Hash Table */ in ZSTD_insertBtAndGetAllMatches() 697 U32 dictMatchIndex = dms->hashTable[dmsH]; in ZSTD_insertBtAndGetAllMatches()
|
| H A D | zstd_double_fast.c | 19 U32* const hashLarge = ms->hashTable; in ZSTD_fillDoubleHashTable() 57 U32* const hashLong = ms->hashTable; in ZSTD_compressBlock_doubleFast_generic() 79 dms->hashTable : NULL; in ZSTD_compressBlock_doubleFast_generic() 365 U32* const hashLong = ms->hashTable; in ZSTD_compressBlock_doubleFast_extDict_generic()
|
| H A D | zstdmt_compress.c | 498 … if (serialState->ldmState.hashTable == NULL || serialState->params.ldmParams.hashLog < hashLog) { in ZSTDMT_serialState_reset() 499 ZSTD_customFree(serialState->ldmState.hashTable, cMem); in ZSTDMT_serialState_reset() 500 serialState->ldmState.hashTable = (ldmEntry_t*)ZSTD_customMalloc(hashSize, cMem); in ZSTDMT_serialState_reset() 506 if (!serialState->ldmState.hashTable || !serialState->ldmState.bucketOffsets) in ZSTDMT_serialState_reset() 509 ZSTD_memset(serialState->ldmState.hashTable, 0, hashSize); in ZSTDMT_serialState_reset() 552 ZSTD_customFree(serialState->ldmState.hashTable, cMem); in ZSTDMT_serialState_free()
|
| H A D | zstd_ldm.c | 97 return ldmState->hashTable + (hash << ldmParams.bucketSizeLog); in ZSTD_ldm_getBucket() 481 ZSTD_ldm_reduceTable(ldmState->hashTable, ldmHSize, correction); in ZSTD_ldm_generateSequences()
|
| H A D | zstd_compress_internal.h | 163 U32* hashTable; member 188 ldmEntry_t* hashTable; member
|
| H A D | zstd_compress.c | 1554 ms->hashTable = (U32*)ZSTD_cwksp_reserve_table(ws, hSize * sizeof(U32)); in ZSTD_reset_matchState() 1741 …zc->ldmState.hashTable = (ldmEntry_t*)ZSTD_cwksp_reserve_aligned(ws, ldmHSize * sizeof(ldmEntry_t)… in ZSTD_resetCCtx_internal() 1742 ZSTD_memset(zc->ldmState.hashTable, 0, ldmHSize * sizeof(ldmEntry_t)); in ZSTD_resetCCtx_internal() 1892 ZSTD_memcpy(cctx->blockState.matchState.hashTable, in ZSTD_resetCCtx_byCopyingCDict() 1893 cdict->matchState.hashTable, in ZSTD_resetCCtx_byCopyingCDict() 1986 ZSTD_memcpy(dstCCtx->blockState.matchState.hashTable, in ZSTD_copyCCtx_internal() 1987 srcCCtx->blockState.matchState.hashTable, in ZSTD_copyCCtx_internal() 2091 ZSTD_reduceTable(ms->hashTable, hSize, reducerValue); in ZSTD_reduceIndex()
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | lz4.c | 368 HTYPE hashTable[HASHTABLESIZE]; member 473 HTYPE *HashTable = (HTYPE *) (srt->hashTable); in LZ4_compressCtx() 664 U16 *HashTable = (U16 *) (srt->hashTable); in LZ4_compress64kCtx()
|
| /f-stack/freebsd/contrib/openzfs/module/zstd/lib/ |
| H A D | zstd.c | 10058 U32* hashTable; member 10079 ldmEntry_t* hashTable; member 17907 U32* const hashTable = ms->hashTable; in ZSTD_fillHashTable() local 17940 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_generic() local 18099 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_dictMatchState_generic() local 18267 U32* const hashTable = ms->hashTable; in ZSTD_compressBlock_fast_extDict_generic() local 18410 U32* const hashTable = ms->hashTable; in ZSTD_updateDUBT() local 18623 U32* const hashTable = ms->hashTable; in ZSTD_DUBT_findBestMatch() local 18839 U32* const hashTable = ms->hashTable; in ZSTD_insertAndFindFirstIndex_internal() local 20521 U32* const hashTable = ms->hashTable; in ZSTD_insertBt1() local [all …]
|
| /f-stack/freebsd/contrib/zstd/lib/legacy/ |
| H A D | zstd_v01.c | 1438 __m256i hashTable[HASH_TABLESIZE>>3]; member 1440 U32 hashTable[HASH_TABLESIZE]; member
|