Searched refs:fb (Results 1 - 25 of 840) sorted by relevance

1234567891011>>

/netbsd-current/external/mit/xorg/server/xorg-server/fb/
H A DMakefile7 LIB= fb
8 SRCS= ${SRCS.fb}
10 .include "Makefile.fb"
/netbsd-current/external/mit/xorg/server/xorg-server.old/fb/
H A DMakefile7 LIB= fb
8 SRCS= ${SRCS.fb}
10 .include "Makefile.fb"
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/fb/
H A Dnouveau_nvkm_subdev_fb_base.c40 nvkm_fb_tile_fini(struct nvkm_fb *fb, int region, struct nvkm_fb_tile *tile) argument
42 fb->func->tile.fini(fb, region, tile);
46 nvkm_fb_tile_init(struct nvkm_fb *fb, int region, u32 addr, u32 size, argument
49 fb->func->tile.init(fb, region, addr, size, pitch, flags, tile);
53 nvkm_fb_tile_prog(struct nvkm_fb *fb, int region, struct nvkm_fb_tile *tile) argument
55 struct nvkm_device *device = fb->subdev.device;
56 if (fb->func->tile.prog) {
57 fb
96 struct nvkm_fb *fb = nvkm_fb(subdev); local
104 struct nvkm_fb *fb = nvkm_fb(subdev); local
134 nvkm_fb_init_scrub_vpr(struct nvkm_fb *fb) argument
164 struct nvkm_fb *fb = nvkm_fb(subdev); local
204 struct nvkm_fb *fb = nvkm_fb(subdev); local
232 nvkm_fb_ctor(const struct nvkm_fb_func *func, struct nvkm_device *device, int index, struct nvkm_fb *fb) argument
[all...]
H A Dnouveau_nvkm_subdev_fb_gf100.c39 struct gf100_fb *fb = gf100_fb(base); local
40 struct nvkm_subdev *subdev = &fb->base.subdev;
52 struct gf100_fb *fb = gf100_fb(base); local
53 struct nvkm_device *device = fb->base.subdev.device;
54 int ret, size = 1 << (fb->base.page ? fb->base.page : 17);
60 true, &fb->base.mmu_rd);
65 true, &fb->base.mmu_wr);
75 fb->r100c10_page = NULL; /* paranoia */
76 fb
125 gf100_fb_init_page(struct nvkm_fb *fb) argument
140 struct gf100_fb *fb = gf100_fb(base); local
155 struct gf100_fb *fb = gf100_fb(base); local
181 struct gf100_fb *fb; local
[all...]
H A Dnouveau_nvkm_subdev_fb_ramnv4e.c32 nv4e_ram_new(struct nvkm_fb *fb, struct nvkm_ram **pram) argument
34 struct nvkm_device *device = fb->subdev.device;
36 return nvkm_ram_new_(&nv04_ram_func, fb, NVKM_RAM_TYPE_UNKNOWN,
/netbsd-current/usr.sbin/tpctl/
H A Dfb.c1 /* $NetBSD: fb.c,v 1.5 2017/08/27 02:19:08 jmcneill Exp $ */
44 __RCSID("$NetBSD: fb.c,v 1.5 2017/08/27 02:19:08 jmcneill Exp $");
57 fb_dispmode(struct fb *fb, int dispmode) argument
60 if (fb->dispmode != dispmode) {
61 if (ioctl(fb->fd, WSDISPLAYIO_SMODE, &dispmode) < 0)
63 fb->dispmode = dispmode;
70 fb_init(struct fb *fb, int fd) argument
77 fb
140 __fb_swap_workbuf(struct fb *fb) argument
179 __fb_put_pixel(struct fb *fb, fb_pixel_t pixel, int width, int x) argument
201 fb_getline(struct fb *fb, int y) argument
223 fb_putline(struct fb *fb, int y) argument
244 fb_fetchline(struct fb *fb, int y) argument
253 fb_flush(struct fb *fb) argument
260 fb_drawpixel(struct fb *fb, int x, int y, fb_pixel_t pixel) argument
293 fb_drawline(struct fb *fb, int x0, int y0, int x1, int y1, fb_pixel_t pixel) argument
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/include/drm/
H A Ddrm_framebuffer.h75 int (*create_handle)(struct drm_framebuffer *fb,
81 * Optional callback for the dirty fb IOCTL.
108 * Note that the fb is refcounted for the benefit of driver internals,
113 * hold a ref to the fb even though it has already been removed from
136 * @comm: Name of the process allocating the fb, used for fb dumping.
221 struct drm_framebuffer *fb,
226 void drm_framebuffer_remove(struct drm_framebuffer *fb);
227 void drm_framebuffer_cleanup(struct drm_framebuffer *fb);
228 void drm_framebuffer_unregister_private(struct drm_framebuffer *fb);
236 drm_framebuffer_get(struct drm_framebuffer *fb) argument
248 drm_framebuffer_put(struct drm_framebuffer *fb) argument
259 drm_framebuffer_read_refcount(const struct drm_framebuffer *fb) argument
272 drm_framebuffer_assign(struct drm_framebuffer **p, struct drm_framebuffer *fb) argument
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/builtins/
H A Dfloatundixf.c36 long_double_bits fb; local
37 fb.u.high.s.low = (e + 16383); /* exponent */
38 fb.u.low.all = a << clz; /* mantissa */
39 return fb.f;
H A Dfixunsxfti.c35 long_double_bits fb; local
36 fb.f = a;
37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 if (e < 0 || (fb.u.high.s.low & 0x00008000))
42 tu_int r = fb.u.low.all;
H A Dfixunsxfdi.c36 long_double_bits fb; local
37 fb.f = a;
38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
43 return fb.u.low.all >> (63 - e);
H A Dfixunsxfsi.c35 long_double_bits fb; local
36 fb.f = a;
37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
38 if (e < 0 || (fb.u.high.s.low & 0x00008000))
42 return fb.u.low.s.high >> (31 - e);
H A Dfixxfdi.c35 long_double_bits fb; local
36 fb.f = a;
37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
42 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
43 di_int r = fb.u.low.all;
H A Dfixxfti.c35 long_double_bits fb; local
36 fb.f = a;
37 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
40 ti_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
41 ti_int r = fb.u.low.all;
/netbsd-current/external/gpl3/gdb.old/dist/sim/rx/
H A Dfpu.h23 extern fp_t rxfp_add (fp_t fa, fp_t fb);
24 extern fp_t rxfp_sub (fp_t fa, fp_t fb);
25 extern fp_t rxfp_mul (fp_t fa, fp_t fb);
26 extern fp_t rxfp_div (fp_t fa, fp_t fb);
27 extern void rxfp_cmp (fp_t fa, fp_t fb);
/netbsd-current/external/gpl3/gdb/dist/sim/rx/
H A Dfpu.h23 extern fp_t rxfp_add (fp_t fa, fp_t fb);
24 extern fp_t rxfp_sub (fp_t fa, fp_t fb);
25 extern fp_t rxfp_mul (fp_t fa, fp_t fb);
26 extern fp_t rxfp_div (fp_t fa, fp_t fb);
27 extern void rxfp_cmp (fp_t fa, fp_t fb);
/netbsd-current/sys/external/bsd/drm2/drm/
H A Ddrm_gem_framebuffer_helper.c48 * drm_gem_fb_destroy(fb)
58 drm_gem_fb_destroy(struct drm_framebuffer *fb) argument
62 for (plane = 0; plane < __arraycount(fb->obj); plane++)
63 drm_gem_object_put_unlocked(fb->obj[plane]);
64 drm_framebuffer_cleanup(fb);
65 kfree(fb);
69 * drm_gem_fb_create_handle(fb, file, handlep)
72 * of fb in the specified drm file namespace, and store it in
78 drm_gem_fb_create_handle(struct drm_framebuffer *fb, struct drm_file *file, argument
82 return drm_gem_handle_create(file, fb
102 struct drm_framebuffer *fb; local
[all...]
/netbsd-current/sys/arch/hp300/dev/
H A Ddiofb.c97 diofb_fbinquire(struct diofb *fb, int scode, struct diofbreg *fbr) argument
102 fb->regaddr = (uint8_t *)IIOP(fbr);
104 fb->regaddr = dio_scodetopa(scode);
106 if (fb->fbwidth == 0 || fb->fbheight == 0) {
107 fb->fbwidth = (fbr->fbwmsb << 8) | fbr->fbwlsb;
108 fb->fbheight = (fbr->fbhmsb << 8) | fbr->fbhlsb;
110 fb->fbsize = fb->fbwidth * fb
164 diofb_fbsetup(struct diofb *fb) argument
230 diofb_resetcmap(struct diofb *fb) argument
292 diofb_cnattach(struct diofb *fb) argument
303 diofb_end_attach(device_t self, struct wsdisplay_accessops *accessops, struct diofb *fb, int console, const char *descr) argument
363 struct diofb *fb = ri->ri_hw; local
380 struct diofb *fb = ri->ri_hw; local
395 struct diofb *fb = ri->ri_hw; local
419 struct diofb *fb = ri->ri_hw; local
443 struct diofb *fb = ri->ri_hw; local
461 struct diofb *fb = v; local
478 struct diofb *fb = v; local
494 struct diofb *fb = v; local
515 diofb_getcmap(struct diofb *fb, struct wsdisplay_cmap *cm) argument
[all...]
/netbsd-current/etc/etc.sun2/
H A Dttyaction5 kd * chown ${USER}:tty /dev/kbd /dev/mouse /dev/fb
/netbsd-current/etc/etc.sun3/
H A Dttyaction5 kd * chown ${USER}:tty /dev/kbd /dev/mouse /dev/fb
/netbsd-current/sys/arch/arm/arm/
H A Dtrap.c46 cpu_jump_onfault(struct trapframe *tf, const struct faultbuf *fb, int val) argument
48 tf->tf_r4 = fb->fb_reg[FB_R4];
49 tf->tf_r5 = fb->fb_reg[FB_R5];
50 tf->tf_r6 = fb->fb_reg[FB_R6];
51 tf->tf_r7 = fb->fb_reg[FB_R7];
52 tf->tf_r8 = fb->fb_reg[FB_R8];
53 tf->tf_r9 = fb->fb_reg[FB_R9];
54 tf->tf_r10 = fb->fb_reg[FB_R10];
55 tf->tf_r11 = fb->fb_reg[FB_R11];
56 tf->tf_r12 = fb
[all...]
/netbsd-current/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/devinit/
H A Dnouveau_nvkm_subdev_devinit_nv10.c45 struct io_mapping *fb; local
54 fb = fbmem_init(device);
55 if (!fb) {
56 nvkm_error(subdev, "failed to map fb\n");
68 fbmem_poke(fb, 0x1c, 0);
70 fbmem_poke(fb, 0x1c, patt);
71 fbmem_poke(fb, 0x3c, 0);
73 if (fbmem_peek(fb, 0x1c) == patt)
85 fbmem_poke(fb, off, patt);
86 fbmem_poke(fb,
[all...]
/netbsd-current/sys/dev/pci/
H A Dlynxfb.c106 #define DPR_READ(fb, reg) \
107 bus_space_read_4((fb)->memt, (fb)->dprh, (reg))
108 #define DPR_WRITE(fb, reg, val) \
109 bus_space_write_4((fb)->memt, (fb)->dprh, (reg), (val))
173 struct lynxfb fb; member in struct:__anon157
199 struct rasops_info *ri = &lynxfb_console.fb.vcs.scr_ri;
200 struct lynxfb *fb; local
219 fb
271 struct lynxfb *fb; local
374 lynxfb_vgats_read(struct lynxfb *fb, uint regno) argument
382 lynxfb_vgats_write(struct lynxfb *fb, uint regno, uint8_t value) argument
398 struct lynxfb *fb = sc->sc_fb; local
508 struct lynxfb *fb = sc->sc_fb; local
544 lynxfb_setup(struct lynxfb *fb) argument
623 lynxfb_wait(struct lynxfb *fb) argument
638 lynxfb_copyrect(struct lynxfb *fb, int sx, int sy, int dx, int dy, int w, int h) argument
664 lynxfb_fillrect(struct lynxfb *fb, int x, int y, int w, int h, int bg) argument
680 lynxfb_copyrows1(struct rasops_info *ri, int src, int dst, int num, struct lynxfb *fb) argument
694 lynxfb_copycols1(struct rasops_info *ri, int row, int src, int dst, int num, struct lynxfb *fb) argument
709 lynxfb_erasecols1(struct rasops_info *ri, int row, int col, int num, long attr, struct lynxfb *fb) argument
725 lynxfb_eraserows1(struct rasops_info *ri, int row, int num, long attr, struct lynxfb *fb) argument
750 struct lynxfb *fb = ri->ri_hw; local
759 struct lynxfb *fb = ri->ri_hw; local
768 struct lynxfb *fb = ri->ri_hw; local
777 struct lynxfb *fb = ri->ri_hw; local
788 struct lynxfb *fb = sc->sc_fb; local
799 struct lynxfb *fb = sc->sc_fb; local
810 struct lynxfb *fb = sc->sc_fb; local
821 struct lynxfb *fb = sc->sc_fb; local
827 lynxfb_blank(struct lynxfb *fb, int enable) argument
[all...]
/netbsd-current/sys/arch/mips/cavium/dev/
H A Docteon_fpa.c105 struct octfpa_buf *fb; local
110 fb = kmem_zalloc(sizeof(*fb) + sizeof(*fb->fb_dma_segs) * nsegs,
112 fb->fb_poolno = poolno;
113 fb->fb_size = size;
114 fb->fb_nelems = nelems;
115 fb->fb_len = size * nelems;
116 fb->fb_dmat = sc->sc_dmat;
117 fb
132 octfpa_buf_get(struct octfpa_buf *fb) argument
146 octfpa_buf_dma_alloc(struct octfpa_buf *fb) argument
[all...]
/netbsd-current/sys/arch/hpcarm/dev/
H A Depsonlcd.c166 struct hpcfb_fbconf *fb = &sc->sc_fb; local
168 if (offset < 0 || (fb->hf_bytes_per_plane + fb->hf_offset) < offset)
175 epsonlcd_setup_hpcfbif(struct epsonlcd_softc *sc, struct hpcfb_fbconf *fb) argument
179 memset(fb, 0, sizeof(struct hpcfb_fbconf));
180 fb->hf_conf_index = 0; /* configuration index */
181 fb->hf_nconfs = 1; /* how many configurations */
183 strncpy(fb->hf_name, "Epson S1D138xx LCD Controller", HPCFB_MAXNAMELEN);
186 strncpy(fb->hf_conf_name, "LCD", HPCFB_MAXNAMELEN);
188 fb
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gas/testsuite/gas/i386/
H A Dx86-64-rdseed-intel.d14 [ ]*[a-f0-9]+: 66 41 0f c7 fb rdseed r11w
15 [ ]*[a-f0-9]+: 41 0f c7 fb rdseed r11d
16 [ ]*[a-f0-9]+: 49 0f c7 fb rdseed r11
17 [ ]*[a-f0-9]+: 66 0f c7 fb rdseed bx
18 [ ]*[a-f0-9]+: 0f c7 fb rdseed ebx
19 [ ]*[a-f0-9]+: 48 0f c7 fb rdseed rbx
20 [ ]*[a-f0-9]+: 66 41 0f c7 fb rdseed r11w
21 [ ]*[a-f0-9]+: 41 0f c7 fb rdseed r11d
22 [ ]*[a-f0-9]+: 49 0f c7 fb rdseed r11

Completed in 260 milliseconds

1234567891011>>