Lines Matching defs:hash
551 * spider_net_get_multicast_hash - generates hash for multicast filter table
555 * returns the hash value.
557 * spider_net_get_multicast_hash calculates a hash value for a given multicast
564 u8 hash;
575 hash = (crc >> 27);
576 hash <<= 3;
577 hash |= crc & 7;
578 hash &= 0xff;
580 return hash;
595 u8 hash;
610 /* well, we know, what the broadcast hash value is: it's xfd
611 hash = spider_net_get_multicast_hash(netdev, netdev->broadcast); */
615 hash = spider_net_get_multicast_hash(netdev, ha->addr);
616 __set_bit(hash, bitmask);