Home
last modified time | relevance | path

Searched defs:scr (Results 1 – 25 of 101) sorted by relevance

12345

/netbsd/src/sys/dev/wscons/
Dwsdisplay_vcons.c165 vcons_use_intr(const struct vcons_screen *scr) in vcons_use_intr()
175 vcons_dirty(struct vcons_screen *scr) in vcons_dirty()
268 vcons_lock(struct vcons_screen *scr) in vcons_lock()
282 vcons_unlock(struct vcons_screen *scr) in vcons_unlock()
297 struct vcons_screen *scr, int exists, in vcons_dummy_init_screen()
311 vcons_alloc_buffers(struct vcons_data *vd, struct vcons_screen *scr) in vcons_alloc_buffers()
374 vcons_init_screen(struct vcons_data *vd, struct vcons_screen *scr, in vcons_init_screen()
462 struct vcons_screen *scr = cookie; in vcons_load_font() local
596 struct vcons_screen *scr, *oldscr; in vcons_do_switch() local
664 vcons_redraw_screen(struct vcons_screen *scr) in vcons_redraw_screen()
[all …]
Dwsdisplay_vconsvar.h95 #define SCREEN_IS_VISIBLE(scr) (((scr)->scr_status & VCONS_IS_VISIBLE) != 0) argument
96 #define SCREEN_IS_BUSY(scr) (membar_consumer(), (scr)->scr_busy != 0) argument
97 #define SCREEN_CAN_DRAW(scr) (((scr)->scr_flags & VCONS_DONT_DRAW) == 0) argument
98 #define SCREEN_BUSY(scr) ((scr)->scr_busy = 1, membar_producer()) argument
99 #define SCREEN_IDLE(scr) ((scr)->scr_busy = 0, membar_producer()) argument
100 #define SCREEN_VISIBLE(scr) ((scr)->scr_status |= VCONS_IS_VISIBLE) argument
101 #define SCREEN_INVISIBLE(scr) ((scr)->scr_status &= ~VCONS_IS_VISIBLE) argument
102 #define SCREEN_DISABLE_DRAWING(scr) ((scr)->scr_flags |= VCONS_DONT_DRAW) argument
103 #define SCREEN_ENABLE_DRAWING(scr) ((scr)->scr_flags &= ~VCONS_DONT_DRAW) argument
Dwsdisplay.c229 #define WSSCREEN_HAS_EMULATOR(scr) ((scr)->scr_dconf->wsemul != NULL) argument
230 #define WSSCREEN_HAS_TTY(scr) ((scr)->scr_tty != NULL) argument
296 struct wsscreen *scr = priv; in wsscreen_getc_poll() local
320 struct wsscreen *scr; in wsscreen_attach() local
377 wsscreen_detach(struct wsscreen *scr) in wsscreen_detach()
404 const struct wsscreen_descr *scr; in wsdisplay_screentype_pick() local
446 struct wsscreen *scr; in wsdisplay_addscreen() local
498 wsdisplay_closescreen(struct wsdisplay_softc *sc, struct wsscreen *scr) in wsdisplay_closescreen()
530 struct wsscreen *scr; in wsdisplay_scroll() local
558 struct wsscreen *scr; in wsdisplay_delscreen() local
[all …]
Dwsdisplay_vcons_util.c50 vcons_replay_msgbuf(struct vcons_screen *scr) in vcons_replay_msgbuf()
/netbsd/src/sys/dev/ic/
Dpcdisplay_subr.c47 pcdisplay_cursor_init(struct pcdisplayscreen *scr, int existing) in pcdisplay_cursor_init()
93 struct pcdisplayscreen *scr = id; in pcdisplay_cursor() local
158 struct pcdisplayscreen *scr = id; in pcdisplay_putchar() local
181 struct pcdisplayscreen *scr = id; in pcdisplay_copycols() local
202 struct pcdisplayscreen *scr = id; in pcdisplay_erasecols() local
224 struct pcdisplayscreen *scr = id; in pcdisplay_copyrows() local
246 struct pcdisplayscreen *scr = id; in pcdisplay_eraserows() local
270 struct pcdisplayscreen *scr = id; in pcdisplay_replaceattr() local
299 pcdisplay_getwschar(struct pcdisplayscreen *scr, struct wsdisplay_char *wschar) in pcdisplay_getwschar()
329 pcdisplay_putwschar(struct pcdisplayscreen *scr, struct wsdisplay_char *wschar) in pcdisplay_putwschar()
Dsti.c194 struct sti_screen *scr; in sti_attach_screen() local
399 sti_region_setup(struct sti_screen *scr) in sti_region_setup()
497 sti_screen_setup(struct sti_screen *scr, int flags) in sti_screen_setup()
738 sti_describe_screen(struct sti_softc *sc, struct sti_screen *scr) in sti_describe_screen()
773 struct sti_screen *scr = sc->sc_scr; in sti_end_attach() local
823 sti_fetchfonts(struct sti_screen *scr, struct sti_inqconfout *cfg, in sti_fetchfonts()
944 sti_init(struct sti_screen *scr, int mode) in sti_init()
995 sti_inqcfg(struct sti_screen *scr, struct sti_inqconfout *out) in sti_inqcfg()
1012 sti_bmove(struct sti_screen *scr, int x1, int y1, int x2, int y2, int h, int w, in sti_bmove()
1057 sti_setcment(struct sti_screen *scr, u_int i, u_char r, u_char g, u_char b) in sti_setcment()
[all …]
Dvga_raster.c334 const struct wsscreen_descr *scr; in vga_cnattach() local
438 vga_raster_init_screen(struct vga_config *vc, struct vgascreen *scr, in vga_raster_init_screen()
705 struct vgascreen *scr; in vga_raster_alloc_screen() local
752 struct vgascreen *scr = cookie, *oldscr; in vga_raster_show_screen() local
776 struct vgascreen *scr, *oldscr; in vga_switch_screen() local
846 vga_raster_setup_font(struct vga_config *vc, struct vgascreen *scr) in vga_raster_setup_font()
1039 vga_raster_cursor_init(struct vgascreen *scr, int existing) in vga_raster_cursor_init()
1067 struct vgascreen *scr = id; in vga_raster_cursor() local
1114 struct vgascreen *scr = id; in vga_raster_mapchar() local
1127 struct vgascreen *scr = id; in vga_raster_putchar() local
[all …]
Dvga.c323 egavga_getfont(struct vga_config *vc, struct vgascreen *scr, const char *name, in egavga_getfont()
402 vga_selectfont(struct vga_config *vc, struct vgascreen *scr, const char *name1, in vga_selectfont()
441 vga_init_screen(struct vga_config *vc, struct vgascreen *scr, in vga_init_screen()
668 const struct wsscreen_descr *scr; in vga_cnattach() local
783 struct vgascreen *scr = vs; in vga_ioctl() local
867 struct vgascreen *scr; in vga_alloc_screen() local
958 vga_setfont(struct vga_config *vc, struct vgascreen *scr) in vga_setfont()
981 struct vgascreen *scr = cookie, *oldscr; in vga_show_screen() local
1005 struct vgascreen *scr, *oldscr; in vga_doswitch() local
1074 struct vgascreen *scr = cookie; in vga_load_font() local
[all …]
Digsfb.c411 igsfb_init_wsdisplay(void *cookie, struct vcons_screen *scr, int existing, in igsfb_init_wsdisplay()
510 igsfb_make_text_cursor(struct igsfb_devconfig *dc, struct vcons_screen *scr) in igsfb_make_text_cursor()
1151 struct vcons_screen *scr = ri->ri_hw; in igsfb_accel_cursor() local
1272 struct vcons_screen *scr = ri->ri_hw; in igsfb_accel_copyrows() local
1295 struct vcons_screen *scr = ri->ri_hw; in igsfb_accel_copycols() local
1318 struct vcons_screen *scr = ri->ri_hw; in igsfb_accel_eraserows() local
1348 struct vcons_screen *scr = ri->ri_hw; in igsfb_accel_erasecols() local
1378 struct vcons_screen *scr = ri->ri_hw; in igsfb_accel_putchar() local
/netbsd/src/sys/arch/zaurus/dev/
Dw100.c188 struct w100_screen *scr; in w100_attach_subr() local
235 struct w100_screen *scr = NULL; in w100_new_screen() local
393 struct w100_screen *scr; in w100_alloc_screen() local
431 struct w100_screen *scr = cookie; in w100_free_screen() local
442 struct w100_screen *scr = sc->active; /* ??? */ in w100_ioctl() local
495 struct w100_screen *scr = sc->active; /* ??? */ in w100_mmap() local
511 struct w100_screen *scr = cookie; in w100_cursor() local
519 struct w100_screen *scr = cookie; in w100_mapchar() local
527 struct w100_screen *scr = cookie; in w100_putchar() local
535 struct w100_screen *scr = cookie; in w100_copycols() local
[all …]
/netbsd/src/sys/arch/arm/s3c2xx0/
Ds3c24x0_lcd.c186 struct s3c24x0_lcd_screen *scr) in s3c24x0_lcd_start_dma()
312 struct s3c24x0_lcd_screen *scr = NULL; in s3c24x0_lcd_new_screen() local
433 init_palette(struct s3c24x0_lcd_softc *sc, struct s3c24x0_lcd_screen *scr) in init_palette()
494 struct s3c24x0_lcd_screen *scr = cookie, *old; in s3c24x0_lcd_show_screen() local
519 struct s3c24x0_lcd_screen *scr; in s3c24x0_lcd_alloc_screen() local
592 struct s3c24x0_lcd_screen *scr = cookie; in s3c24x0_lcd_free_screen() local
620 struct s3c24x0_lcd_screen *scr; in s3c24x0_lcd_ioctl() local
739 struct s3c24x0_lcd_screen *scr = cookie; in s3c24x0_lcd_cursor() local
747 struct s3c24x0_lcd_screen *scr = cookie; in s3c24x0_lcd_mapchar() local
755 struct s3c24x0_lcd_screen *scr = cookie; in s3c24x0_lcd_putchar() local
[all …]
/netbsd/src/sys/arch/arm/xscale/
Dpxa2x0_lcd.c268 struct pxa2x0_lcd_screen *scr; in pxa2x0_lcd_attach_sub() local
334 struct pxa2x0_lcd_screen *scr) in pxa2x0_lcd_start_dma()
480 struct pxa2x0_lcd_screen *scr = NULL; in pxa2x0_lcd_new_screen() local
777 struct pxa2x0_lcd_screen *scr = cookie, *old; in pxa2x0_lcd_show_screen() local
797 struct pxa2x0_lcd_screen *scr; in pxa2x0_lcd_alloc_screen() local
836 struct pxa2x0_lcd_screen *scr = cookie; in pxa2x0_lcd_free_screen() local
861 struct pxa2x0_lcd_screen *scr = sc->active; /* ??? */ in pxa2x0_lcd_ioctl() local
917 struct pxa2x0_lcd_screen *scr = sc->active; /* ??? */ in pxa2x0_lcd_mmap() local
935 struct pxa2x0_lcd_screen *scr = cookie; in pxa2x0_lcd_cursor() local
943 struct pxa2x0_lcd_screen *scr = cookie; in pxa2x0_lcd_mapchar() local
[all …]
/netbsd/src/sys/arch/hp300/dev/
Dsti_machdep.c135 struct sti_screen *scr; in sti_machdep_attach() local
204 sti_evrx_putcmap(struct sti_screen *scr, u_int index, u_int count) in sti_evrx_putcmap()
228 sti_evrx_resetramdac(struct sti_screen *scr) in sti_evrx_resetramdac()
278 sti_evrx_resetcmap(struct sti_screen *scr) in sti_evrx_resetcmap()
303 sti_evrx_setupfb(struct sti_screen *scr) in sti_evrx_setupfb()
313 struct sti_screen *scr = (struct sti_screen *)v; in sti_m68k_mmap() local
/netbsd/src/external/bsd/nvi/dist/motif_l/
Dm_motif.h29 #define ToRowCol( scr, lin, r, c ) \ argument
32 #define Linear( scr, y, x ) \ argument
34 #define CharAt( scr, y, x ) \ argument
36 #define FlagAt( scr, y, x ) \ argument
39 #define XPOS( scr, x ) \ argument
41 #define YTOP( scr, y ) \ argument
43 #define YPOS( scr, y ) \ argument
46 #define ROW( scr, y ) \ argument
49 #define COLUMN( scr, x ) \ argument
/netbsd/src/external/bsd/openldap/dist/servers/slapd/
Dcr.c121 ContentRule *scr, in cr_insert()
179 ContentRule *scr, in cr_add_auxiliaries()
219 ContentRule *scr, in cr_create_required()
255 ContentRule *scr, in cr_create_allowed()
293 ContentRule *scr, in cr_create_precluded()
341 ContentRule *scr; in cr_add() local
/netbsd/src/sys/dev/isa/
Dega.c286 ega_selectfont(struct ega_config *vc, struct egascreen *scr, char *name1, char *name2) in ega_selectfont()
336 ega_init_screen(struct ega_config *vc, struct egascreen *scr, const struct wsscreen_descr *type, in… in ega_init_screen()
532 const struct wsscreen_descr *scr; in ega_cnattach() local
586 struct egascreen *scr; in ega_alloc_screen() local
634 ega_setfont(struct ega_config *vc, struct egascreen *scr) in ega_setfont()
651 struct egascreen *scr = cookie, *oldscr; in ega_show_screen() local
675 struct egascreen *scr, *oldscr; in ega_doswitch() local
745 struct egascreen *scr = cookie; in ega_load_font() local
799 struct egascreen *scr = id; in ega_allocattr() local
835 struct egascreen *scr = id; in ega_copyrows() local
/netbsd/src/sys/arch/evbarm/mini2440/
Dmini2440_lcd.c327 struct s3c24x0_lcd_screen *scr = sc->active; in lcdmmap() local
345 struct s3c24x0_lcd_screen *scr) in draw_test_pattern_16()
383 struct s3c24x0_lcd_screen *scr) in draw_test_pattern_8()
408 draw_test_pattern(struct s3c24x0_lcd_softc *sc, struct s3c24x0_lcd_screen *scr) in draw_test_pattern()
/netbsd/src/sys/arch/evbarm/smdk2xx0/
Dsmdk2410_lcd.c290 struct s3c24x0_lcd_screen *scr = sc->active; in lcdmmap() local
308 struct s3c24x0_lcd_screen *scr) in draw_test_pattern_16()
346 struct s3c24x0_lcd_screen *scr) in draw_test_pattern_8()
371 draw_test_pattern(struct s3c24x0_lcd_softc *sc, struct s3c24x0_lcd_screen *scr) in draw_test_pattern()
/netbsd/src/sys/arch/amiga/dev/
Damidisplaycc.c505 adccscr_t * scr; in amidisplaycc_cursor() local
525 amidisplaycc_cursor_undraw(struct amidisplaycc_screen * scr) in amidisplaycc_cursor_undraw()
534 amidisplaycc_cursor_draw(struct amidisplaycc_screen * scr) in amidisplaycc_cursor_draw()
543 amidisplaycc_cursor_xor(struct amidisplaycc_screen * scr, int row, int col) in amidisplaycc_cursor_xor()
582 adccscr_t * scr; in amidisplaycc_putchar() local
704 adccscr_t * scr; in amidisplaycc_copycols() local
756 adccscr_t * scr; in amidisplaycc_erasecols() local
801 adccscr_t * scr; in amidisplaycc_copyrows() local
929 adccscr_t * scr; in amidisplaycc_eraserows() local
995 adccscr_t * scr; in amidisplaycc_allocattr() local
[all …]
Dmntva.c259 mntva_init_screen(void *cookie, struct vcons_screen *scr, int existing, in mntva_init_screen()
390 struct vcons_screen *scr; in mntva_copyrows() local
412 struct vcons_screen *scr; in mntva_eraserows() local
439 struct vcons_screen *scr; in mntva_copycols() local
462 struct vcons_screen *scr; in mntva_erasecols() local
/netbsd/src/sys/dev/pci/
Dwcfb.c495 wcfb_init_screen(void *cookie, struct vcons_screen *scr, in wcfb_init_screen()
550 struct vcons_screen *scr = ri->ri_hw; in wcfb_putchar() local
584 struct vcons_screen *scr = ri->ri_hw; in wcfb_cursor() local
625 struct vcons_screen *scr = ri->ri_hw; in wcfb_copycols() local
649 struct vcons_screen *scr = ri->ri_hw; in wcfb_erasecols() local
674 struct vcons_screen *scr = ri->ri_hw; in wcfb_copyrows() local
699 struct vcons_screen *scr = ri->ri_hw; in wcfb_eraserows() local
847 struct vcons_screen *scr = ri->ri_hw; in wcfb_acc_putchar() local
874 struct vcons_screen *scr = ri->ri_hw; in wcfb_acc_cursor() local
908 struct vcons_screen *scr = ri->ri_hw; in wcfb_acc_copycols() local
[all …]
/netbsd/src/sys/arch/evbppc/virtex/dev/
Dtft.c141 tft_init_screen(void *cookie, struct vcons_screen *scr, int existing, in tft_init_screen()
212 tft_ioctl(void *arg, void *scr, u_long cmd, void *data, int flag, in tft_ioctl()
/netbsd/src/sys/arch/arm/imx/
Dimx51_ipuv3.c637 struct imx51_ipuv3_screen *scr; in imx51_ipuv3_attach_sub() local
730 struct imx51_ipuv3_screen *scr, in imx51_ipuv3_build_param()
827 struct imx51_ipuv3_screen *scr) in imx51_ipuv3_start_dma()
876 struct imx51_ipuv3_screen *scr) in imx51_ipuv3_allocmem()
923 struct imx51_ipuv3_screen *scr = NULL; in imx51_ipuv3_new_screen() local
/netbsd/src/sys/dev/sdmmc/
Dsdmmcreg.h353 #define SCR_STRUCTURE(scr) MMC_RSP_BITS((scr), 60, 4) argument
355 #define SCR_SD_SPEC(scr) MMC_RSP_BITS((scr), 56, 4) argument
359 #define SCR_DATA_STAT_AFTER_ERASE(scr) MMC_RSP_BITS((scr), 55, 1) argument
360 #define SCR_SD_SECURITY(scr) MMC_RSP_BITS((scr), 52, 3) argument
364 #define SCR_SD_BUS_WIDTHS(scr) MMC_RSP_BITS((scr), 48, 4) argument
367 #define SCR_SD_SPEC3(scr) MMC_RSP_BITS((scr), 47, 1) argument
368 #define SCR_EX_SECURITY(scr) MMC_RSP_BITS((scr), 43, 4) argument
369 #define SCR_SD_SPEC4(scr) MMC_RSP_BITS((scr), 42, 1) argument
370 #define SCR_RESERVED(scr) MMC_RSP_BITS((scr), 34, 9) argument
371 #define SCR_CMD_SUPPORT_CMD48(scr) MMC_RSP_BITS((scr), 34, 1) argument
[all …]
/netbsd/src/sys/arch/sgimips/gio/
Dnewport.c685 newport_init_screen(void *cookie, struct vcons_screen *scr, in newport_init_screen()
722 struct vcons_screen *scr = ri->ri_hw; in newport_cursor() local
752 struct vcons_screen *scr = ri->ri_hw; in newport_putchar() local
814 struct vcons_screen *scr = ri->ri_hw; in newport_copycols() local
831 struct vcons_screen *scr = ri->ri_hw; in newport_erasecols() local
847 struct vcons_screen *scr = ri->ri_hw; in newport_copyrows() local
864 struct vcons_screen *scr = ri->ri_hw; in newport_eraserows() local

12345