Lines Matching refs:hashes
656 uint32_t h, *hashes = arg; in re_hash_maddr() local
660 hashes[0] |= (1 << h); in re_hash_maddr()
662 hashes[1] |= (1 << (h - 32)); in re_hash_maddr()
674 uint32_t h, hashes[2] = { 0, 0 }; in re_set_rxmode() local
696 hashes[0] = hashes[1] = 0xffffffff; in re_set_rxmode()
700 if_foreach_llmaddr(ifp, re_hash_maddr, hashes); in re_set_rxmode()
702 if (hashes[0] != 0 || hashes[1] != 0) { in re_set_rxmode()
711 h = bswap32(hashes[0]); in re_set_rxmode()
712 hashes[0] = bswap32(hashes[1]); in re_set_rxmode()
713 hashes[1] = h; in re_set_rxmode()
720 hashes[0] = 0xffffffff; in re_set_rxmode()
721 hashes[1] = 0xffffffff; in re_set_rxmode()
725 CSR_WRITE_4(sc, RL_MAR0, hashes[0]); in re_set_rxmode()
726 CSR_WRITE_4(sc, RL_MAR4, hashes[1]); in re_set_rxmode()