Home
last modified time | relevance | path

Searched refs:bytoff (Results 1 – 1 of 1) sorted by relevance

/xnu-11417.121.6/bsd/net/
H A Dif.c603 u_int32_t bytoff, bitoff; in if_clone_create() local
616 bytoff = bitoff = 0; in if_clone_create()
624 while ((bytoff < ifc->ifc_bmlen) && in if_clone_create()
625 (ifc->ifc_units[bytoff] == 0xff)) { in if_clone_create()
626 bytoff++; in if_clone_create()
628 if (bytoff >= ifc->ifc_bmlen) { in if_clone_create()
632 while ((ifc->ifc_units[bytoff] & (1 << bitoff)) != 0) { in if_clone_create()
635 unit = (bytoff << 3) + bitoff; in if_clone_create()
654 bytoff = unit >> 3; in if_clone_create()
655 bitoff = unit - (bytoff << 3); in if_clone_create()
[all …]