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

/illumos-gate/usr/src/common/lzma/
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; \
36 /* #define HASH_ZIP_CALC hashValue = ((cur[0] | ((UInt32)cur[1] << 8)) ^ p->crc[cur[2]]) & 0xFFFF; */
37 #define HASH_ZIP_CALC hashValue = ((cur[2] | ((UInt32)cur[0] << 8)) ^ p->crc[cur[1]]) & 0xFFFF;
H A DLzFind.c463 UInt32 lenLimit; UInt32 hashValue; const Byte *cur; UInt32 curMatch; \
484 curMatch = p->hash[hashValue];
485 p->hash[hashValue] = p->pos;
495 curMatch = p->hash[hashValue];
496 p->hash[hashValue] = p->pos;
509 curMatch = p->hash[kFix3HashSize + hashValue];
512 p->hash[kFix3HashSize + hashValue] = p->pos;
543 curMatch = p->hash[kFix4HashSize + hashValue];
547 p->hash[kFix4HashSize + hashValue] = p->pos;
590 curMatch = p->hash[kFix4HashSize + hashValue];
[all...]
/illumos-gate/usr/src/lib/udapl/udapl_tavor/common/
H A Ddapl_hash.c186 DAPL_HASH_KEY hashValue; local
224 hashValue = DAPL_DOHASH(key, p_table->tbl_size);
225 if (NO_DATUM(p_table->table[hashValue].datum)) {
229 p_table->table[hashValue].key = key;
230 p_table->table[hashValue].datum = datum;
231 p_table->table[hashValue].next_element = 0;
245 for (lastelement = &p_table->table[hashValue];
512 DAPL_HASH_KEY hashValue; local
523 hashValue = DAPL_DOHASH(key, p_table->tbl_size);
527 if (dapl_hash_delete_element(&p_table->table[hashValue], ke
[all...]

Completed in 52 milliseconds