Searched refs:NBBY (Results 76 - 100 of 131) sorted by relevance

123456

/freebsd-12-stable/libexec/rtld-elf/
H A Drtld_printf.c48 #define MAXNBUF (sizeof(intmax_t) * NBBY + 1)
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Ddtrace.h502 (((sizeof (uint64_t) * NBBY) - 1) * 2 + 1)
504 #define DTRACE_QUANTIZE_ZEROBUCKET ((sizeof (uint64_t) * NBBY) - 1)
/freebsd-12-stable/sys/dev/ath/ath_hal/
H A Dah_internal.h35 #ifndef NBBY
36 #define NBBY 8 /* number of bits/byte */ macro
/freebsd-12-stable/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c221 return (tdp->t_size * NBBY);
571 intr->intr_nbits = sz * NBBY;
1022 * should equal to tdesc_bitsize(ml->ml_type)/NBBY.
1026 ml->ml_offset += bysz * NBBY - bitoff -
/freebsd-12-stable/sys/dev/vt/hw/fb/
H A Dvt_fb.c464 vd->vd_transpose += margin * (info->fb_bpp / NBBY);
/freebsd-12-stable/sys/dev/usb/wlan/
H A Dif_rsureg.h198 #define R92S_CAM_ENTRY_BYTES howmany(R92S_CAM_ENTRY_LIMIT, NBBY)
/freebsd-12-stable/sys/net80211/
H A Dieee80211_crypto_wep.c121 return k->wk_keylen >= 40/NBBY;
H A Dieee80211_crypto_tkip.c142 if (k->wk_keylen != (128/NBBY)) {
146 __func__, k->wk_keylen, 128/NBBY);
/freebsd-12-stable/sys/kern/
H A Dsubr_pctrie.c64 #define PCTRIE_LIMIT (howmany(sizeof(uint64_t) * NBBY, PCTRIE_WIDTH) - 1)
H A Dsubr_prof.c182 p->histcounter_type = FUNCTION_ALIGNMENT / HISTFRACTION * NBBY;
H A Dsubr_prf.c98 #define MAXNBUF (sizeof(intmax_t) * NBBY + 1)
/freebsd-12-stable/sys/vm/
H A Dvm_radix.c87 (howmany(sizeof(vm_pindex_t) * NBBY, VM_RADIX_WIDTH) - 1)
H A Dvnode_pager.c1351 i < sizeof(vm_page_bits_t) * NBBY &&
1367 i < sizeof(vm_page_bits_t) * NBBY &&
H A Dvm_page.c642 vm_page_dump_size = round_page(roundup2(page_range, NBBY) / NBBY);
4218 shift = (sizeof(uint32_t) - sizeof(m->dirty) - shift) * NBBY;
4220 shift *= NBBY;
/freebsd-12-stable/sys/x86/iommu/
H A Dintel_dmar.h249 uint32_t buswide_ctxs[(PCI_BUSMAX + 1) / NBBY / sizeof(uint32_t)];
/freebsd-12-stable/tools/regression/net80211/tkip/
H A Dtest_tkip.c206 key->wk_keylen = 128/NBBY;
/freebsd-12-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_parser.c690 size_t size = e.cte_bits / NBBY;
692 if (size > 8 || (e.cte_bits % NBBY) != 0 || (size & (size - 1)))
700 if (e.cte_bits / NBBY > sizeof (uint64_t))
1839 return (dt_node_int(ctm.ctm_offset / NBBY));
1858 (64 - dt_node_type_size(cp) * NBBY);
1921 int n = (sizeof (uint64_t) - dstsize) * NBBY;
1925 int n = (sizeof (uint64_t) - srcsize) * NBBY;
1926 int s = (dstsize - srcsize) * NBBY;
/freebsd-12-stable/sbin/ifconfig/
H A Difconfig.c808 uint8_t afmask[howmany(AF_MAX, NBBY)];
825 uint8_t afmask[howmany(AF_MAX, NBBY)];
/freebsd-12-stable/contrib/libucl/src/
H A Ducl_util.c37 #ifndef NBBY
38 #define NBBY 8 macro
3790 return (obj->flags >> ((sizeof (obj->flags) * NBBY) - PRIOBITS));
3799 priority <<= ((sizeof (obj->flags) * NBBY) - PRIOBITS);
3800 priority |= obj->flags & ((1 << ((sizeof (obj->flags) * NBBY) -
/freebsd-12-stable/sys/mips/mips/
H A Dpmap.c1452 idx = field * sizeof(inuse) * NBBY + bit;
1549 field = idx / (sizeof(u_long) * NBBY);
1550 bit = idx % (sizeof(u_long) * NBBY);
1612 idx = field * sizeof(pc->pc_map[field]) * NBBY + bit;
2843 idx = field * sizeof(inuse) * NBBY + bit;
/freebsd-12-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dftpd.c1622 #if NBBY == 8
1623 printf(" %d", NBBY);
/freebsd-12-stable/sys/dev/qat/
H A Dqatreg.h66 (((uintmax_t)(__n) >= NBBY * sizeof(uintmax_t)) ? 0 : \
67 ((uintmax_t)1 << (uintmax_t)((__n) & (NBBY * sizeof(uintmax_t) - 1))))
/freebsd-12-stable/sys/netinet/netdump/
H A Dnetdump_client.c118 CTASSERT(sizeof(rcvd_acks) * NBBY == NETDUMP_MAX_IN_FLIGHT);
/freebsd-12-stable/lib/libthr/thread/
H A Dthr_private.h139 ((void *)(uintptr_t)((1ULL << (NBBY * sizeof(long) - 1)) | 1))
/freebsd-12-stable/crypto/heimdal/appl/ftp/ftp/
H A Dcmds.c145 #if (defined(unix) || defined(__unix__) || defined(__unix) || defined(_AIX) || defined(_CRAY) || defined(__NetBSD__) || defined(__APPLE__)) && NBBY == 8

Completed in 600 milliseconds

123456