Home
last modified time | relevance | path

Searched refs:sbd (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/sys/arch/ews4800mips/stand/common/
H A Dboot.c182 struct sbdinfo *sbd = SBD_INFO; in cmd_info() local
206 printf("\tmachine=0x%x, ", sbd->machine); in cmd_info()
207 printf("model=0x%x\n", sbd->model); in cmd_info()
208 printf("\tpmmu=%d, ", sbd->mmu); in cmd_info()
209 printf("cache=%d, ", sbd->cache); in cmd_info()
210 printf("panel=%d, ", sbd->panel); in cmd_info()
211 printf("fdd=%d\n", sbd->fdd); in cmd_info()
213 sbd->cpu, sbd->fpp, sbd->fpa, sbd->iop); in cmd_info()
214 printf("\tclock=%d\n", sbd->clock); in cmd_info()
216 sbd->ipl, sbd->cpu_ex, sbd->fpp_ex); in cmd_info()
[all …]
/netbsd-src/sys/arch/ews4800mips/conf/
H A Dfiles.ews4800mips35 file arch/ews4800mips/ews4800mips/sbd.c
74 file arch/ews4800mips/sbd/sbdio.c sbdio
81 file arch/ews4800mips/sbd/zs_sbdio.c zsc_sbdio needs-flag
89 file arch/ews4800mips/sbd/kbms_sbdio.c kbms_sbdio needs-flag
102 file arch/ews4800mips/sbd/mkclock_sbdio.c mkclock_sbdio
106 file arch/ews4800mips/sbd/if_iee_sbdio.c iee_sbdio
109 file arch/ews4800mips/sbd/if_le_sbdio.c le_sbdio
112 file arch/ews4800mips/sbd/osiop_sbdio.c osiop_sbdio
117 file arch/ews4800mips/sbd/fb_sbdio.c fb_sbdio needs-flag
/netbsd-src/sys/dev/pci/
H A Dif_ipw.c376 struct ipw_soft_bd *sbd; in ipw_dma_alloc() local
581 sbd = &sc->stbd_list[i]; in ipw_dma_alloc()
582 sbd->bd = &sc->tbd_list[i]; in ipw_dma_alloc()
583 sbd->type = IPW_SBD_TYPE_NOASSOC; in ipw_dma_alloc()
590 sbd = &sc->srbd_list[i]; in ipw_dma_alloc()
592 sbd->bd = &sc->rbd_list[i]; in ipw_dma_alloc()
632 sbd->type = IPW_SBD_TYPE_DATA; in ipw_dma_alloc()
633 sbd->priv = sbuf; in ipw_dma_alloc()
634 sbd->bd->physaddr = htole32(sbuf->map->dm_segs[0].ds_addr); in ipw_dma_alloc()
635 sbd->bd->len = htole32(MCLBYTES); in ipw_dma_alloc()
[all …]
/netbsd-src/sys/arch/ews4800mips/include/
H A Dsbdvar.h43 struct sbd { struct
117 extern struct sbd platform;
/netbsd-src/sys/arch/ews4800mips/ews4800mips/
H A Dsbd.c48 struct sbd platform; /* System board itself */
/netbsd-src/sys/fs/udf/
H A Dudf_allocation.c1466 struct space_bitmap_desc *sbd, *new_sbd; in udf_trunc_metadatapart() local
1531 sbd = (struct space_bitmap_desc *) bitmap->blob; in udf_trunc_metadatapart()
1532 sbd->num_bits = udf_rw32(udf_rw32(sbd->num_bits) - to_trunc); in udf_trunc_metadatapart()
1533 sbd->num_bytes = udf_rw32(udf_rw32(sbd->num_bytes) - to_trunc/8); in udf_trunc_metadatapart()
1534 bitmap->max_offset = udf_rw32(sbd->num_bits); in udf_trunc_metadatapart()
1543 new_sbd = realloc(sbd, inf_len, M_UDFVOLD, M_WAITOK); in udf_trunc_metadatapart()
1563 inf_len = (uint64_t) udf_rw32(sbd->num_bits) * lb_size; /* [4/14.12.4] */ in udf_trunc_metadatapart()
H A Dudf_subr.c748 size += udf_rw32(dscr->sbd.num_bytes); in udf_tagsize()
1563 ump->part_unalloc_dscr[phys_part] = &dscr->sbd; in udf_read_physical_partition_spacetables()
1568 bitmap->bits = dscr->sbd.data; in udf_read_physical_partition_spacetables()
1569 bitmap->max_offset = udf_rw32(dscr->sbd.num_bits); in udf_read_physical_partition_spacetables()
1622 ump->part_freed_dscr[phys_part] = &dscr->sbd; in udf_read_physical_partition_spacetables()
1627 bitmap->bits = dscr->sbd.data; in udf_read_physical_partition_spacetables()
1628 bitmap->max_offset = udf_rw32(dscr->sbd.num_bits); in udf_read_physical_partition_spacetables()
1696 KASSERT(udf_rw16(dscr->sbd.tag.id) == TAGID_SPACE_BITMAP); in udf_write_physical_partition_spacetables()
1697 if (udf_rw16(dscr->sbd.tag.desc_crc_len) == 0) in udf_write_physical_partition_spacetables()
1698 dscr->sbd.tag.desc_crc_len = udf_rw16(8); in udf_write_physical_partition_spacetables()
[all …]
H A Decma167-udf.h835 struct space_bitmap_desc sbd; member
/netbsd-src/sbin/fsck_udf/
H A Dmain.c640 bpos = &dscr->sbd.data[cnt / 8]; in udf_check_if_allocated()
1676 context.part_unalloc_bits[cnt] = &dscr->sbd; in udf_readin_partitions_free_space()
3701 struct space_bitmap_desc *sbd, *new_sbd; in udf_create_new_space_bitmaps_and_reset_freespace() local
3717 sbd = context.part_unalloc_bits[i]; in udf_create_new_space_bitmaps_and_reset_freespace()
3718 recorded_part_unalloc_bits[i] = sbd; in udf_create_new_space_bitmaps_and_reset_freespace()
3719 if (sbd == NULL) in udf_create_new_space_bitmaps_and_reset_freespace()
3721 dscr_size = udf_tagsize((union dscrptr *) sbd, in udf_create_new_space_bitmaps_and_reset_freespace()
3724 memcpy(new_sbd, sbd, sizeof(struct space_bitmap_desc)-1); in udf_create_new_space_bitmaps_and_reset_freespace()
3727 for (cnt = 0; cnt < udf_rw32(sbd->num_bytes); cnt++) in udf_create_new_space_bitmaps_and_reset_freespace()
3746 sbd = context.part_unalloc_bits[i]; in udf_create_new_space_bitmaps_and_reset_freespace()
[all …]
/netbsd-src/sbin/newfs_udf/
H A Dudf_core.c1641 struct space_bitmap_desc *sbd; in udf_create_space_bitmap() local
1646 sbd = calloc(context.sector_size, dscr_size); in udf_create_space_bitmap()
1647 if (sbd == NULL) in udf_create_space_bitmap()
1650 udf_inittag(&sbd->tag, TAGID_SPACE_BITMAP, /* loc */ 0); in udf_create_space_bitmap()
1652 sbd->num_bits = udf_rw32(part_size_lba); in udf_create_space_bitmap()
1653 sbd->num_bytes = udf_rw32((part_size_lba + 7)/8); in udf_create_space_bitmap()
1656 for (cnt = 0; cnt < udf_rw32(sbd->num_bytes); cnt++) in udf_create_space_bitmap()
1657 sbd->data[cnt] = 0xff; in udf_create_space_bitmap()
1661 sbd->tag.desc_crc_len = udf_rw16(crclen); in udf_create_space_bitmap()
1663 *sbdp = sbd; in udf_create_space_bitmap()
[all …]
/netbsd-src/external/gpl3/binutils/dist/ld/
H A DChangeLog-20183029 * testsuite/ld-sh/sh64/endian.sbd: Delete.
/netbsd-src/external/gpl3/binutils.old/dist/ld/
H A DChangeLog-20183029 * testsuite/ld-sh/sh64/endian.sbd: Delete.
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DChangeLog-201223867 2012-05-22 Steven Drake <sbd@NetBSD.org>
H A DChangeLog-201116381 <sys/sbd.h>.