HomeSort by: relevance | last modified time | path
    Searched defs:fbt (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/arch/sun3/dev/
bw2.c 197 struct fbtype *fbt; local in function:bw2attach
204 fbt = &fb->fb_fbtype;
205 fbt->fb_type = FBTYPE_SUN2BW;
206 fbt->fb_width = 1152; /* default - see below */
207 fbt->fb_height = 900; /* default - see below */
208 fbt->fb_depth = 1;
209 fbt->fb_cmsize = 0;
210 fbt->fb_size = BW2_FBSIZE; /* default - see below */
277 fbt->fb_width = 1600;
278 fbt->fb_height = 1280
    [all...]
cg2.c 171 struct fbtype *fbt; local in function:cg2attach
192 fbt = &fb->fb_fbtype;
193 fbt->fb_type = FBTYPE_SUN2COLOR;
194 fbt->fb_depth = 8;
195 fbt->fb_cmsize = CMSIZE;
197 fbt->fb_width = 1152;
198 fbt->fb_height = 900;
199 fbt->fb_size = CG2_MAPPED_SIZE;
201 aprint_normal(" (%dx%d)\n", fbt->fb_width, fbt->fb_height)
    [all...]
cg4.c 251 struct fbtype *fbt; local in function:cg4attach
256 fbt = &fb->fb_fbtype;
257 fbt->fb_type = FBTYPE_SUN4COLOR;
258 fbt->fb_width = 1152; /* default - see below */
259 fbt->fb_height = 900; /* default - see below */
260 fbt->fb_depth = 8;
261 fbt->fb_cmsize = 256;
262 fbt->fb_size = CG4_MMAP_SIZE;
322 aprint_normal(" (%dx%d)\n", fbt->fb_width, fbt->fb_height)
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/
drm_mode_config.c 473 struct drm_framebuffer *fb, *fbt; local in function:drm_mode_config_cleanup
529 list_for_each_entry_safe(fb, fbt, &dev->mode_config.fb_list, head) {
  /src/sys/dev/sbus/
zx.c 572 struct fbtype *fbt; local in function:zx_reset
575 fbt = &sc->sc_fb.fb_type;
591 (fbt->fb_width - 1) | ((fbt->fb_height - 1) << 16));
597 (fbt->fb_width - 1) | ((fbt->fb_height - 1) << 11));
  /src/sys/dev/pci/
sisfb.c 63 bus_space_tag_t fbt; member in struct:sisfb
255 fb->fbt = pa->pa_memt;
259 BUS_SPACE_MAP_LINEAR, &fb->fbt, &fb->fbh,
343 bus_space_unmap(fb->fbt, fb->fbh, fb->fbsize);
463 (uintptr_t)bus_space_vaddr(fb->fbt, fb->fbh) - (uintptr_t)fb->fb_addr;
468 pa = bus_space_mmap(fb->fbt,
484 pa = bus_space_mmap(fb->fbt, fb->fbbase, offset - fb->fbbase,
615 (void *)((char *)bus_space_vaddr(fb->fbt, fb->fbh) + fbaddr);
789 sisfbcn.fbt = memt;

Completed in 14 milliseconds