Searched defs:hval (Results 1 - 2 of 2) sorted by relevance

/bind-9.11.3/lib/isc/
H A Dhash.c443 isc_uint32_t hval; local
452 hval = ISC_UNLIKELY(previous_hashp != NULL) ?
456 return (hval);
472 hval ^= bp[0];
473 hval *= 16777619;
474 hval ^= bp[1];
475 hval *= 16777619;
476 hval ^= bp[2];
477 hval *= 16777619;
478 hval
512 isc_uint32_t hval; local
[all...]
/bind-9.11.3/lib/dns/
H A Drrl.c248 get_bin(dns_rrl_hash_t *hash, unsigned int hval) { argument
250 return (&hash->bins[hval % hash->length]);
368 isc_uint32_t hval; local
371 hval = key->w[0];
373 hval = key->w[i] + (hval<<1);
375 return (hval);
493 isc_uint32_t hval; local
500 hval = hash_key(&key);
505 new_bin = get_bin(rrl->hash, hval);
[all...]

Completed in 27 milliseconds