HomeSort by: relevance | last modified time | path
    Searched refs:ri_cols (Results 1 - 25 of 91) sorted by relevancy

1 2 3 4

  /src/sys/dev/wscons/
wsdisplay_vcons.c 325 cnt = (ri->ri_rows + WSDISPLAY_SCROLLBACK_LINES) * ri->ri_cols;
329 scr->scr_offset_to_zero = ri->ri_cols * WSDISPLAY_SCROLLBACK_LINES;
332 cnt = ri->ri_rows * ri->ri_cols;
355 size = ri->ri_cols * ri->ri_rows;
528 scr->scr_type->ncols = ri->ri_cols;
529 DPRINTF("new size %d %d\n", ri->ri_rows, ri->ri_cols);
696 for (j = 0; j < ri->ri_cols; j++) {
759 vdp->cursor_offset = ri->ri_crow * ri->ri_cols + ri->ri_ccol;
795 for (j = 0; j < ri->ri_cols; j++) {
815 vdp->cursor_offset = ri->ri_crow * ri->ri_cols + ri->ri_ccol
    [all...]
  /src/sys/dev/rasops/
rasops_bitops.h 71 if (col + num > ri->ri_cols)
72 num = ri->ri_cols - col;
242 if (src + num > ri->ri_cols)
243 num = ri->ri_cols - src;
250 if (dst + num > ri->ri_cols)
251 num = ri->ri_cols - dst;
rasops.c 424 ri->ri_cols = ri->ri_emuheight / ri->ri_font->fontheight;
428 ri->ri_cols = ri->ri_emuwidth / ri->ri_font->fontwidth;
779 if (src + num > ri->ri_cols)
780 num = ri->ri_cols - src;
787 if (dst + num > ri->ri_cols)
788 num = ri->ri_cols - dst;
837 else if (col < 0 || col >= ri->ri_cols)
1062 row = ri->ri_cols - ri->ri_ccol - 1;
1162 if (col + num > ri->ri_cols)
1163 num = ri->ri_cols - col
    [all...]
rasops1_putchar_width.h 81 if ((unsigned)col >= (unsigned)ri->ri_cols)
rasops.h 122 int ri_cols; /* number of columns (characters, not pels) */ member in struct:rasops_info
rasops24.c 323 if (col + num > ri->ri_cols)
324 num = ri->ri_cols - col;
rasops1-4_putchar.h 107 if ((unsigned)col >= (unsigned)ri->ri_cols)
rasops1.c 112 if ((unsigned)col >= (unsigned)ri->ri_cols)
rasops_putchar.h 117 if ((unsigned)col >= (unsigned)ri->ri_cols)
rasops_putchar_width.h 227 if ((unsigned)col >= (unsigned)ri->ri_cols)
  /src/sys/arch/evbmips/gdium/
gdium_genfb.c 95 gdium_stdscreen.ncols = ri->ri_cols;
  /src/sys/arch/arm/fdt/
arm_simplefb.c 268 if (ri->ri_rows < 1 || ri->ri_cols < 1)
272 arm_simplefb_stdscreen.ncols = ri->ri_cols;
  /src/sys/arch/x86/x86/
genfb_machdep.c 170 x86_genfb_stdscreen.ncols = ri->ri_cols;
  /src/sys/dev/sun/
bwtwo.c 296 bwtwo_defaultscreen.ncols = ri->ri_cols;
315 bwtwo_defaultscreen.ncols = ri->ri_cols;
  /src/sys/arch/prep/pci/
gten.c 179 gt->gt_ri->ri_cols, gt->gt_ri->ri_rows,
235 gten_stdscreen.ncols = ri->ri_cols;
  /src/sys/arch/arm/clps711x/
clpslcd.c 186 clpslcd_descr.ncols = ri->ri_cols;
  /src/sys/arch/evbmips/loongson/
gdium_machdep.c 370 gdium_stdscreen.ncols = ri->ri_cols;
  /src/sys/arch/evbppc/virtex/dev/
tft.c 110 sc->sc_ws_descr->ncols = ri->ri_cols;
  /src/sys/arch/powerpc/oea/
ofw_rascons.c 123 rascons_stdscreen.ncols = ri->ri_cols;
  /src/sys/arch/hp300/dev/
gendiofb.c 182 fb->wsd.ncols = ri->ri_cols;
  /src/sys/arch/zaurus/dev/
w100.c 287 descr->c.ncols = rinfo->ri_cols;
373 descr->c.ncols = rinfo.ri_cols;
  /src/sys/arch/amiga/dev/
grf.c 525 ri->ri_cols = gp->g_defaultscr->ncols;
538 gp->g_rowoffset[i] = i * ri->ri_cols;
  /src/sys/arch/epoc32/windermere/
wmlcd.c 215 wmlcd_descr.ncols = ri->ri_cols;
  /src/sys/dev/hpc/
hpcfb.c 310 sc->sc_dc->dc_rinfo.ri_cols,sc->sc_dc->dc_rinfo.ri_rows);
495 dc->dc_cols = dc->dc_rinfo.ri_cols;
751 dc->dc_rinfo.ri_cols, dc->dc_rinfo.ri_rows);
764 dc->dc_cols = dc->dc_rinfo.ri_cols;
  /src/sys/dev/ic/
ct65550.c 260 chipsfb_defaultscreen.ncols = ri->ri_cols;
609 (unsigned int)col > ri->ri_cols))
719 (unsigned int)col > ri->ri_cols))

Completed in 29 milliseconds

1 2 3 4