Searched refs:NBBY (Results 51 - 75 of 104) sorted by relevance

12345

/freebsd-9.3-release/sys/ufs/ffs/
H A Dffs_alloc.c1857 mapp = &cg_clustersfree(cgp)[bpref / NBBY];
1859 bit = 1 << (bpref % NBBY);
1868 if ((got & (NBBY - 1)) != (NBBY - 1)) {
1968 start = cgp->cg_irotor / NBBY;
1969 len = howmany(fs->fs_ipg - cgp->cg_irotor, NBBY);
1988 ipref = i * NBBY + ffs(map) - 1;
2538 start = dtogd(fs, bpref) / NBBY;
2540 start = cgp->cg_frotor / NBBY;
2542 len = howmany(fs->fs_fpg, NBBY)
[all...]
/freebsd-9.3-release/sys/cam/scsi/
H A Dscsi_low.h319 #define SCSI_LOW_MAXNEXUS (sizeof(u_int) * NBBY)
860 #define MKMSG_EXTEND(XLEN, XCODE) ((((u_int)(XLEN)) << NBBY) | ((u_int)(XCODE)))
/freebsd-9.3-release/sys/dev/ath/ath_hal/
H A Dah_internal.h33 #ifndef NBBY
34 #define NBBY 8 /* number of bits/byte */ macro
/freebsd-9.3-release/contrib/libc-vis/
H A Dvis.c278 shft = i * NBBY;
492 shft = i * NBBY;
/freebsd-9.3-release/lib/libkvm/
H A Dkvm_minidump_amd64.c115 pa = (idx * sizeof(*base) * NBBY + bit) * PAGE_SIZE;
H A Dkvm_minidump_i386.c117 pa = (idx * sizeof(*base) * NBBY + bit) * PAGE_SIZE;
/freebsd-9.3-release/libexec/rtld-elf/
H A Drtld_printf.c46 #define MAXNBUF (sizeof(intmax_t) * NBBY + 1)
/freebsd-9.3-release/sys/dev/ncv/
H A Dncr53c500.c224 bus_space_write_1(iot, ioh, cr0_tcmsb, (u_int8_t) (count >> NBBY));
225 bus_space_write_1(iot, ioh, cr0_tchsb, (u_int8_t) (count >> (NBBY * 2)));
236 count |= ((u_int) bus_space_read_1(iot, ioh, cr0_tcmsb)) << NBBY;
237 count |= ((u_int) bus_space_read_1(iot, ioh, cr0_tchsb)) << (NBBY * 2);
/freebsd-9.3-release/sys/dev/rndtest/
H A Drndtest.c155 random_harvest(buf, len, len*NBBY, 0, RANDOM_PURE);
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/
H A Dxfs_freebsd.h115 #define NBBY 8 /* number of bits per byte */ macro
/freebsd-9.3-release/sys/kern/
H A Dsubr_msgbuf.c44 #define MAXPRIBUF (sizeof(intmax_t) * NBBY + 3)
H A Dsys_generic.c871 b = i / NBBY;
891 if ((bits & (1 << (i % NBBY))) != 0)
937 ncpbytes = nfdbits / NBBY;
938 ncpubytes = roundup(nd, abi_nfdbits) / NBBY;
H A Dkern_cpuset.c976 uap->cpusetsize > CPU_MAXSIZE / NBBY)
1065 uap->cpusetsize > CPU_MAXSIZE / NBBY)
H A Dsubr_prof.c181 p->histcounter_type = FUNCTION_ALIGNMENT / HISTFRACTION * NBBY;
/freebsd-9.3-release/tools/test/ptrace/
H A Dscescx.c117 for (i = 0; i < sizeof(flags) * NBBY; i++) {
/freebsd-9.3-release/sys/gnu/fs/xfs/
H A Dxfs_buf_item.c771 bip->bli_logged = (char *)kmem_zalloc(XFS_BUF_COUNT(bp) / NBBY, KM_SLEEP);
912 kmem_free(bip->bli_logged, XFS_BUF_COUNT(bp) / NBBY);
1162 kmem_free(bip->bli_logged, XFS_BUF_COUNT(bp) / NBBY);
/freebsd-9.3-release/sys/i386/i386/
H A Dsys_machdep.c362 if (uap->start + uap->length > IOPAGES * PAGE_SIZE * NBBY)
382 if (uap->start >= IOPAGES * PAGE_SIZE * NBBY)
397 for (i = uap->start + 1; i < IOPAGES * PAGE_SIZE * NBBY; i++) {
/freebsd-9.3-release/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.c1872 #if NBBY == 8
1879 #else /* NBBY == 8 */
1880 UNIMPLEMENTED for NBBY != 8
1881 #endif /* NBBY == 8 */
2391 reply(215, "UNIX Type: L%d", NBBY);
2393 reply(215, "UNKNOWN Type: L%d", NBBY);
2630 cmd_bytesz = NBBY;
/freebsd-9.3-release/sbin/restore/
H A Dtape.c280 maxino = (spcl.c_count * TP_BSIZE * NBBY) + 1;
282 map = calloc((unsigned)1, (unsigned)howmany(maxino, NBBY));
292 map = calloc((unsigned)1, (unsigned)howmany(maxino, NBBY));
/freebsd-9.3-release/sys/cddl/dev/dtrace/
H A Ddtrace_debug.c227 #define MAXNBUF (sizeof(intmax_t) * NBBY + 1)
/freebsd-9.3-release/sys/net80211/
H A Dieee80211_hostap.c1189 *keylen = 40 / NBBY;
1193 *keylen = 104 / NBBY;
1336 *keylen = 40 / NBBY;
1340 *keylen = 104 / NBBY;
/freebsd-9.3-release/tools/regression/net80211/tkip/
H A Dtest_tkip.c206 key.wk_keylen = 128/NBBY;
/freebsd-9.3-release/sbin/ifconfig/
H A Difconfig.c392 uint8_t afmask[howmany(AF_MAX, NBBY)];
409 uint8_t afmask[howmany(AF_MAX, NBBY)];
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Ddtrace.h499 (((sizeof (uint64_t) * NBBY) - 1) * 2 + 1)
501 #define DTRACE_QUANTIZE_ZEROBUCKET ((sizeof (uint64_t) * NBBY) - 1)
/freebsd-9.3-release/cddl/contrib/opensolaris/tools/ctf/cvt/
H A Ddwarf.c224 return (tdp->t_size * NBBY);
563 intr->intr_nbits = sz * NBBY;
1004 * should equal to tdesc_bitsize(ml->ml_type)/NBBY.
1008 ml->ml_offset += bysz * NBBY - bitoff -

Completed in 258 milliseconds

12345