| /src/sys/dev/usb/ | 
| if_axen.c | 239 	uint8_t hashtbl[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };  local in function:axen_uno_mcast 275 				memset(hashtbl, 0, sizeof(hashtbl));
 281 			hashtbl[h / 8] |= 1 << (h % 8);
 291 	axen_cmd(un, AXEN_CMD_MAC_WRITE_FILTER, 8, AXEN_FILTER_MULTI, hashtbl);
 
 | 
| if_smsc.c | 422 	uint32_t hashtbl[2] = { 0, 0 };  local in function:smsc_uno_mcast 451 		hashtbl[hash >> 5] |= 1 << (hash & 0x1F);
 467 	smsc_writereg(un, SMSC_HASHH, hashtbl[1]);
 468 	smsc_writereg(un, SMSC_HASHL, hashtbl[0]);
 
 | 
| if_aue.c | 617 	uint8_t hashtbl[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };  local in function:aue_uno_mcast 641 		hashtbl[h >> 3] |= 1 << (h & 0x7);
 651 		aue_csr_write_1(sc, AUE_MAR0 + i, hashtbl[i]);
 
 | 
| if_mue.c | 1004 	uint32_t hashtbl[MUE_DP_SEL_VHF_HASH_LEN];  local in function:mue_uno_mcast 1013 	memset(hashtbl, 0, sizeof(hashtbl));
 1042 				memset(hashtbl, 0, sizeof(hashtbl));
 1056 				hashtbl[h / 32] |= 1 << (h % 32);
 1080 	    MUE_DP_SEL_VHF_HASH_LEN, hashtbl);
 
 | 
| /src/usr.bin/vmstat/ | 
| vmstat.c | 1908 	int		hashtbl;	/* nlist index for hash table */  member in struct:kernel_hash 1958 			    hashnl[curhash->hashtbl].n_value == 0)
 1972 			    hashnl[curhash->hashtbl].n_value != 0)
 1990 		    hashnl[curhash->hashtbl].n_value == 0)
 2013 		deref_kptr((void *)hashnl[curhash->hashtbl].n_value,
 2015 		    hashnl[curhash->hashtbl].n_name);
 2020 			    hashnl[curhash->hashtbl].n_name + 1, hashaddr,
 2032 		    hashnl[curhash->hashtbl].n_name);
 
 |