Searched refs:hashTable (Results 1 - 10 of 10) sorted by relevance

/linux-master/lib/zstd/compress/
H A Dzstd_fast.c20 U32* const hashTable = ms->hashTable; local
34 hashTable[hash0] = curr;
40 if (hashTable[hash] == 0) { /* not yet filled */
41 hashTable[hash] = curr + p;
99 U32* const hashTable = ms->hashTable; local
166 idx = hashTable[hash0];
174 hashTable[hash0] = current0;
202 idx = hashTable[hash
377 U32* const hashTable = ms->hashTable; local
553 U32* const hashTable = ms->hashTable; local
[all...]
H A Dzstd_lazy.c25 U32* const hashTable = ms->hashTable; local
45 U32 const matchIndex = hashTable[h];
51 hashTable[h] = idx; /* Update Hash Table */
164 const U32 * const dictHashTable = dms->hashTable;
238 U32* const hashTable = ms->hashTable; local
241 U32 matchIndex = hashTable[h];
309 matchIndex = hashTable[h];
310 hashTable[
402 U32* const hashTable = ms->hashTable; local
622 U32* const hashTable = ms->hashTable; local
843 ZSTD_row_prefetch(U32 const* hashTable, U16 const* tagTable, U32 const relRow, U32 const rowLog) argument
866 U32 const* const hashTable = ms->hashTable; local
888 ZSTD_row_nextCachedHash(U32* cache, U32 const* hashTable, U16 const* tagTable, BYTE const* base, U32 idx, U32 const hashLog, U32 const rowLog, U32 const mls) argument
910 U32* const hashTable = ms->hashTable; local
1127 U32* const hashTable = ms->hashTable; local
[all...]
H A Dzstd_opt.c418 U32* const hashTable = ms->hashTable; local
424 U32 matchIndex = hashTable[h];
455 hashTable[h] = curr; /* Update Hash Table */
572 U32* const hashTable = ms->hashTable; local
574 U32 matchIndex = hashTable[h];
687 hashTable[h] = curr; /* Update Hash Table */
744 U32 dictMatchIndex = dms->hashTable[dmsH];
H A Dzstd_double_fast.c19 U32* const hashLarge = ms->hashTable;
56 U32* const hashLong = ms->hashTable;
263 U32* const hashLong = ms->hashTable;
282 const U32* const dictHashLong = dms->hashTable;
536 U32* const hashLong = ms->hashTable;
H A Dzstd_ldm.c175 return ldmState->hashTable + (hash << ldmParams.bucketSizeLog);
542 ZSTD_ldm_reduceTable(ldmState->hashTable, ldmHSize, correction);
H A Dzstd_compress_internal.h214 U32 rowHashLog; /* For row-based matchfinder: Hashlog based on nb of rows in the hashTable.*/
218 U32* hashTable; member in struct:ZSTD_matchState_t
255 ldmEntry_t* hashTable; member in struct:__anon200
264 U32 hashLog; /* Log size of hashTable */
H A Dzstd_compress.c1676 ms->hashTable = (U32*)ZSTD_cwksp_reserve_table(ws, hSize * sizeof(U32));
1901 zc->ldmState.hashTable = (ldmEntry_t*)ZSTD_cwksp_reserve_aligned(ws, ldmHSize * sizeof(ldmEntry_t));
1902 ZSTD_memset(zc->ldmState.hashTable, 0, ldmHSize * sizeof(ldmEntry_t));
2057 ZSTD_memcpy(cctx->blockState.matchState.hashTable,
2058 cdict->matchState.hashTable,
2172 ZSTD_memcpy(dstCCtx->blockState.matchState.hashTable,
2173 srcCCtx->blockState.matchState.hashTable,
2273 ZSTD_reduceTable(ms->hashTable, hSize, reducerValue);
/linux-master/lib/lz4/
H A Dlz4_compress.c101 const BYTE **hashTable = (const BYTE **)tableBase; local
103 hashTable[h] = p;
108 U32 *hashTable = (U32 *) tableBase; local
110 hashTable[h] = (U32)(p - srcBase);
115 U16 *hashTable = (U16 *) tableBase; local
117 hashTable[h] = (U16)(p - srcBase);
141 const BYTE **hashTable = (const BYTE **) tableBase; local
143 return hashTable[h];
147 const U32 * const hashTable = (U32 *) tableBase; local
149 return hashTable[
154 const U16 * const hashTable = (U16 *) tableBase; local
[all...]
H A Dlz4hc_compress.c63 memset((void *)hc4->hashTable, 0, sizeof(hc4->hashTable));
78 U32 * const hashTable = hc4->hashTable; local
85 size_t delta = idx - hashTable[h];
92 hashTable[h] = idx;
107 U32 * const HashTable = hc4->hashTable;
179 U32 * const HashTable = hc4->hashTable;
/linux-master/include/linux/
H A Dlz4.h99 uint32_t hashTable[LZ4_HASH_SIZE_U32]; member in struct:__anon108
115 unsigned int hashTable[LZ4HC_HASHTABLESIZE]; member in struct:__anon110

Completed in 195 milliseconds