| /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/external/mit/xorg/lib/fontconfig/etc/conf.avail/ |
| Makefile | 15 10-sub-pixel-none.conf \ 16 10-sub-pixel-bgr.conf \ 17 10-sub-pixel-rgb.conf \ 18 10-sub-pixel-vbgr.conf \ 19 10-sub-pixel-vrgb.conf \
|
| /src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| vec_types.h | 39 #define vec_pixel8 __vector pixel
|
| /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/ |
| vec_types.h | 39 #define vec_pixel8 __vector pixel
|
| /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/external/mit/xorg/lib/fontconfig/etc/conf.d/ |
| Makefile | 10 10-sub-pixel-rgb.conf \
|
| /src/external/mit/xorg/lib/pixman/test/ |
| Makefile | 29 pixel-test \
|
| /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/external/apache2/llvm/dist/clang/lib/Headers/ |
| altivec.h | 67 static __inline__ vector pixel __ATTRS_o_ai vec_perm(vector pixel __a, 68 vector pixel __b, 4043 static __inline__ vector pixel __ATTRS_o_ai vec_ld(int __a, 4044 const vector pixel *__b) { 4045 return (vector pixel)__builtin_altivec_lvx(__a, __b); 4132 static __inline__ vector pixel __ATTRS_o_ai vec_lvx(int __a, 4133 const vector pixel *__b) { 4134 return (vector pixel)__builtin_altivec_lvx(__a, __b); 4295 static __inline__ vector pixel __ATTRS_o_ai vec_ldl(int __a [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/external/gpl3/gdb.old/dist/sim/bfin/ |
| gui.c | 44 void (*GetRGB) (Uint32 pixel, const SDL_PixelFormat * const fmt, Uint8 *r, Uint8 *g, Uint8 *b); 50 void (*GetRGB) (Uint32 pixel, const SDL_PixelFormat *fmt, Uint8 *r, Uint8 *g, Uint8 *b); 216 /* Exract the packed source pixel; RGB or BGR. */ 224 /* Unpack the source pixel into its components. */ 226 /* Translate into the screen pixel format. */ 325 /* Since we declare the pixel formats above for SDL 1, we have the bpp 327 we can't assume the Blackfin pixel format sizes always match SDL. */
|
| /src/external/gpl3/gdb/dist/sim/bfin/ |
| gui.c | 44 void (*GetRGB) (Uint32 pixel, const SDL_PixelFormat * const fmt, Uint8 *r, Uint8 *g, Uint8 *b); 50 void (*GetRGB) (Uint32 pixel, const SDL_PixelFormat *fmt, Uint8 *r, Uint8 *g, Uint8 *b); 216 /* Exract the packed source pixel; RGB or BGR. */ 224 /* Unpack the source pixel into its components. */ 226 /* Translate into the screen pixel format. */ 325 /* Since we declare the pixel formats above for SDL 1, we have the bpp 327 we can't assume the Blackfin pixel format sizes always match SDL. */
|
| /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;
|
| /src/external/mit/xorg/lib/libGL/ |
| Makefile | 38 pixel.c \
|
| /src/external/mit/xorg/lib/libGL.old/ |
| Makefile | 38 pixel.c \
|