Home
last modified time | relevance | path

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

/freebsd/stand/ficl/
H A Ddict.c800 UNS16 hashIdx; in hashLookup() local
808 hashIdx = (UNS16)(hashCode % pHash->size); in hashLookup()
810 hashIdx = 0; in hashLookup()
812 for (pFW = pHash->table[hashIdx]; pFW; pFW = pFW->link) in hashLookup()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_lazy.c422 U32 hashIdx; in ZSTD_dedicatedDictSearch_lazy_loadDictionary() local
441 for (hashIdx = 0; hashIdx < (1U << hashLog); hashIdx++) { in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
444 U32 i = tmpHashTable[hashIdx]; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
479 tmpHashTable[hashIdx] = ((chainPos - count) << 8) + count; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
481 tmpHashTable[hashIdx] = 0; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
488 for (hashIdx = (1 << hashLog); hashIdx; ) { in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
489 U32 const bucketIdx = --hashIdx << ZSTD_LAZY_DDSS_BUCKET_LOG; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()
490 U32 const chainPackedPointer = tmpHashTable[hashIdx]; in ZSTD_dedicatedDictSearch_lazy_loadDictionary()