Home
last modified time | relevance | path

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

/freebsd/sys/kern/
H A Dsubr_unit.c199 #define NBITS (NBBY * sizeof(((struct unrb *)NULL)->map)) macro
368 KASSERT (up->len <= NBITS, in check_unrhdr()
370 up->len, NBITS, line)); in check_unrhdr()
552 if (uf->len >= NBITS) in optimize_unr()
563 if ((up->len + l) > NBITS) in optimize_unr()
589 bit_nclear(ub->map, 0, NBITS - 1); in optimize_unr()
619 if (uf->len + us->len > NBITS) in optimize_unr()
1100 x += NBITS; in print_unrhdr()
1323 printf("NBITS %lu\n", (unsigned long)NBITS); in main()
/freebsd/usr.sbin/bsdconfig/networking/share/
H A Dipaddr.subr131 # Optionally, the user can enter the format "IP_ADDRESS/NBITS" to set the
181 # Support the syntax: IP_ADDRESS/NBITS
/freebsd/contrib/lua/src/
H A Dlvm.c770 #define NBITS cast_int(sizeof(lua_Integer) * CHAR_BIT) macro
778 if (y <= -NBITS) return 0; in luaV_shiftl()
782 if (y >= NBITS) return 0; in luaV_shiftl()