Searched defs:fb (Results 26 - 29 of 29) sorted by relevance

12

/illumos-gate/usr/src/uts/i86pc/os/
H A Dfastboot.c690 fastboot_file_t *fb = &nk->fi_files[i]; local
696 if ((fb->fb_pte_list_va = contig_alloc(size,
700 fb->fb_pte_list_size = size;
728 fastboot_cksum_file(fastboot_file_t *fb, uchar_t *md5_hash) argument
733 MD5Update(&md5_ctx, (void *)fb->fb_va, fb->fb_size);
741 fastboot_free_file(fastboot_file_t *fb) argument
745 fsize_roundup = P2ROUNDUP_TYPED(fb->fb_size, PAGESIZE, size_t);
747 contig_free((void *)fb->fb_va, fsize_roundup);
748 fb
757 fastboot_free_file_pte(fastboot_file_t *fb, uint64_t endaddr) argument
888 fastboot_file_t *fb; local
1299 fastboot_file_t *fb = &nk->fi_files[FASTBOOT_SWTCH]; local
1337 fastboot_file_t *fb; local
[all...]
/illumos-gate/usr/src/uts/i86pc/io/gfx_private/
H A Dgfxp_vgatext.c70 struct vgaregmap fb; member in struct:vgatext_softc
430 (caddr_t *)&softc->fb.addr,
432 &dev_attr, &softc->fb.handle);
435 softc->fb.mapped = B_TRUE;
439 softc->text_base = (caddr_t)softc->fb.addr + VGA_COLOR_BASE;
441 softc->text_base = (caddr_t)softc->fb.addr + VGA_MONO_BASE;
502 if (softc->fb.mapped)
503 ddi_regs_map_free(&softc->fb.handle);
1217 to = (unsigned char *)softc->fb.addr + i * 0x20;
1374 * This vgatext function is used to return the fb, an
[all...]
/illumos-gate/usr/src/uts/intel/io/vgatext/
H A Dvgatext.c144 struct vgaregmap fb; member in struct:vgatext_softc
548 (caddr_t *)&softc->fb.addr,
550 &dev_attr, &softc->fb.handle);
553 softc->fb.mapped = B_TRUE;
557 softc->text_base = (caddr_t)softc->fb.addr + VGA_COLOR_BASE;
559 softc->text_base = (caddr_t)softc->fb.addr + VGA_MONO_BASE;
632 if (softc->fb.mapped)
633 ddi_regs_map_free(&softc->fb.handle);
1361 to = (unsigned char *)softc->fb.addr + f_offset + i * 0x20;
/illumos-gate/usr/src/common/lzma/
H A DLzmaEnc.c54 p->lc = p->lp = p->pb = p->algo = p->fb = p->btMode = p->numHashBytes = p->numThreads = -1;
68 if (p->fb < 0) p->fb = (level < 7 ? 32 : 64);
71 if (p->mc == 0) p->mc = (16 + (p->fb >> 1)) >> (p->btMode ? 0 : 1);
423 unsigned fb = props.fb; local
424 if (fb < 5)
425 fb = 5;
426 if (fb > LZMA_MATCH_LEN_MAX)
427 fb
[all...]

Completed in 89 milliseconds

12