Lines Matching refs:hwidth
108 uint16_t hwidth; member
140 for (_i = 0; _i < (1 << (_trunk)->hwidth); _i++) \
168 !(_cond) && _i < (1 << (_trunk)->hwidth); \
404 KASSERT(trunk->hwidth == 0 && trunk->hash == NULL, in vlan_inithash()
407 trunk->hwidth = VLAN_DEF_HWIDTH; in vlan_inithash()
408 n = 1 << trunk->hwidth; in vlan_inithash()
421 KASSERT(trunk->hwidth > 0, ("%s: hwidth not positive", __func__)); in vlan_freehash()
422 for (i = 0; i < (1 << trunk->hwidth); i++) in vlan_freehash()
428 trunk->hwidth = trunk->hmask = 0; in vlan_freehash()
438 KASSERT(trunk->hwidth > 0, ("%s: hwidth not positive", __func__)); in vlan_inshash()
440 b = 1 << trunk->hwidth; in vlan_inshash()
468 KASSERT(trunk->hwidth > 0, ("%s: hwidth not positive", __func__)); in vlan_remhash()
470 b = 1 << (trunk->hwidth - 1); in vlan_remhash()
496 KASSERT(trunk->hwidth > 0, ("%s: hwidth not positive", __func__)); in vlan_growhash()
504 hwidth2 = trunk->hwidth + howmuch; in vlan_growhash()
505 n = 1 << trunk->hwidth; in vlan_growhash()
523 trunk->hwidth = hwidth2; in vlan_growhash()
552 for (i = 0; i < (1 << trunk->hwidth); i++) {