Searched refs:bytoff (Results 1 – 1 of 1) sorted by relevance
509 u_int32_t bytoff, bitoff; in if_clone_create() local522 bytoff = bitoff = 0; in if_clone_create()528 while ((bytoff < ifc->ifc_bmlen) && in if_clone_create()529 (ifc->ifc_units[bytoff] == 0xff)) { in if_clone_create()530 bytoff++; in if_clone_create()532 if (bytoff >= ifc->ifc_bmlen) { in if_clone_create()535 while ((ifc->ifc_units[bytoff] & (1 << bitoff)) != 0) { in if_clone_create()538 unit = (bytoff << 3) + bitoff; in if_clone_create()553 bytoff = unit >> 3; in if_clone_create()554 bitoff = unit - (bytoff << 3); in if_clone_create()[all …]