Symbol: hashval
bin/sh/alias.c
249
unsigned int hashval;
bin/sh/alias.c
251
hashval = (unsigned char)*p << 4;
bin/sh/alias.c
253
hashval+= *p++;
bin/sh/alias.c
254
return (hashval % ATABSIZE);
bin/sh/exec.c
547
unsigned int hashval;
bin/sh/exec.c
549
hashval = (unsigned char)*p << 4;
bin/sh/exec.c
551
hashval += *p++;
bin/sh/exec.c
553
return (hashval % CMDTABLESIZE);
bin/sh/var.c
937
unsigned int hashval;
bin/sh/var.c
942
hashval = 0;
bin/sh/var.c
944
hashval = 2 * hashval + (unsigned char)*p++;
bin/sh/var.c
949
vpp = &vartab[hashval % VTABSIZE];
crypto/krb5/src/lib/crypto/krb/checksum_hmac_md5.c
46
krb5_data ds = empty_data(), hashval = empty_data();
crypto/krb5/src/lib/crypto/krb/checksum_hmac_md5.c
77
ret = alloc_data(&hashval, ctp->hash->hashsize);
crypto/krb5/src/lib/crypto/krb/checksum_hmac_md5.c
80
ret = ctp->hash->hash(hash_iov, num_data + 1, &hashval);
crypto/krb5/src/lib/crypto/krb/checksum_hmac_md5.c
86
iov.data = hashval;
crypto/krb5/src/lib/crypto/krb/checksum_hmac_md5.c
91
zapfree(hashval.data, hashval.length);
crypto/krb5/src/lib/krb5/rcache/t_rcfile2.c
78
uint64_t hashval;
crypto/krb5/src/lib/krb5/rcache/t_rcfile2.c
84
hashval = k5_siphash24(data, 4, seed);
crypto/krb5/src/lib/krb5/rcache/t_rcfile2.c
85
store_64_be(hashval, tag);
crypto/openssl/ssl/quic/quic_lcidm.c
76
unsigned long hashval = 0;
crypto/openssl/ssl/quic/quic_lcidm.c
91
memcpy(&hashval, digest, sizeof(hashval) < sizeof(digest) ? sizeof(hashval) : sizeof(digest));
crypto/openssl/ssl/quic/quic_lcidm.c
93
return hashval;
crypto/openssl/ssl/statem/statem_lib.c
2657
const unsigned char *hashval,
crypto/openssl/ssl/statem/statem_lib.c
2666
if (hashval == NULL) {
crypto/openssl/ssl/statem/statem_lib.c
2667
hashval = hashvaltmp;
crypto/openssl/ssl/statem/statem_lib.c
2688
|| !ssl3_finish_mac(s, hashval, hashlen)) {
crypto/openssl/ssl/statem/statem_local.h
71
const unsigned char *hashval,
crypto/openssl/ssl/tls13_enc.c
496
unsigned char hashval[EVP_MAX_MD_SIZE];
crypto/openssl/ssl/tls13_enc.c
497
unsigned char *hash = hashval;
crypto/openssl/ssl/tls13_enc.c
585
|| !EVP_DigestFinal_ex(mdctx, hashval, &hashlenui)) {
crypto/openssl/ssl/tls13_enc.c
596
hashval, hashlen,
crypto/openssl/ssl/tls13_enc.c
670
|| !ssl_handshake_hash(s, hashval, sizeof(hashval), &hashlen)) {
crypto/openssl/ssl/tls13_enc.c
684
hashval, hashlen, s->resumption_master_secret,
lib/libc/iconv/citrus_db.c
105
uint32_t hashval, num_entries;
lib/libc/iconv/citrus_db.c
116
hashval = dl->dl_hashval;
lib/libc/iconv/citrus_db.c
121
hashval = db->db_hashfunc(key)%num_entries;
lib/libc/iconv/citrus_db.c
123
hashval * _CITRUS_DB_ENTRY_SIZE;
lib/libc/iconv/citrus_db.c
125
dl->dl_hashval = hashval;
lib/libc/iconv/citrus_db.c
147
if (be32toh(dex->dex_hash_value) != hashval)
lib/libc/iconv/citrus_hash.h
47
#define _CITRUS_HASH_INSERT(head, elm, field, hashval) \
lib/libc/iconv/citrus_hash.h
48
LIST_INSERT_HEAD(&(head)->chh_table[hashval], elm, field)
lib/libc/iconv/citrus_hash.h
49
#define _CITRUS_HASH_SEARCH(head, elm, field, matchfunc, key, hashval) \
lib/libc/iconv/citrus_hash.h
51
LIST_FOREACH((elm), &(head)->chh_table[hashval], field) \
lib/libc/iconv/citrus_iconv.c
214
int hashval, ret = 0;
lib/libc/iconv/citrus_iconv.c
221
hashval = hash_func(convname);
lib/libc/iconv/citrus_iconv.c
223
convname, hashval);
lib/libc/iconv/citrus_iconv.c
240
_CITRUS_HASH_INSERT(&shared_pool, ci, ci_hash_entry, hashval);
lib/libc/iconv/citrus_mapper.c
319
int hashval, ret;
lib/libc/iconv/citrus_mapper.c
326
hashval = hash_func(mapname);
lib/libc/iconv/citrus_mapper.c
328
hashval);
lib/libc/iconv/citrus_mapper.c
358
_CITRUS_HASH_INSERT(&ma->ma_cache, cm, cm_entry, hashval);
libexec/rtld-elf/rtld.c
1323
const Elf32_Word *hashval;
libexec/rtld-elf/rtld.c
1645
hashval = &obj->chain_zero_gnu[obj->buckets_gnu[bkt]];
libexec/rtld-elf/rtld.c
1648
while ((*hashval++ & 1u) == 0);
libexec/rtld-elf/rtld.c
5202
const Elf32_Word *hashval;
libexec/rtld-elf/rtld.c
5228
hashval = &obj->chain_zero_gnu[bucket];
libexec/rtld-elf/rtld.c
5230
if (((*hashval ^ req->hash_gnu) >> 1) == 0) {
libexec/rtld-elf/rtld.c
5231
symnum = hashval - obj->chain_zero_gnu;
libexec/rtld-elf/rtld.c
5238
} while ((*hashval++ & 1) == 0);
sys/dev/liquidio/lio_core.c
279
uint32_t hashtype, hashval;
sys/dev/liquidio/lio_core.c
282
hashval = htobe32(*(uint32_t *)
sys/dev/liquidio/lio_core.c
292
hashval = htobe32(*(uint32_t *)
sys/dev/liquidio/lio_core.c
303
mbuf->m_pkthdr.flowid = hashval;
sys/fs/nfsserver/nfs_nfsdport.c
5134
uint32_t hashval;
sys/fs/nfsserver/nfs_nfsdport.c
5136
hashval = hash32_buf(&fhp->fh_fid, sizeof(struct fid), 0);
sys/fs/nfsserver/nfs_nfsdport.c
5137
return (hashval);
sys/fs/nfsserver/nfs_nfsdport.c
5146
uint32_t hashval;
sys/fs/nfsserver/nfs_nfsdport.c
5148
hashval = hash32_buf(sessionid, NFSX_V4SESSIONID, 0);
sys/fs/nfsserver/nfs_nfsdport.c
5149
return (hashval);
sys/kern/vfs_init.c
401
uint32_t hashval;
sys/kern/vfs_init.c
428
hashval = fnv_32_str(vfc->vfc_name, FNV1_32_INIT);
sys/kern/vfs_init.c
429
hashval &= 0xff;
sys/kern/vfs_init.c
434
if (hashval == tvfc->vfc_typenum) {
sys/kern/vfs_init.c
435
if (hashval == 255 && secondpass == 0) {
sys/kern/vfs_init.c
436
hashval = 1;
sys/kern/vfs_init.c
439
hashval++;
sys/kern/vfs_init.c
444
vfc->vfc_typenum = hashval;
sys/netinet/in_rss.c
114
uint32_t *hashval, uint32_t *hashtype)
sys/netinet/in_rss.c
125
*hashval = hash;
sys/netinet/in_rss.c
131
*hashval = hash;
sys/netinet/in_rss.c
137
*hashval = hash;
sys/netinet/in_rss.c
205
rss_mbuf_software_hash_v4(const struct mbuf *m, int dir, uint32_t *hashval,
sys/netinet/in_rss.c
324
hashval,
sys/netinet/in_rss.c
338
hashval,
sys/netinet/in_rss.c
346
hashval,
sys/netinet/in_rss.h
47
uint32_t *hashval, uint32_t *hashtype);
sys/netinet/in_rss.h
50
int proto, uint32_t *hashval,
sys/netinet/ip_fw.h
831
uint32_t hashval; /* hash value */
sys/netinet6/in6_rss.c
115
uint32_t *hashval, uint32_t *hashtype)
sys/netinet6/in6_rss.c
126
*hashval = hash;
sys/netinet6/in6_rss.c
132
*hashval = hash;
sys/netinet6/in6_rss.c
138
*hashval = hash;
sys/netinet6/in6_rss.c
208
rss_mbuf_software_hash_v6(const struct mbuf *m, int dir, uint32_t *hashval,
sys/netinet6/in6_rss.c
350
hashval,
sys/netinet6/in6_rss.c
363
hashval,
sys/netinet6/in6_rss.c
371
hashval,
sys/netinet6/in6_rss.h
48
uint32_t *hashval, uint32_t *hashtype);
sys/netinet6/in6_rss.h
51
u_short dst_port, int proto, uint32_t *hashval,
sys/netpfil/ipfw/ip_fw_dynamic.c
1067
bucket = DYN_BUCKET(info->hashval, V_curr_dyn_buckets);
sys/netpfil/ipfw/ip_fw_dynamic.c
1133
uint32_t ruleid, uint32_t rulenum, uint32_t hashval)
sys/netpfil/ipfw/ip_fw_dynamic.c
1138
bucket = DYN_BUCKET(hashval, V_curr_dyn_buckets);
sys/netpfil/ipfw/ip_fw_dynamic.c
1214
bucket = DYN_BUCKET(info->hashval, V_curr_dyn_buckets);
sys/netpfil/ipfw/ip_fw_dynamic.c
1282
const void *rule, uint32_t ruleid, uint32_t rulenum, uint32_t hashval)
sys/netpfil/ipfw/ip_fw_dynamic.c
1287
bucket = DYN_BUCKET(hashval, V_curr_dyn_buckets);
sys/netpfil/ipfw/ip_fw_dynamic.c
133
uint32_t hashval; /* hash value used for hash resize */
sys/netpfil/ipfw/ip_fw_dynamic.c
1390
info->hashval = hash_packet(&args->f_id);
sys/netpfil/ipfw/ip_fw_dynamic.c
1508
uint32_t hashval)
sys/netpfil/ipfw/ip_fw_dynamic.c
1527
limit->hashval = hashval;
sys/netpfil/ipfw/ip_fw_dynamic.c
1535
uint32_t hashval, uint16_t fibnum)
sys/netpfil/ipfw/ip_fw_dynamic.c
1554
data->hashval = hashval;
sys/netpfil/ipfw/ip_fw_dynamic.c
1589
const struct ipfw_flow_id *pkt, uint32_t hashval, uint32_t version,
sys/netpfil/ipfw/ip_fw_dynamic.c
1596
bucket = DYN_BUCKET(hashval, V_curr_dyn_buckets);
sys/netpfil/ipfw/ip_fw_dynamic.c
1617
limit = dyn_alloc_parent(rule, ruleid, rulenum, hashval);
sys/netpfil/ipfw/ip_fw_dynamic.c
164
uint32_t hashval; /* hash value used for hash resize */
sys/netpfil/ipfw/ip_fw_dynamic.c
1643
uint32_t hashval, struct ipfw_dyn_info *info, uint16_t fibnum,
sys/netpfil/ipfw/ip_fw_dynamic.c
1650
bucket = DYN_BUCKET(hashval, V_curr_dyn_buckets);
sys/netpfil/ipfw/ip_fw_dynamic.c
1654
info->hashval != hashval ||
sys/netpfil/ipfw/ip_fw_dynamic.c
1668
pktlen, hashval, fibnum);
sys/netpfil/ipfw/ip_fw_dynamic.c
1720
const struct ipfw_flow_id *pkt, uint32_t zoneid, uint32_t hashval,
sys/netpfil/ipfw/ip_fw_dynamic.c
1727
bucket = DYN_BUCKET(hashval, V_curr_dyn_buckets);
sys/netpfil/ipfw/ip_fw_dynamic.c
1748
limit = dyn_alloc_parent(rule, ruleid, rulenum, hashval);
sys/netpfil/ipfw/ip_fw_dynamic.c
1774
int pktlen, uint32_t hashval, struct ipfw_dyn_info *info,
sys/netpfil/ipfw/ip_fw_dynamic.c
1781
bucket = DYN_BUCKET(hashval, V_curr_dyn_buckets);
sys/netpfil/ipfw/ip_fw_dynamic.c
1785
info->hashval != hashval ||
sys/netpfil/ipfw/ip_fw_dynamic.c
1799
pktlen, hashval, fibnum);
sys/netpfil/ipfw/ip_fw_dynamic.c
1823
struct ip_fw *rule, uint32_t hashval, uint32_t limit, uint32_t kidx)
sys/netpfil/ipfw/ip_fw_dynamic.c
1832
bucket = DYN_BUCKET(hashval, V_curr_dyn_buckets);
sys/netpfil/ipfw/ip_fw_dynamic.c
1848
rule->rulenum, pkt, hashval, version, kidx);
sys/netpfil/ipfw/ip_fw_dynamic.c
1871
rule->rulenum, pkt, zoneid, hashval, version,
sys/netpfil/ipfw/ip_fw_dynamic.c
1920
uint32_t hashval, parent_hashval, ruleid, rulenum;
sys/netpfil/ipfw/ip_fw_dynamic.c
1979
hashval = hash_packet(pkt);
sys/netpfil/ipfw/ip_fw_dynamic.c
1982
ulp, pktlen, hashval, info, fibnum, kidx, type);
sys/netpfil/ipfw/ip_fw_dynamic.c
1986
zoneid, ulp, pktlen, hashval, info, fibnum, kidx, type);
sys/netpfil/ipfw/ip_fw_dynamic.c
2726
DYN_RELINK_STATES(s4, data->hashval, bucket, ipv4, ipv4);
sys/netpfil/ipfw/ip_fw_dynamic.c
2727
DYN_RELINK_STATES(s4, limit->hashval, bucket, ipv4_parent,
sys/netpfil/ipfw/ip_fw_dynamic.c
2730
DYN_RELINK_STATES(s6, data->hashval, bucket, ipv6, ipv6);
sys/netpfil/ipfw/ip_fw_dynamic.c
2731
DYN_RELINK_STATES(s6, limit->hashval, bucket, ipv6_parent,
sys/netpfil/ipfw/ip_fw_dynamic.c
2984
dst->hashval = p->hashval;
sys/netpfil/ipfw/ip_fw_dynamic.c
3013
dst->hashval = data->hashval;
sys/netpfil/ipfw/ip_fw_private.h
208
uint32_t hashval; /* hash value */
usr.bin/mkstr/mkstr.c
269
long hashval = 0;
usr.bin/mkstr/mkstr.c
275
hashval = (hashval << 1) + *cp++;
usr.bin/mkstr/mkstr.c
276
i = hashval % NBUCKETS;
usr.bin/mkstr/mkstr.c
281
if (hp->hval == hashval) {
usr.bin/mkstr/mkstr.c
295
hp->hval = hashval;
usr.sbin/inetd/inetd.c
232
static int hashval(char *p, int len);
usr.sbin/inetd/inetd.c
2352
hv = hashval((char *)&((struct sockaddr_in *)&ss)->sin_addr,
usr.sbin/inetd/inetd.c
2357
hv = hashval((char *)&((struct sockaddr_in6 *)&ss)->sin6_addr,
usr.sbin/inetd/inetd.c
2528
hv = hashval((char *)&pid, sizeof(pid));