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

1 2

  /src/sys/dev/wscons/
wscons_rops.c 223 rcons_allocattr(void *id, int fg, int bg, int flags, long *attrp)
229 *attrp = 1;
231 *attrp = 0;
  /src/sys/dev/isa/
ega.c 336 ega_init_screen(struct ega_config *vc, struct egascreen *scr, const struct wsscreen_descr *type, int existing, long *attrp)
372 res = ega_allocattr(scr, 0, 0, 0, attrp);
797 ega_allocattr(void *id, int fg, int bg, int flags, long *attrp)
810 *attrp = 0x70;
812 *attrp = 0x07;
814 *attrp |= FG_UNDERLINE;
816 *attrp |= FG_INTENSE;
821 *attrp = fgansitopc[fg] | bgansitopc[bg];
823 *attrp = 7;
825 *attrp += 8
    [all...]
pcdisplay.c 427 pcdisplay_allocattr(void *id, int fg, int bg, int flags, long *attrp)
430 *attrp = FG_BLACK | BG_LIGHTGREY;
432 *attrp = FG_LIGHTGREY | BG_BLACK;
  /src/sys/compat/netbsd32/
netbsd32_execve.c 190 syscallarg(const netbsd32_posix_spawnattrp) attrp;
221 if (SCARG_P32(uap, attrp) != NULL) {
223 error = copyin(SCARG_P32(uap, attrp), sa, sizeof(*sa));
  /src/sys/dev/ic/
vga.c 442 const struct wsscreen_descr *type, int existing, long *attrp)
501 WSATTR_WSCOLORS, attrp);
504 res = vga_allocattr(scr, 0, 0, 0, attrp);
1095 vga_allocattr(void *id, int fg, int bg, int flags, long *attrp)
1108 *attrp = 0x70;
1110 *attrp = 0x07;
1112 *attrp |= FG_UNDERLINE;
1114 *attrp |= FG_INTENSE;
1119 *attrp = fgansitopc[fg] | bgansitopc[bg];
1121 *attrp = 7
    [all...]
vga_raster.c 439 const struct wsscreen_descr *type, int existing, long *attrp)
511 WSATTR_WSCOLORS, attrp);
514 res = vga_raster_allocattr(scr, 0, 0, 0, attrp);
1402 vga_raster_allocattr(void *id, int fg, int bg, int flags, long *attrp)
1415 *attrp = 0x70;
1417 *attrp = 0x07;
1419 *attrp |= FG_UNDERLINE;
1421 *attrp |= FG_INTENSE;
1426 *attrp = fgansitopc[fg] | bgansitopc[bg];
1428 *attrp = 7
    [all...]
  /src/sys/arch/newsmips/apbus/
xafb.c 302 void **cookiep, int *ccolp, int *crowp, long *attrp)
314 *attrp = defattr;
  /src/sys/arch/prep/pci/
gten.c 285 int *curxp, int *curyp, long *attrp)
298 *attrp = defattr;
  /src/sys/arch/arm/clps711x/
clpslcd.c 261 int *curxp, int *curyp, long *attrp)
  /src/sys/arch/dreamcast/dev/
pvr.c 398 void **cookiep, int *curxp, int *curyp, long *attrp)
411 *attrp = defattr;
  /src/sys/arch/evbppc/explora/dev/
fb_elb.c 372 int *ccolp, int *crowp, long *attrp)
382 (*ri->ri_ops.allocattr)(ri, 0, 0, 0, attrp);
  /src/sys/arch/playstation2/ee/
gsfb.c 555 int *curxp, int *curyp, long *attrp)
558 *attrp = ATTR_BG_SET(WS_DEFAULT_BG) | ATTR_FG_SET(WS_DEFAULT_FG);
  /src/sys/arch/zaurus/dev/
w100.c 390 void **cookiep, int *curxp, int *curyp, long *attrp)
418 (*scr->rinfo.ri_ops.allocattr)(&scr->rinfo, 0, 0, 0, attrp);
  /src/sys/arch/luna68k/dev/
lunafb.c 529 int *curxp, int *curyp, long *attrp)
540 (*ri->ri_ops.allocattr)(ri, 0, 0, 0, attrp);
  /src/sys/arch/newsmips/dev/
fb.c 443 int *ccolp, int *crowp, long *attrp)
455 *attrp = defattr;
  /src/sys/arch/hp300/dev/
diofb.c 459 void **cookiep, int *curxp, int *curyp, long *attrp)
469 ri->ri_ops.allocattr(ri, 0, 0, 0, attrp);
  /src/sys/arch/epoc32/windermere/
wmlcd.c 289 int *curxp, int *curyp, long *attrp)
  /src/sys/dev/hpc/
hpcfb.c 725 void **cookiep, int *curxp, int *curyp, long *attrp)
779 hpcfb_allocattr(*cookiep, WSCOL_WHITE, WSCOL_BLACK, 0, attrp);
1537 hpcfb_allocattr(void *cookie, int fg, int bg, int flags, long *attrp)
1542 return (rasops_emul.allocattr(ri, fg, bg, flags, attrp));
  /src/sys/uvm/pmap/
pmap.c 420 volatile u_long * const attrp = &mdpg->mdpg_attrs; local in function:pmap_page_clear_attributes
424 u_long old_attr = *attrp;
428 if (old_attr == atomic_cas_ulong(attrp, old_attr, new_attr))
432 u_long old_attr = *attrp;
435 *attrp &= ~clear_attributes;
  /src/sys/arch/sparc64/dev/
ffb.c 1219 ffb_allocattr(void *cookie, int fg, int bg, int flags, long *attrp)
1227 *attrp = (bg & 0xff) << 24 | (fg & 0xff) << 16;
1229 *attrp = (fg & 0xff) << 24 | (bg & 0xff) << 16;
1231 *attrp |= WSATTR_UNDERLINE;
  /src/sys/arch/arm/xscale/
pxa2x0_lcd.c 794 void **cookiep, int *curxp, int *curyp, long *attrp)
823 (*scr->rinfo.ri_ops.allocattr)(&scr->rinfo, 0, 0, 0, attrp);
  /src/sys/arch/vax/uba/
qv.c 763 qv_allocattr(void *id, int fg, int bg, int flags, long *attrp)
765 *attrp = flags;
  /src/sys/dev/tc/
cfb.c 448 int *curxp, int *curyp, long *attrp)
461 *attrp = defattr;
mfb.c 412 int *curxp, int *curyp, long *attrp)
425 *attrp = defattr;
tfb.c 486 int *curxp, int *curyp, long *attrp)
499 *attrp = defattr;

Completed in 40 milliseconds

1 2