Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/lzma/
H A DLzFind.c484 curMatch = p->hash[hashValue]; in Bt2_MatchFinder_GetMatches()
485 p->hash[hashValue] = p->pos; in Bt2_MatchFinder_GetMatches()
495 curMatch = p->hash[hashValue]; in Bt3Zip_MatchFinder_GetMatches()
496 p->hash[hashValue] = p->pos; in Bt3Zip_MatchFinder_GetMatches()
635 curMatch = p->hash[hashValue]; in Hc3Zip_MatchFinder_GetMatches()
636 p->hash[hashValue] = p->pos; in Hc3Zip_MatchFinder_GetMatches()
648 curMatch = p->hash[hashValue]; in Bt2_MatchFinder_Skip()
649 p->hash[hashValue] = p->pos; in Bt2_MatchFinder_Skip()
661 curMatch = p->hash[hashValue]; in Bt3Zip_MatchFinder_Skip()
662 p->hash[hashValue] = p->pos; in Bt3Zip_MatchFinder_Skip()
[all …]
H A DLzHash.h15 #define HASH2_CALC hashValue = cur[0] | ((UInt32)cur[1] << 8);
20 hashValue = (temp ^ ((UInt32)cur[2] << 8)) & p->hashMask; }
26 hashValue = (temp ^ ((UInt32)cur[2] << 8) ^ (p->crc[cur[3]] << 5)) & p->hashMask; }
33 hashValue = (hash4Value ^ (p->crc[cur[4]] << 3)) & p->hashMask; \
37 #define HASH_ZIP_CALC hashValue = ((cur[2] | ((UInt32)cur[0] << 8)) ^ p->crc[cur[1]]) & 0xFFFF;
/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_hash.c186 DAPL_HASH_KEY hashValue; in dapli_hash_add() local
224 hashValue = DAPL_DOHASH(key, p_table->tbl_size); in dapli_hash_add()
225 if (NO_DATUM(p_table->table[hashValue].datum)) { in dapli_hash_add()
229 p_table->table[hashValue].key = key; in dapli_hash_add()
230 p_table->table[hashValue].datum = datum; in dapli_hash_add()
231 p_table->table[hashValue].next_element = 0; in dapli_hash_add()
245 for (lastelement = &p_table->table[hashValue]; in dapli_hash_add()
512 DAPL_HASH_KEY hashValue; in dapls_hash_remove() local
523 hashValue = DAPL_DOHASH(key, p_table->tbl_size); in dapls_hash_remove()
527 if (dapl_hash_delete_element(&p_table->table[hashValue], key, p_data)) { in dapls_hash_remove()