| /src/sys/arch/hpcarm/dev/ |
| ipaq_lcdreg.h | 54 #define CR1_PPL(pixel) ((pixel) - 16) /* PPL ; Pixel per line 56 #define CR1_HSW(pixel) (((pixel) - 1) << 10) /* HSW ; */ 57 #define CR1_ELW(pixel) (((pixel) - 1) << 16) /* ELW ; */ 58 #define CR1_BLW(pixel) (((pixel) - 1) << 24) /* BLW ; */ 69 #define CR3_PCD(div) (((div) - 4)/2) /* PCD ; Pixel clock divisor * [all...] |
| /src/sys/arch/powerpc/tools/chrpicon/ |
| chrpicon.h | 60 void CHRPI_writeicon(FILE *fp, pixel **pixels, CHRPI_spec img); 62 void CHRPI_putbitmap(FILE *, pixel** pixels, CHRPI_spec img);
|
| /src/sys/arch/powerpc/tools/chrpicon/ppmtochrpicon/ |
| ppmtochrpicon.c | 66 pixel **pixels; 104 CHRPI_writeicon(FILE *fp, pixel **pixels, CHRPI_spec img) 127 CHRPI_putbitmap(FILE *fp, pixel** pixels, CHRPI_spec img) 130 pixel *pP;
|
| /src/usr.sbin/tpctl/ |
| main.c | 356 drawcross(struct fb *fb, int x, int y, int size, fb_pixel_t pixel) 360 fb_drawline(fb, x, y - size + 1, x, y - 1, pixel); 361 fb_drawline(fb, x + 1, y - size + 1, x + 1, y - 1, pixel); 362 fb_drawline(fb, x, y + 2, x, y + size, pixel); 363 fb_drawline(fb, x + 1, y + 2, x + 1, y + size, pixel); 365 fb_drawline(fb, x - size + 1, y, x - 1, y, pixel); 366 fb_drawline(fb, x - size + 1, y + 1, x - 1, y + 1, pixel); 367 fb_drawline(fb, x + 2, y, x + size, y, pixel); 368 fb_drawline(fb, x + 2, y + 1, x + size, y + 1, pixel);
|
| fb.c | 179 __fb_put_pixel(struct fb *fb, fb_pixel_t pixel, int width, int x) 185 pixel <<= -x; 187 fb->linecache[0] = (fb->linecache[0]&~mask) | (pixel&~mask); 191 *dst = (*dst & ~(mask>>x)) | ((pixel>>x) & (mask>>x)); 196 *dst = (*dst & ~(mask<<x)) | ((pixel<<x) & (mask<<x)); 260 fb_drawpixel(struct fb *fb, int x, int y, fb_pixel_t pixel) 289 __fb_put_pixel(fb, pixel, fb->conf.hf_pixel_width, x); 293 fb_drawline(struct fb *fb, int x0, int y0, int x1, int y1, fb_pixel_t pixel) 312 fb_drawpixel(fb, x0, i, pixel); 332 fb_drawpixel(fb, i, y0, pixel); [all...] |
| /src/sys/arch/powerpc/tools/chrpicon/chrpicontoppm/ |
| chrpicontoppm.c | 67 pixel *pixelrow; 68 pixel *pP;
|
| /src/sys/arch/vax/vsa/ |
| spx.c | 316 /* Linear pixel address */ 324 /* Recalculate absolute pixel address from linear address */ 1381 int i, j, k, ch, pixel; local 1387 pixel = ((i * spx_font.fontheight)+ j) * spx_font.fontwidth; 1390 fontaddr[pixel++] = 0xff; 1392 fontaddr[pixel++] = 0x00; 1395 pixel = (((i + 256) * spx_font.fontheight) + j) 1399 fontaddr[pixel++] = 0xff; 1401 fontaddr[pixel++] = 0x00; 1408 int i, j, k, ch, pixel; local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/nouveau/dispnv04/ |
| nouveau_dispnv04_crtc.c | 931 uint32_t pixel; local 936 pixel = nouveau_bo_rd32(src, i*64 + j); 938 nouveau_bo_wr16(dst, i*width + j, (pixel & 0x80000000) >> 16 939 | (pixel & 0xf80000) >> 9 940 | (pixel & 0xf800) >> 6 941 | (pixel & 0xf8) >> 3); 949 uint32_t pixel; local 959 pixel = nouveau_bo_rd32(src, i); 966 alpha = pixel >> 24; 968 pixel = (pixel & 0x00ffffff) | ((alpha + 1) << 24) [all...] |
| /src/sys/arch/usermode/usermode/ |
| thunk.c | 1254 fprintf(stdout, " pixel [%02x %02x %02x %02x]", 1255 update->pixel[0], update->pixel[1], 1256 update->pixel[2], update->pixel[3]); 1278 memcpy(p, update->pixel, 4); p += 4; 1280 memcpy(p, update->pixel, 4); p += 4; 1582 thunk_rfb_fillrect(thunk_rfb_t *rfb, int x, int y, int w, int h, uint8_t *pixel) 1602 memcpy(update->pixel, pixel, 4) [all...] |
| /src/sys/arch/sparc/include/ |
| cgtworeg.h | 34 * 0x100000 pixel map - used by the X server in color mode 68 /* arrangement of pixel mode memory */ 70 u_char pixel[CG2_HEIGHT][CG2_WIDTH]; member in union:byteplane 77 * Normal memory maps in bit plane and pixel modes 81 union byteplane pixplane; /* pixel map */
|
| /src/sys/arch/sun3/include/ |
| cg2reg.h | 34 * 0x100000 pixel map - used by the X server in color mode 54 /* arrangement of pixel mode memory */ 56 u_char pixel[CG2_HEIGHT][CG2_WIDTH]; member in union:byteplane 63 * Normal memory maps in bit plane and pixel modes 67 union byteplane pixplane; /* pixel map */
|
| /src/sys/dev/pci/voyager/ |
| voyagerfb.c | 996 uint32_t pixel; local 1050 pixel = bg; 1052 pixel = fg; 1057 pixel = (r & 0xff00) << 8 | 1062 SM502_DATAPORT, pixel); 1086 uint32_t pixel = 0, latch = 0, bg8, fg8; local 1150 pixel = bg8; 1152 pixel = fg8; 1157 pixel = ((r & 0xe000) >> 8) | 1161 latch = (latch << 8) | pixel; [all...] |
| /src/sys/arch/usermode/include/ |
| thunk.h | 225 uint8_t pixel[4]; member in struct:__anon2158
|
| /src/sys/dev/ic/ |
| ct65550.c | 602 uint32_t bg, latch = 0, bg8, fg8, pixel, dst, stride, size; local 675 pixel = bg8; 677 pixel = fg8; 682 pixel = ((r & 0xe000) >> 8) | 686 latch |= pixel << off;
|
| /src/sys/dev/pci/ |
| r128fb.c | 938 uint32_t bg, latch = 0, bg8, fg8, pixel; local 1009 pixel = bg8; 1011 pixel = fg8; 1016 pixel = ((r & 0xe000) >> 8) | 1020 latch = (latch << 8) | pixel;
|
| voodoofb.c | 801 uint32_t bg, latch = 0, bg8, fg8, pixel, save_offset = 0; local 877 pixel = bg8; 879 pixel = fg8; 884 pixel = ((r & 0xe000) >> 8) | 888 latch = (latch << 8) | pixel; 900 * can process simple pixel data but I have been wrong 1752 * How do we know our max. pixel clock?
|
| pm3fb.c | 965 uint32_t bg, fg, pixel, latch, aval; local 1038 pixel = bg; 1040 pixel = fg; 1045 pixel = ((r & 0xe000) >> 8) | 1049 latch |= pixel << shift;
|
| radeonfb.c | 3180 uint32_t pixel; local 3251 pixel = bg; 3253 pixel = fg; 3258 pixel = (r & 0xff00) << 8 | 3264 PUT32(sc, RADEON_HOST_DATA0, pixel); 3280 uint32_t bg, fg, latch = 0, bg8, fg8, pixel, gmc; local 3355 pixel = bg8; 3357 pixel = fg8; 3362 pixel = ((r & 0xe000) >> 8) | 3366 latch |= pixel << (8 * (i & 3)) [all...] |
| machfb.c | 1634 uint32_t bg, fg, latch = 0, bg8, fg8, pixel; local 1700 pixel = bg8; 1702 pixel = fg8; 1707 pixel = ((r & 0xe000) >> 8) | 1711 latch = (latch << 8) | pixel;
|
| pm2fb.c | 875 DPRINTF("pixel size: %08x\n", 1139 uint32_t bg, fg, pixel, /*bg32,*/ fg32, aval; local 1229 pixel = fg32 | (aval << 24); 1232 PM2_RE_COLOUR, pixel);
|
| /src/sys/dev/sbus/ |
| p9100.c | 1164 uint32_t bg, latch = 0, bg8, fg8, pixel; local 1226 pixel = bg8; 1228 pixel = fg8; 1233 pixel = ((r & 0xe000) >> 8) | 1237 latch = (latch << 8) | pixel;
|
| /src/sys/dev/sun/ |
| cgsix.c | 1419 uint32_t bg, latch = 0, bg8, fg8, pixel; local 1486 pixel = bg8; 1488 pixel = fg8; 1493 pixel = ((r & 0xe000) >> 8) | 1499 latch |= pixel << shift;
|
| /src/sys/arch/hppa/dev/ |
| gftfb.c | 963 /* pixel address in 32bit since we're in AddrLong mode */ 969 * ...and now we hammer pixel data into BINC, moving down. 1033 uint32_t latch = 0, bg8, fg8, pixel, mask; local 1106 pixel = bg8; 1108 pixel = fg8; 1113 pixel = ((r & 0xe000) >> 8) | 1117 latch = (latch << 8) | pixel;
|
| hyperfb.c | 1024 * in reality it's a bit mask applied per pixel, 1166 /* pixel address in 32bit since we're in AddrLong mode */ 1172 * ...and now we hammer pixel data into BINC, moving down. 1235 uint32_t latch = 0, bg8, fg8, pixel, mask; local 1307 pixel = bg8; 1309 pixel = fg8; 1314 pixel = ((r & 0xe000) >> 8) | 1318 latch = (latch << 8) | pixel;
|
| /src/sys/arch/sparc/dev/ |
| cgfourteen.c | 1688 uint32_t bg, fg, addr, bg8, fg8, pixel, in, q, next; local 1745 pixel = bg8; 1747 pixel = fg8; 1752 pixel = ((r & 0xe000) >> 8) | 1760 sx_write(sc->sc_sx, SX_QUEUED(j + 8), pixel);
|