Searched refs:nmc (Results 1 – 5 of 5) sorted by relevance
| /freebsd-9-stable/sys/dev/malo/ |
| D | if_malohal.c | 897 malo_hal_setmcast(struct malo_hal *mh, int nmc, const uint8_t macs[]) in malo_hal_setmcast() argument 902 if (nmc > MALO_HAL_MCAST_MAX) in malo_hal_setmcast() 908 memcpy(cmd->maclist, macs, nmc * IEEE80211_ADDR_LEN); in malo_hal_setmcast() 909 cmd->numaddr = htole16(nmc); in malo_hal_setmcast()
|
| D | if_malo.c | 1578 int nmc; in malo_setmcastfilter() local 1581 nmc = 0; in malo_setmcastfilter() 1592 if (nmc == MALO_HAL_MCAST_MAX) { in malo_setmcastfilter() 1600 mp += IEEE80211_ADDR_LEN, nmc++; in malo_setmcastfilter() 1604 malo_hal_setmcast(sc->malo_mh, nmc, macs); in malo_setmcastfilter()
|
| /freebsd-9-stable/sys/dev/mwl/ |
| D | mwlhal.h | 408 int mwl_hal_setmcast(struct mwl_hal *mh, int nmc, const uint8_t macs[]);
|
| D | mwlhal.c | 1164 mwl_hal_setmcast(struct mwl_hal *mh0, int nmc, const uint8_t macs[]) in mwl_hal_setmcast() argument 1170 if (nmc > MWL_HAL_MCAST_MAX) in mwl_hal_setmcast() 1176 memcpy(pCmd->MACList, macs, nmc*IEEE80211_ADDR_LEN); in mwl_hal_setmcast() 1177 pCmd->NumOfAdrs = htole16(nmc); in mwl_hal_setmcast()
|
| D | if_mwl.c | 1794 int nmc; in mwl_setmcastfilter() 1797 nmc = 0; in mwl_setmcastfilter() 1801 if (nmc == MWL_HAL_MCAST_MAX || in mwl_setmcastfilter() 1807 mp += IEEE80211_ADDR_LEN, nmc++; in mwl_setmcastfilter() 1811 mwl_hal_setmcast(sc->sc_mh, nmc, macs); in mwl_setmcastfilter()
|