Symbol: hashes
lib/libcrypto/x509/by_dir.c
176
sk_BY_DIR_HASH_pop_free(ent->hashes, by_dir_hash_free);
lib/libcrypto/x509/by_dir.c
235
ent->hashes = sk_BY_DIR_HASH_new(by_dir_hash_cmp);
lib/libcrypto/x509/by_dir.c
237
if (ent->dir == NULL || ent->hashes == NULL) {
lib/libcrypto/x509/by_dir.c
315
idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp);
lib/libcrypto/x509/by_dir.c
317
hent = sk_BY_DIR_HASH_value(ent->hashes, idx);
lib/libcrypto/x509/by_dir.c
370
idx = sk_BY_DIR_HASH_find(ent->hashes, &htmp);
lib/libcrypto/x509/by_dir.c
371
hent = sk_BY_DIR_HASH_value(ent->hashes, idx);
lib/libcrypto/x509/by_dir.c
383
if (!sk_BY_DIR_HASH_push(ent->hashes, hent)) {
lib/libcrypto/x509/by_dir.c
80
STACK_OF(BY_DIR_HASH) *hashes;
regress/sbin/isakmpd/prf/prftest.c
40
int test_prf (char *, enum hashes, char *, int, char *, int, char *);
regress/sbin/isakmpd/prf/prftest.c
78
test_prf (char *test, enum hashes hash, char *key, int klen,
sbin/isakmpd/hash.c
147
static struct hash hashes[] = {
sbin/isakmpd/hash.c
192
hash_get(enum hashes hashtype)
sbin/isakmpd/hash.c
199
for (i = 0; i < sizeof hashes / sizeof hashes[0]; i++)
sbin/isakmpd/hash.c
200
if (hashtype == hashes[i].type)
sbin/isakmpd/hash.c
201
return &hashes[i];
sbin/isakmpd/hash.h
55
enum hashes type;
sbin/isakmpd/hash.h
75
extern struct hash *hash_get(enum hashes);
sbin/isakmpd/ipsec.c
1251
static enum hashes
sys/dev/ic/atw.c
2022
u_int32_t hashes[2];
sys/dev/ic/atw.c
2045
hashes[0] = hashes[1] = 0x0;
sys/dev/ic/atw.c
2056
hashes[hash >> 5] |= 1 << (hash & 0x1f);
sys/dev/ic/atw.c
2066
hashes[0] = hashes[1] = 0xffffffff;
sys/dev/ic/atw.c
2069
ATW_WRITE(sc, ATW_MAR0, hashes[0]);
sys/dev/ic/atw.c
2070
ATW_WRITE(sc, ATW_MAR1, hashes[1]);
sys/dev/ic/dc.c
1001
hashes[0] |= (1 << h);
sys/dev/ic/dc.c
1003
hashes[1] |= (1 << (h - 32));
sys/dev/ic/dc.c
1014
CSR_WRITE_4(sc, DC_AL_MAR0, hashes[0]);
sys/dev/ic/dc.c
1015
CSR_WRITE_4(sc, DC_AL_MAR1, hashes[1]);
sys/dev/ic/dc.c
1025
u_int32_t hashes[2];
sys/dev/ic/dc.c
1030
bzero(hashes, sizeof(hashes));
sys/dev/ic/dc.c
1051
hashes[0] |= (1 << h);
sys/dev/ic/dc.c
1053
hashes[1] |= (1 << (h - 32));
sys/dev/ic/dc.c
1068
CSR_WRITE_4(sc, DC_AX_FILTDATA, hashes[0]);
sys/dev/ic/dc.c
1070
CSR_WRITE_4(sc, DC_AX_FILTDATA, hashes[1]);
sys/dev/ic/dc.c
978
u_int32_t hashes[2];
sys/dev/ic/dc.c
982
bzero(hashes, sizeof(hashes));
sys/dev/ic/re.c
578
u_int32_t hashes[2];
sys/dev/ic/re.c
600
hashes[0] = hashes[1] = 0xFFFFFFFF;
sys/dev/ic/re.c
604
bzero(hashes, sizeof(hashes));
sys/dev/ic/re.c
612
hashes[0] |= (1 << h);
sys/dev/ic/re.c
614
hashes[1] |= (1 << (h - 32));
sys/dev/ic/re.c
627
CSR_WRITE_4(sc, RL_MAR0, swap32(hashes[1]));
sys/dev/ic/re.c
628
CSR_WRITE_4(sc, RL_MAR4, swap32(hashes[0]));
sys/dev/ic/re.c
630
CSR_WRITE_4(sc, RL_MAR0, hashes[0]);
sys/dev/ic/re.c
631
CSR_WRITE_4(sc, RL_MAR4, hashes[1]);
sys/dev/ic/rtl81x9.c
443
u_int32_t hashes[2];
sys/dev/ic/rtl81x9.c
465
hashes[0] = hashes[1] = 0xFFFFFFFF;
sys/dev/ic/rtl81x9.c
469
bzero(hashes, sizeof(hashes));
sys/dev/ic/rtl81x9.c
477
hashes[0] |= (1 << h);
sys/dev/ic/rtl81x9.c
479
hashes[1] |= (1 << (h - 32));
sys/dev/ic/rtl81x9.c
485
CSR_WRITE_4(sc, RL_MAR0, hashes[0]);
sys/dev/ic/rtl81x9.c
486
CSR_WRITE_4(sc, RL_MAR4, hashes[1]);
sys/dev/ic/rtw.c
2281
u_int32_t hashes[2] = { 0, 0 };
sys/dev/ic/rtw.c
2332
hashes[hash >> 5] |= (1 << (hash & 0x1f));
sys/dev/ic/rtw.c
2338
if (~(hashes[0] & hashes[1]) == 0)
sys/dev/ic/rtw.c
2344
hashes[0] = hashes[1] = 0xffffffff;
sys/dev/ic/rtw.c
2347
RTW_WRITE(regs, RTW_MAR0, hashes[0]);
sys/dev/ic/rtw.c
2348
RTW_WRITE(regs, RTW_MAR1, hashes[1]);
sys/dev/pci/if_bge.c
1579
u_int8_t hashes[16];
sys/dev/pci/if_bge.c
1585
memset(hashes, 0x00, sizeof(hashes));
sys/dev/pci/if_bge.c
1592
memset(hashes, 0xff, sizeof(hashes));
sys/dev/pci/if_bge.c
1598
setbit(hashes, h & 0x7F);
sys/dev/pci/if_bge.c
1605
hashes, sizeof(hashes));
sys/dev/pci/if_bnx.c
5179
u_int32_t hashes[NUM_MC_HASH_REGISTERS] = { 0, 0, 0, 0, 0, 0, 0, 0 };
sys/dev/pci/if_bnx.c
5226
hashes[(h & 0xE0) >> 5] |= 1 << (h & 0x1F);
sys/dev/pci/if_bnx.c
5233
hashes[i]);
sys/dev/pci/if_lge.c
310
u_int32_t h = 0, hashes[2] = { 0, 0 };
sys/dev/pci/if_lge.c
334
hashes[0] |= (1 << h);
sys/dev/pci/if_lge.c
336
hashes[1] |= (1 << (h - 32));
sys/dev/pci/if_lge.c
340
CSR_WRITE_4(sc, LGE_MAR0, hashes[0]);
sys/dev/pci/if_lge.c
341
CSR_WRITE_4(sc, LGE_MAR1, hashes[1]);
sys/dev/pci/if_lii.c
1110
uint32_t hashes[2];
sys/dev/pci/if_lii.c
1128
hashes[0] = hashes[1] = 0xFFFFFFFF;
sys/dev/pci/if_lii.c
1131
bzero(hashes, sizeof(hashes));
sys/dev/pci/if_lii.c
1138
hashes[((crc >> 31) & 0x1)] |=
sys/dev/pci/if_lii.c
1145
LII_WRITE_4(sc, LII_MHT, hashes[0]);
sys/dev/pci/if_lii.c
1146
LII_WRITE_4(sc, LII_MHT + 4, hashes[1]);
sys/dev/pci/if_msk.c
487
u_int32_t hashes[2];
sys/dev/pci/if_msk.c
506
hashes[0] = hashes[1] = 0xFFFFFFFF;
sys/dev/pci/if_msk.c
510
bzero(hashes, sizeof(hashes));
sys/dev/pci/if_msk.c
518
hashes[0] |= (1 << h);
sys/dev/pci/if_msk.c
520
hashes[1] |= (1 << (h - 32));
sys/dev/pci/if_msk.c
526
SK_YU_WRITE_2(sc_if, YUKON_MCAH1, hashes[0] & 0xffff);
sys/dev/pci/if_msk.c
527
SK_YU_WRITE_2(sc_if, YUKON_MCAH2, (hashes[0] >> 16) & 0xffff);
sys/dev/pci/if_msk.c
528
SK_YU_WRITE_2(sc_if, YUKON_MCAH3, hashes[1] & 0xffff);
sys/dev/pci/if_msk.c
529
SK_YU_WRITE_2(sc_if, YUKON_MCAH4, (hashes[1] >> 16) & 0xffff);
sys/dev/pci/if_rge.c
1580
uint32_t hashes[2];
sys/dev/pci/if_rge.c
1599
hashes[0] = hashes[1] = 0xffffffff;
sys/dev/pci/if_rge.c
1603
memset(hashes, 0, sizeof(hashes));
sys/dev/pci/if_rge.c
1611
hashes[0] |= (1 << h);
sys/dev/pci/if_rge.c
1613
hashes[1] |= (1 << (h - 32));
sys/dev/pci/if_rge.c
1620
RGE_WRITE_4(sc, RGE_MAR0, swap32(hashes[1]));
sys/dev/pci/if_rge.c
1621
RGE_WRITE_4(sc, RGE_MAR4, swap32(hashes[0]));
sys/dev/pci/if_se.c
445
uint32_t crc, hashes[2];
sys/dev/pci/if_se.c
463
hashes[0] = hashes[1] = 0xffffffff;
sys/dev/pci/if_se.c
466
hashes[0] = hashes[1] = 0;
sys/dev/pci/if_se.c
472
hashes[crc >> 31] |= 1 << ((crc >> 26) & 0x1f);
sys/dev/pci/if_se.c
479
CSR_WRITE_4(sc, RxHashTable, hashes[0]);
sys/dev/pci/if_se.c
480
CSR_WRITE_4(sc, RxHashTable2, hashes[1]);
sys/dev/pci/if_sis.c
859
u_int16_t hashes[16];
sys/dev/pci/if_sis.c
893
hashes[i] = ~0;
sys/dev/pci/if_sis.c
896
hashes[i] = 0;
sys/dev/pci/if_sis.c
902
hashes[h >> 4] |= 1 << (h & 0xf);
sys/dev/pci/if_sis.c
910
CSR_WRITE_4(sc, SIS_RXFILT_DATA, hashes[i]);
sys/dev/pci/if_sk.c
420
u_int32_t reg, hashes[2];
sys/dev/pci/if_sk.c
444
hashes[0] = hashes[1] = 0xFFFFFFFF;
sys/dev/pci/if_sk.c
448
bzero(hashes, sizeof(hashes));
sys/dev/pci/if_sk.c
456
hashes[0] |= (1 << h);
sys/dev/pci/if_sk.c
458
hashes[1] |= (1 << (h - 32));
sys/dev/pci/if_sk.c
464
SK_XM_WRITE_4(sc_if, XM_MAR0, hashes[0]);
sys/dev/pci/if_sk.c
465
SK_XM_WRITE_4(sc_if, XM_MAR2, hashes[1]);
sys/dev/pci/if_sk.c
476
u_int32_t hashes[2];
sys/dev/pci/if_sk.c
495
hashes[0] = hashes[1] = 0xFFFFFFFF;
sys/dev/pci/if_sk.c
499
bzero(hashes, sizeof(hashes));
sys/dev/pci/if_sk.c
507
hashes[0] |= (1 << h);
sys/dev/pci/if_sk.c
509
hashes[1] |= (1 << (h - 32));
sys/dev/pci/if_sk.c
515
SK_YU_WRITE_2(sc_if, YUKON_MCAH1, hashes[0] & 0xffff);
sys/dev/pci/if_sk.c
516
SK_YU_WRITE_2(sc_if, YUKON_MCAH2, (hashes[0] >> 16) & 0xffff);
sys/dev/pci/if_sk.c
517
SK_YU_WRITE_2(sc_if, YUKON_MCAH3, hashes[1] & 0xffff);
sys/dev/pci/if_sk.c
518
SK_YU_WRITE_2(sc_if, YUKON_MCAH4, (hashes[1] >> 16) & 0xffff);
sys/dev/pci/if_ste.c
497
u_int32_t rxmode, hashes[2];
sys/dev/pci/if_ste.c
504
bzero(hashes, sizeof(hashes));
sys/dev/pci/if_ste.c
528
hashes[0] |= (1 << h);
sys/dev/pci/if_ste.c
530
hashes[1] |= (1 << (h - 32));
sys/dev/pci/if_ste.c
536
CSR_WRITE_2(sc, STE_MAR0, hashes[0] & 0xFFFF);
sys/dev/pci/if_ste.c
537
CSR_WRITE_2(sc, STE_MAR1, (hashes[0] >> 16) & 0xFFFF);
sys/dev/pci/if_ste.c
538
CSR_WRITE_2(sc, STE_MAR2, hashes[1] & 0xFFFF);
sys/dev/pci/if_ste.c
539
CSR_WRITE_2(sc, STE_MAR3, (hashes[1] >> 16) & 0xFFFF);
sys/dev/pci/if_tl.c
798
u_int32_t hashes[2];
sys/dev/pci/if_tl.c
802
bzero(hashes, sizeof(hashes));
sys/dev/pci/if_tl.c
810
hashes[0] = hashes[1] = 0xffffffff;
sys/dev/pci/if_tl.c
817
hashes[0] |= (1 << h);
sys/dev/pci/if_tl.c
819
hashes[1] |= (1 << (h - 32));
sys/dev/pci/if_tl.c
825
tl_dio_write32(sc, TL_HASH1, hashes[0]);
sys/dev/pci/if_tl.c
826
tl_dio_write32(sc, TL_HASH2, hashes[1]);
sys/dev/pci/if_vge.c
468
u_int32_t h = 0, hashes[2];
sys/dev/pci/if_vge.c
476
bzero(hashes, sizeof(hashes));
sys/dev/pci/if_vge.c
492
hashes[0] = hashes[1] = 0xFFFFFFFF;
sys/dev/pci/if_vge.c
499
hashes[h >> 5] |= 1 << (h & 0x1f);
sys/dev/pci/if_vge.c
514
CSR_WRITE_4(sc, VGE_MAR0, hashes[0]);
sys/dev/pci/if_vge.c
515
CSR_WRITE_4(sc, VGE_MAR1, hashes[1]);
sys/dev/pci/if_vr.c
333
u_int32_t hashes[2];
sys/dev/pci/if_vr.c
353
hashes[0] = hashes[1] = 0xFFFFFFFF;
sys/dev/pci/if_vr.c
357
bzero(hashes, sizeof(hashes));
sys/dev/pci/if_vr.c
365
hashes[0] |= (1 << h);
sys/dev/pci/if_vr.c
367
hashes[1] |= (1 << (h - 32));
sys/dev/pci/if_vr.c
373
CSR_WRITE_4(sc, VR_MAR0, hashes[0]);
sys/dev/pci/if_vr.c
374
CSR_WRITE_4(sc, VR_MAR1, hashes[1]);
sys/dev/pci/if_wb.c
499
u_int32_t hashes[2] = { 0, 0 };
sys/dev/pci/if_wb.c
530
hashes[0] |= (1 << h);
sys/dev/pci/if_wb.c
532
hashes[1] |= (1 << (h - 32));
sys/dev/pci/if_wb.c
542
CSR_WRITE_4(sc, WB_MAR0, hashes[0]);
sys/dev/pci/if_wb.c
543
CSR_WRITE_4(sc, WB_MAR1, hashes[1]);
sys/dev/usb/if_udav.c
698
u_int8_t hashes[8];
sys/dev/usb/if_udav.c
707
memset(hashes, 0x00, sizeof(hashes));
sys/dev/usb/if_udav.c
716
hashes[7] |= 0x80; /* broadcast address */
sys/dev/usb/if_udav.c
724
hashes[h>>3] |= 1 << (h & 0x7);
sys/dev/usb/if_udav.c
730
udav_csr_write(sc, UDAV_MAR, hashes, sizeof(hashes));
sys/dev/usb/if_ure.c
865
uint32_t hashes[2] = { 0, 0 };
sys/dev/usb/if_ure.c
887
hashes[0] = hashes[1] = 0xffffffff;
sys/dev/usb/if_ure.c
896
hashes[0] |= (1 << hash);
sys/dev/usb/if_ure.c
898
hashes[1] |= (1 << (hash - 32));
sys/dev/usb/if_ure.c
903
hash = swap32(hashes[0]);
sys/dev/usb/if_ure.c
904
hashes[0] = swap32(hashes[1]);
sys/dev/usb/if_ure.c
905
hashes[1] = hash;
sys/dev/usb/if_ure.c
909
hashes, sizeof(hashes));
sys/dev/usb/if_url.c
550
u_int32_t hashes[2];
sys/dev/usb/if_url.c
562
bzero(hashes, sizeof(hashes));
sys/dev/usb/if_url.c
586
hashes[0] |= (1 << h);
sys/dev/usb/if_url.c
588
hashes[1] |= (1 << (h - 32));
sys/dev/usb/if_url.c
594
url_csr_write_4(sc, URL_MAR0, hashes[0]);
sys/dev/usb/if_url.c
595
url_csr_write_4(sc, URL_MAR4, hashes[1]);