Home
last modified time | relevance | path

Searched refs:color (Results 1 – 25 of 65) sorted by relevance

123

/linux-2.4.37.9/drivers/video/sis/
Dsis_accel.h201 #define SiS300SetupPATFG(color) \ argument
203 MMIO_OUT32(ivideo->mmio_vbase, BR(7), color);\
206 #define SiS300SetupPATBG(color) \ argument
208 MMIO_OUT32(ivideo->mmio_vbase, BR(8), color);\
211 #define SiS300SetupSRCFG(color) \ argument
213 MMIO_OUT32(ivideo->mmio_vbase, BR(9), color);\
216 #define SiS300SetupSRCBG(color) \ argument
218 MMIO_OUT32(ivideo->mmio_vbase, BR(10), color);\
225 #define SiS300SetupSRCTrans(color) \ argument
227 MMIO_OUT32(ivideo->mmio_vbase, 0x8224, color);\
[all …]
Dsis_accel.c165 SiS300SetupForSolidFill(struct sis_video_info *ivideo, u32 color, int rop) in SiS300SetupForSolidFill() argument
167 SiS300SetupPATFG(color) in SiS300SetupForSolidFill()
264 SiS310SetupForSolidFill(struct sis_video_info *ivideo, u32 color, int rop) in SiS310SetupForSolidFill() argument
266 SiS310SetupPATFG(color) in SiS310SetupForSolidFill()
365 case 8: col = rect->color; in fbcon_sis_fillrect()
368 case 32: col = ((u32 *)(info->pseudo_palette))[rect->color]; in fbcon_sis_fillrect()
516 int srcy, int srcx, int height, int width, int color) in fbcon_sis_clear() argument
529 SiS300SetupForSolidFill(ivideo, color, 3); in fbcon_sis_clear()
537 SiS310SetupForSolidFill(ivideo, color, 3); in fbcon_sis_clear()
/linux-2.4.37.9/include/asm-sparc64/
Dpgalloc.h245 int color = 0; in pmd_alloc_one_fast() local
247 if (pte_quicklist[color] == NULL) in pmd_alloc_one_fast()
248 color = 1; in pmd_alloc_one_fast()
249 if((ret = (unsigned long *)pte_quicklist[color]) != NULL) { in pmd_alloc_one_fast()
250 pte_quicklist[color] = (unsigned long *)(*ret); in pmd_alloc_one_fast()
259 unsigned long color = DCACHE_COLOR((unsigned long)pmd); in free_pmd_fast() local
260 *(unsigned long *)pmd = (unsigned long) pte_quicklist[color]; in free_pmd_fast()
261 pte_quicklist[color] = (unsigned long *) pmd; in free_pmd_fast()
276 unsigned long color = VPTE_COLOR(address); in pte_alloc_one_fast() local
279 if((ret = (unsigned long *)pte_quicklist[color]) != NULL) { in pte_alloc_one_fast()
[all …]
/linux-2.4.37.9/arch/ppc/boot/of1275/
Dsetcolor.c15 setcolor(ihandle instance, int color, int red, int green, int blue) in setcolor() argument
23 int color; in setcolor() member
35 args.color = color; in setcolor()
/linux-2.4.37.9/Documentation/fb/
Dinternals.txt62 Pseudo color (FB_VISUAL_PSEUDOCOLOR and FB_VISUAL_STATIC_PSEUDOCOLOR)
65 color (including red, green, and blue intensities) for each possible pixel
66 value, and that color is displayed.
69 True color (FB_VISUAL_TRUECOLOR)
74 Direct color (FB_VISUAL_DIRECTCOLOR)
82 Grayscale and static grayscale are special variants of pseudo color and static
83 pseudo color, where the red, green and blue components are always equal to
Dframebuffer.txt78 the hardware can be queried and set. The color map handling works via ioctls,
87 visible and virtual geometry, depth, color map format, timing, and so on.
92 - You can get and set parts of the color map. Communication is done with 16
93 bits per color part (red, green, blue, transparency) to support all
100 thus doesn't need to know, for example, how the color registers of the concrete
139 still have to specify the color depth (using the Depth keyword) and virtual
159 beams for color models, 1 electron beam for monochrome monitors). The front of
/linux-2.4.37.9/drivers/video/
Dpmag-aa-fb.c279 static u16 color[2] = {0x0000, 0x000f}; in aafb_get_cmap() local
280 static struct fb_cmap aafb_cmap = {0, 2, color, color, color, NULL}; in aafb_get_cmap()
289 u16 color[2] = {0x0000, 0x000f}; in aafb_set_cmap() local
293 && memcmp(cmap->red, color, sizeof(color)) == 0 in aafb_set_cmap()
294 && memcmp(cmap->green, color, sizeof(color)) == 0 in aafb_set_cmap()
295 && memcmp(cmap->blue, color, sizeof(color)) == 0 in aafb_set_cmap()
Damifb.c2658 custom.color[regno&31] = rgb2hw8_high(red, green, blue); in ami_setcolreg()
2660 custom.color[regno&31] = rgb2hw8_low(red, green, blue); in ami_setcolreg()
2667 u_short color, mask; in ami_setcolreg() local
2671 color = rgb2hw2(red, green, blue); in ami_setcolreg()
2674 custom.color[i] = ecs_palette[i] = (ecs_palette[i] & mask) | color; in ami_setcolreg()
2675 mask <<=2; color >>= 2; in ami_setcolreg()
2678 custom.color[i] = ecs_palette[i] = (ecs_palette[i] & mask) | color; in ami_setcolreg()
2682 custom.color[regno] = rgb2hw4(red, green, blue); in ami_setcolreg()
2813 custom.color[0] = rgb2hw8_high(red, green, blue); in ami_do_blank()
2815 custom.color[0] = rgb2hw8_low(red, green, blue); in ami_do_blank()
[all …]
Dfbcon-vga-planes.c89 static inline void setcolor(int color) in setcolor() argument
92 outb(color, GRAPHICS_DATA_REG); in setcolor()
/linux-2.4.37.9/drivers/video/sti/
Dsticon.c335 static u8 sticon_build_attr(struct vc_data *conp, u8 color, u8 intens, in sticon_build_attr() argument
338 u8 attr = ((color & 0x70) >> 1) | ((color & 7)); in sticon_build_attr()
341 color = ((color >> 3) & 0x7) | ((color & 0x7) << 3); in sticon_build_attr()
Dstifb.c246 WRITE_IMAGE_COLOR(struct stifb_info *fb, int index, int color) in WRITE_IMAGE_COLOR() argument
250 WRITE_WORD(color, fb, REG_4); in WRITE_IMAGE_COLOR()
959 u32 color; in stifb_loadcmap() local
968 color = (i << 16) | (i << 8) | i; in stifb_loadcmap()
972 color = ((fb->palette[i].red * 77) + in stifb_loadcmap()
976 color = ((fb->palette[i].red << 16) | in stifb_loadcmap()
981 WRITE_IMAGE_COLOR(fb, i, color); in stifb_loadcmap()
Dsticore.h91 int height, int width, u8 color);
322 u32 color : 1; /* change color during move? */ member
Dsticore.c147 color: 1,
153 int height, int width, u8 color) in sti_set() argument
156 color, color, in sti_set()
/linux-2.4.37.9/drivers/video/aty/
Dmach64_cursor.c67 c->color[i] = (u32)red[i] << 24; in aty_set_cursor_color()
68 c->color[i] |= (u32)green[i] << 16; in aty_set_cursor_color()
69 c->color[i] |= (u32)blue[i] << 8; in aty_set_cursor_color()
70 c->color[i] |= (u32)pixel[i]; in aty_set_cursor_color()
74 aty_st_le32(CUR_CLR0, c->color[0], fb); in aty_set_cursor_color()
75 aty_st_le32(CUR_CLR1, c->color[1], fb); in aty_set_cursor_color()
Datyfb.h94 u32 color[2]; member
369 u_int color, struct fb_info_aty *info);
Dmach64_accel.c226 void aty_rectfill(int dstx, int dsty, u_int width, u_int height, u_int color, in aty_rectfill() argument
240 aty_st_le32(DP_FRGD_CLR, color, info); in aty_rectfill()
/linux-2.4.37.9/lib/
Drbtree.c226 int color; in rb_erase() local
241 color = node->rb_color; in rb_erase()
274 goto color; in rb_erase()
278 color = node->rb_color; in rb_erase()
292 color: in rb_erase()
293 if (color == RB_BLACK) in rb_erase()
/linux-2.4.37.9/drivers/char/
Dconsole_macros.h41 #define color (vc_cons[currcons].d->vc_color) macro
44 #define foreground (color & 0x0f)
45 #define background (color & 0xf0)
Dconsole.c367 u8 a = color; in build_attr()
394 attr = build_attr(currcons, color, intensity, blink, underline, reverse ^ decscnm); in update_attr()
395 video_erase_char = (build_attr(currcons, color, 1, blink, 0, decscnm) << 8) | ' '; in update_attr()
1064 color = def_color; in default_attr()
1137 color = (def_color & 0x0f) | background; in csi_m()
1145 color = (def_color & 0x0f) | background; in csi_m()
1149 color = (def_color & 0xf0) | foreground; in csi_m()
1153 color = color_table[par[i]-30] in csi_m()
1156 color = (color_table[par[i]-40]<<4) in csi_m()
1380 s_color = color; in save_cur()
[all …]
/linux-2.4.37.9/Documentation/
DVGA-softcursor.txt19 want to always change the background color + 64 if you dislike having the
26 groups, low three bits set color (as in normal color codes used by the console)
/linux-2.4.37.9/Documentation/usb/
Dov511.txt13 supports streaming and capture of color or monochrome video via the Video4Linux
114 to 1 will realign the color planes correctly. NOTE: You will likely
223 DESC: Allows picture settings (brightness, contrast, color, and hue) to take
231 DESC: Forces the palette (color format) to a specific value. If an
234 greyscale mode with a color camera, for example. Supported modes are:
282 DESC: Enable OV518 color support. This is off by default since it doesn't
290 o RGB24, RGB565, YUV420/YUV420P, YUV422/YUYV, and YUV422P color
/linux-2.4.37.9/drivers/media/video/
Dw9966.c117 s8 color; member
292 cam->color = 64; in w9966_init()
591 cam->color, // 0x0c in w9966_saa7111_init()
635 !w9966_i2c_wreg(cam, W9966_SAA7111_ID, 0x0c, cam->color) || in w9966_saa7111_image()
968 cam->color << 9, // color in w9966_v4l_ioctl()
990 cam->color = vpic.colour >> 9; in w9966_v4l_ioctl()
/linux-2.4.37.9/arch/ppc/boot/include/
Dof1275.h34 int setcolor(ihandle instance, int color, int red, int green, int blue);
/linux-2.4.37.9/scripts/
DREADME.Menuconfig2 lift. Featuring text based color menus and dialogs, it does not
133 $TERM variable set to point to a xterm definition which supports color.
136 intensity of color, bright.
163 are brave, you may tinker with color.h to tune the colors to
/linux-2.4.37.9/include/video/
Dsbusfb.h72 char color [6]; /* cursor colors */ member

123