/src/sys/stand/efiboot/ |
module.c | 88 struct boot_module *bm; local in function:module_foreach 90 TAILQ_FOREACH(bm, &boot_modules, entries) { 91 fn(bm->module_name); 98 struct boot_module *bm; local in function:module_add 105 TAILQ_FOREACH(bm, &boot_modules, entries) { 106 if (strcmp(bm->module_name, module_name) == 0) 111 bm = alloc(sizeof(*bm)); 113 bm->module_name = alloc(slen); 114 memcpy(bm->module_name, module_name, slen) 121 struct boot_module *bm; local in function:module_remove 140 struct boot_module *bm; local in function:module_remove_all [all...] |
/src/sys/arch/atari/dev/ |
grfabs_tt.c | 142 bmap_t *bm = v->bitmap; local in function:tt_display_view 157 VIDEO->vd_raml = (u_long)bm->hw_address & 0xff; 158 VIDEO->vd_ramm = ((u_long)bm->hw_address >> 8) & 0xff; 159 VIDEO->vd_ramh = ((u_long)bm->hw_address >> 16) & 0xff; 283 bmap_t *bm; local in function:tt_alloc_view 292 bm = alloc_bitmap(mode->size.width, mode->size.height, mode->depth); 293 if (bm) { 299 init_view(v, bm, mode, &box); 302 free_bitmap(bm); 310 init_view(view_t *v, bmap_t *bm, dmode_t *mode, box_t *dbox 325 bmap_t *bm; local in function:alloc_bitmap [all...] |
grfabs_fal.c | 307 bmap_t *bm; local in function:falcon_display_view 323 bm = v->bitmap; 324 VIDEO->vd_ramh = ((u_long)bm->hw_address >> 16) & 0xff; 325 VIDEO->vd_ramm = ((u_long)bm->hw_address >> 8) & 0xff; 326 VIDEO->vd_raml = (u_long)bm->hw_address & 0xff; 511 bmap_t *bm; local in function:falcon_alloc_view 520 bm = alloc_bitmap(mode->size.width, mode->size.height, mode->depth); 521 if (bm) { 527 init_view(v, bm, mode, &box); 530 free_bitmap(bm); 553 bmap_t *bm; local in function:alloc_bitmap [all...] |
grfabs_et.c | 185 bmap_t *bm = v->bitmap; local in function:et_display_view 207 bm->plane = et_priv.memkva; 216 dst = (u_short *)bm->plane; 239 bmap_t *bm = v->bitmap; local in function:et_save_view 265 sv_size = bm->bytes_per_row * (bm->rows / (font_height + 1)); 274 src = (u_short *)bm->plane; 278 bm->plane = (u_char *)sa->sv_fb; 308 bmap_t *bm; local in function:et_alloc_view 314 bm = &con_bm [all...] |
view.c | 359 bmap_t *bm; local in function:viewioctl 379 bm = (bmap_t *)data; 380 memcpy(bm, vu->view->bitmap, sizeof(bmap_t)); 382 bm->plane = NULL; 383 bm->hw_address = NULL; 384 bm->regs = NULL; 385 bm->hw_regs = NULL; 406 bmap_t *bm; local in function:viewmmap 411 bm = vu->view->bitmap; 412 bmd_start = bm->hw_address [all...] |
grf.c | 367 bmap_t bm; local in function:grf_viewsync 373 (*view_cdevsw.d_ioctl)(gp->g_viewdev, VIOCGBMAP, (void *)&bm, 378 gi->gd_fbaddr = bm.hw_address; 379 gi->gd_fbsize = bm.phys_mappable; 380 gi->gd_linbase = bm.lin_base; 381 gi->gd_regaddr = bm.hw_regs; 382 gi->gd_regsize = bm.reg_size; 383 gi->gd_vgaaddr = bm.vga_address; 384 gi->gd_vgasize = bm.vga_mappable; 385 gi->gd_vgabase = bm.vga_base [all...] |
/src/share/man/man4/man4.macppc/ |
Makefile | 3 MAN= autoconf.4 awacs.4 bm.4 gm.4 intro.4 \
|
/src/sys/dev/ |
bio.c | 206 struct bio_mapping *bm; local in function:bio_register 211 bm = kmem_zalloc(sizeof(*bm), KM_SLEEP); 212 bm->bm_dev = dev; 213 bm->bm_ioctl = ioctl; 215 LIST_INSERT_HEAD(&bios, bm, bm_link); 223 struct bio_mapping *bm, *next; local in function:bio_unregister 226 for (bm = LIST_FIRST(&bios); bm != NULL; bm = next) 240 struct bio_mapping *bm; local in function:bio_lookup 256 struct bio_mapping *bm; local in function:bio_validate 268 struct bio_mapping *bm = cookie; local in function:bio_delegate_ioctl [all...] |
/src/sys/net/npf/ |
npf_portmap.c | 279 bitmap_isset(const bitmap_t *bm, unsigned bit) 287 bval = atomic_load_relaxed(&bm->bits0[i]); 311 bitmap_set(bitmap_t *bm, unsigned bit) 320 bval = bm->bits0[i]; 335 if (__npf_atomic_cas_64(&bm->bits0[i], bval, nval) != bval) { 367 if (__npf_atomic_cas_64(&bm->bits0[i], bval, bm1p) != bval) { 391 bitmap_clr(bitmap_t *bm, unsigned bit) 400 bval = bm->bits0[i]; 408 if (__npf_atomic_cas_64(&bm->bits0[i], bval, nval) != bval) { 435 bitmap_t *bm; local in function:npf_portmap_autoget 483 bitmap_t *bm; local in function:npf_portmap_flush 516 bitmap_t *bm; local in function:npf_portmap_get 553 bitmap_t *bm = npf_portmap_autoget(pm, alen, addr); local in function:npf_portmap_take 572 bitmap_t *bm; local in function:npf_portmap_put [all...] |
/src/tests/lib/libc/string/ |
t_bm.c | 37 #include <bm.h> 41 ATF_TC(bm); 42 ATF_TC_HEAD(bm, tc) 44 atf_tc_set_md_var(tc, "descr", "Test bm(3)"); 72 ATF_TC_BODY(bm, tc) 100 ATF_TP_ADD_TC(tp, bm);
|
/src/sys/arch/i386/stand/lib/ |
exec.c | 234 boot_module_t *bm, *bmp; local in function:module_add_common 241 for (bm = boot_modules; bm != NULL; bm = bm->bm_next) 242 if (bm->bm_type == type && strcmp(bm->bm_path, name) == 0) 245 bm = alloc(sizeof(boot_module_t)); 248 if (bm == NULL || str == NULL) { 253 bm->bm_path = str 680 boot_module_t *bm; local in function:module_init [all...] |
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
armada-385-db-ap.dts | 98 buffer-manager = <&bm>; 99 bm,pool-long = <1>; 100 bm,pool-short = <3>; 108 buffer-manager = <&bm>; 109 bm,pool-long = <2>; 110 bm,pool-short = <3>; 129 buffer-manager = <&bm>; 130 bm,pool-long = <0>; 131 bm,pool-short = <3>; 134 bm@c8000 [all...] |
armada-388-db.dts | 54 buffer-manager = <&bm>; 55 bm,pool-long = <2>; 56 bm,pool-short = <3>; 67 buffer-manager = <&bm>; 68 bm,pool-long = <0>; 69 bm,pool-short = <1>; 90 bm@c8000 { 111 bm-bppi {
|
armada-xp-openblocks-ax3-4.dts | 116 buffer-manager = <&bm>; 117 bm,pool-long = <0>; 123 buffer-manager = <&bm>; 124 bm,pool-long = <1>; 130 buffer-manager = <&bm>; 131 bm,pool-long = <2>; 137 buffer-manager = <&bm>; 138 bm,pool-long = <3>; 168 bm@c0000 { 173 bm-bppi [all...] |
armada-38x-solidrun-microsom.dtsi | 35 &bm { 49 buffer-manager = <&bm>; 50 bm,pool-long = <0>; 51 bm,pool-short = <1>;
|
armada-385-linksys.dtsi | 91 &bm { 102 buffer-manager = <&bm>; 103 bm,pool-long = <0>; 104 bm,pool-short = <1>; 114 buffer-manager = <&bm>; 115 bm,pool-long = <2>; 116 bm,pool-short = <3>;
|
armada-xp-db.dts | 98 buffer-manager = <&bm>; 99 bm,pool-long = <0>; 105 buffer-manager = <&bm>; 106 bm,pool-long = <1>; 112 buffer-manager = <&bm>; 113 bm,pool-long = <2>; 119 buffer-manager = <&bm>; 120 bm,pool-long = <3>; 123 bm@c0000 { 178 bm-bppi [all...] |
armada-xp-gp.dts | 124 buffer-manager = <&bm>; 125 bm,pool-long = <0>; 131 buffer-manager = <&bm>; 132 bm,pool-long = <1>; 138 buffer-manager = <&bm>; 139 bm,pool-long = <2>; 145 buffer-manager = <&bm>; 146 bm,pool-long = <3>; 159 bm@c0000 { 175 bm-bppi [all...] |
/src/sys/arch/amiga/stand/dumpfont/ |
dumpfont.c | 29 struct BitMap bm = { 256, /* bytes per row */ local in function:main 38 rp.BitMap = &bm; 39 bm.Planes[0] = pp = AllocRaster (256 * 8, 8);
|
/src/sys/arch/sandpoint/stand/altboot/ |
main.c | 471 struct boot_module *bm, *bmp; local in function:module_add 476 bm = alloc(sizeof(struct boot_module) + strlen(name) + 1); 477 if (bm == NULL) { 482 bm->bm_kmod = (char *)(bm + 1); 483 bm->bm_len = -1; 484 bm->bm_next = NULL; 485 strcpy(bm->bm_kmod, name); 487 boot_modules = bm; 491 bmp->bm_next = bm; 501 struct boot_module *bm; local in function:module_load [all...] |
/src/sys/arch/amiga/dev/ |
grf_cc.c | 196 bmap_t bm; local in function:grf_cc_on 202 /* XXX type of bm ? */ 203 (*view_cdevsw.d_ioctl)(0, VIOCGBMAP, (void *)&bm, -1, NULL); 209 gi->gd_fbaddr = bm.hardware_address; 210 gi->gd_fbsize = bm.depth*bm.bytes_per_row*bm.rows;
|
view.c | 304 bmap_t *bm; local in function:viewioctl 324 bm = (bmap_t *)data; 325 memcpy(bm, vu->view->bitmap, sizeof(bmap_t)); 327 bm->plane = 0; 328 bm->blit_temp = 0; 329 bm->hardware_address = 0; 398 bmap_t *bm; local in function:viewmmap 403 bm = vu->view->bitmap; 404 bmd_start = bm->hardware_address; 405 bmd_size = bm->bytes_per_row*bm->rows*bm->depth [all...] |
/src/sys/external/bsd/drm2/drm/ |
drm_memory.c | 111 struct drm_bus_map *const bm = &dev->bus_maps[unit]; local in function:drm_legacy_ioremap 112 int flags = bm->bm_flags; 115 if (map->offset < bm->bm_base) 119 if (bm->bm_size < map->size) 123 if ((bm->bm_size - map->size) < 124 (map->offset - bm->bm_base)) 140 map->lm_data.bus_space.bus_map = bm;
|
/src/usr.bin/tip/aculib/ |
courier.c | 190 struct baud_msg *bm; local in function:cour_connect 223 for (bm = baud_msg ; bm->msg ; bm++) 224 if (strcmp(bm->msg, 229 (void)cfsetospeed(&cntrl, bm->baud); 230 (void)cfsetispeed(&cntrl, bm->baud);
|
t3000.c | 198 struct tbaud_msg *bm; local in function:t3000_connect 231 for (bm = tbaud_msg ; bm->msg ; bm++) 232 if (strcmp(bm->msg, 237 (void)cfsetospeed(&cntrl, bm->baud); 238 (void)cfsetispeed(&cntrl, bm->baud);
|