bc                 91 dev/eisa/if_fea.c pdq_eisa_subprobe(bc, iobase, maddr, msize, irq)
bc                 92 dev/eisa/if_fea.c 	bus_space_tag_t bc;
bc                 99 dev/eisa/if_fea.c 		*irq = pdq_eisa_irqs[PDQ_OS_IORD_8(bc, iobase,
bc                102 dev/eisa/if_fea.c 	*maddr = (PDQ_OS_IORD_8(bc, iobase, PDQ_EISA_MEM_ADD_CMP_0) << 8)
bc                103 dev/eisa/if_fea.c 	    | (PDQ_OS_IORD_8(bc, iobase, PDQ_EISA_MEM_ADD_CMP_1) << 16);
bc                104 dev/eisa/if_fea.c 	*msize = (PDQ_OS_IORD_8(bc, iobase, PDQ_EISA_MEM_ADD_MASK_0) + 4) << 8;
bc                414 dev/pci/if_myx.c 	struct myx_bootcmd	 bc;
bc                458 dev/pci/if_myx.c 	bzero(&bc, sizeof(bc));
bc                459 dev/pci/if_myx.c 	if (myx_boot(sc, fwlen, &bc) != 0) {
bc                631 dev/pci/if_myx.c myx_boot(struct myx_softc *sc, u_int32_t length, struct myx_bootcmd *bc)
bc                637 dev/pci/if_myx.c 	bc->bc_addr_high = htobe32(MYX_ADDRHIGH(map->dm_segs[0].ds_addr));
bc                638 dev/pci/if_myx.c 	bc->bc_addr_low = htobe32(MYX_ADDRLOW(map->dm_segs[0].ds_addr));
bc                639 dev/pci/if_myx.c 	bc->bc_result = 0xffffffff;
bc                640 dev/pci/if_myx.c 	bc->bc_offset = htobe32(MYX_FW_BOOT);
bc                641 dev/pci/if_myx.c 	bc->bc_length = htobe32(length);
bc                642 dev/pci/if_myx.c 	bc->bc_copyto = htobe32(8);
bc                643 dev/pci/if_myx.c 	bc->bc_jumpto = htobe32(0);
bc                649 dev/pci/if_myx.c 	myx_write(sc, MYX_BOOT, (u_int8_t *)bc, sizeof(struct myx_bootcmd));
bc                287 dev/pci/if_tht.c 	u_int16_t		bc; /* buffer count (0:4) */
bc               1118 dev/pci/if_tht.c 	int				bc;
bc               1159 dev/pci/if_tht.c 		bc = sizeof(txt) +
bc               1163 dev/pci/if_tht.c 		    THT_TXT_FLAGS_TCPCS | THT_TXT_FLAGS_IPCS | LWORDS(bc);
bc               1173 dev/pci/if_tht.c 		tht_fifo_write_pad(sc, &sc->sc_txt, bc);
bc               1271 dev/pci/if_tht.c 	int				bc;
bc               1300 dev/pci/if_tht.c 		bc = sizeof(rxf) + sizeof(struct tht_pbd) * dmap->dm_nsegs;
bc               1302 dev/pci/if_tht.c 		rxf.bc = htole16(LWORDS(bc));
bc               1308 dev/pci/if_tht.c 		tht_fifo_write_pad(sc, &sc->sc_rxf, bc);
bc               1354 dev/pci/if_tht.c 	int				bc;
bc               1366 dev/pci/if_tht.c 		bc = THT_RXD_FLAGS_BC(flags) * 8;
bc               1367 dev/pci/if_tht.c 		bc -= sizeof(rxd);
bc               1398 dev/pci/if_tht.c 		while (bc > 0) {
bc               1402 dev/pci/if_tht.c 			bc -= sizeof(pad);
bc               1588 dev/pci/if_tht.c tht_fifo_write_pad(struct tht_softc *sc, struct tht_fifo *tf, int bc)
bc               1593 dev/pci/if_tht.c 	if (bc % 8)
bc                198 dev/sdmmc/sdmmcreg.h 	int shift, bs, bc;
bc                210 dev/sdmmc/sdmmcreg.h 		bc = 8 - bs;
bc                211 dev/sdmmc/sdmmcreg.h 		if (bc > len)
bc                212 dev/sdmmc/sdmmcreg.h 			bc = len;
bc                214 dev/sdmmc/sdmmcreg.h 		shift += bc;
bc                215 dev/sdmmc/sdmmcreg.h 		start += bc;
bc                216 dev/sdmmc/sdmmcreg.h 		len -= bc;
bc                750 dev/softraid.c sr_ioctl_createraid(struct sr_softc *sc, struct bioc_createraid *bc, int user)
bc                766 dev/softraid.c 	if (bc->bc_dev_list_len > BIOC_CRMAXLEN)
bc                769 dev/softraid.c 	dt = malloc(bc->bc_dev_list_len, M_DEVBUF, M_WAITOK);
bc                770 dev/softraid.c 	bzero(dt, bc->bc_dev_list_len);
bc                772 dev/softraid.c 		copyin(bc->bc_dev_list, dt, bc->bc_dev_list_len);
bc                774 dev/softraid.c 		bcopy(bc->bc_dev_list, dt, bc->bc_dev_list_len);
bc                780 dev/softraid.c 	no_chunk = bc->bc_dev_list_len / sizeof(dev_t);
bc                796 dev/softraid.c 	if (bc->bc_flags & BIOC_SCFORCE) {
bc                820 dev/softraid.c 		switch (bc->bc_level) {
bc                854 dev/softraid.c 		sd->sd_vol.sv_meta.svm_level = bc->bc_level;
bc                864 dev/softraid.c 		sd->sd_meta_flags = bc->bc_flags & BIOC_SCNOAUTOASSEMBLE;
bc                895 dev/softraid.c 	switch (bc->bc_level) {
bc                937 dev/softraid.c 		printf("default %d\n", bc->bc_level);
bc               2016 dev/softraid.c 	struct bioc_createraid	bc;
bc               2178 dev/softraid.c 		bzero(&bc, sizeof(bc));
bc               2180 dev/softraid.c 		bc.bc_level = vm->svm_level;
bc               2181 dev/softraid.c 		bc.bc_dev_list_len = no_dev * sizeof(dev_t);
bc               2182 dev/softraid.c 		bc.bc_dev_list = dt;
bc               2183 dev/softraid.c 		bc.bc_flags = BIOC_SCDEVT;
bc               2184 dev/softraid.c 		sr_ioctl_createraid(sc, &bc, 0);
bc                876 net/if_bridge.c bridge_brlconf(struct bridge_softc *sc, struct ifbrlconf *bc)
bc                885 net/if_bridge.c 	ifp = ifunit(bc->ifbrl_ifsname);
bc                904 net/if_bridge.c 	if (bc->ifbrl_len == 0) {
bc                911 net/if_bridge.c 		if (bc->ifbrl_len < sizeof(req))
bc                925 net/if_bridge.c 		    (caddr_t)(bc->ifbrl_buf + (i * sizeof(req))), sizeof(req));
bc                929 net/if_bridge.c 		bc->ifbrl_len -= sizeof(req);
bc                934 net/if_bridge.c 		if (bc->ifbrl_len < sizeof(req))
bc                948 net/if_bridge.c 		    (caddr_t)(bc->ifbrl_buf + (i * sizeof(req))), sizeof(req));
bc                952 net/if_bridge.c 		bc->ifbrl_len -= sizeof(req);
bc                956 net/if_bridge.c 	bc->ifbrl_len = i * sizeof(req);
bc                375 netbt/hci.h    #define HCI_MK_CON_HANDLE(h, pb, bc) \
bc                376 netbt/hci.h    	(((h) & 0x0fff) | (((pb) & 3) << 12) | (((bc) & 3) << 14))