Home
last modified time | relevance | path

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

12

/utopia/UTPA2-700.0.x/modules/graphic/api/gfx/
H A DmapiGFX.c676 GFX_RgbColor *color = NULL; in GFX_ConvertRGB2DBFmt() local
695 color =(GFX_RgbColor *)colorinfo; in GFX_ConvertRGB2DBFmt()
701 *low = ((color->b & 0xf8) + (color->b >> 5)) | (((color->g & 0xfc) + (color->g>>6))<<8); in GFX_ConvertRGB2DBFmt()
702 *high = ((color->r & 0xf8) + (color->r >> 5)) | ((color->a & 0xff) << 8); in GFX_ConvertRGB2DBFmt()
705 if (color->a > 0) in GFX_ConvertRGB2DBFmt()
707 *low = ((color->g & 0xf8) + (color->g >> 5)) | (0xff << 8); in GFX_ConvertRGB2DBFmt()
711 *low = ((color->g & 0xf8) + (color->g >> 5)); in GFX_ConvertRGB2DBFmt()
713 … *high = ((color->g & 0xf8) + (color->g >> 5)) | (((color->r & 0xf8) + (color->r >> 5))<<8); in GFX_ConvertRGB2DBFmt()
716 … *low = ((color->b & 0xf8) + (color->b >> 5)) | (((color->g & 0xf8) + (color->g >> 5))<<8); in GFX_ConvertRGB2DBFmt()
717 if (color->a > 0) in GFX_ConvertRGB2DBFmt()
[all …]
H A DapiGFX.c1126 GFX_Result MApi_GFX_GetIntensity(MS_U32 idx, MS_U32 *color) in MApi_GFX_GetIntensity() argument
1130 if(color == NULL) in MApi_GFX_GetIntensity()
1147 GFXGetIntensity.pColor =color; in MApi_GFX_GetIntensity()
2841 GFX_Result MApi_GFX_SetStrBltSckType(GFX_StretchCKType type, GFX_RgbColor *color) in MApi_GFX_SetStrBltSckType() argument
2846 GFXFireInfo.sttype.color = *color; in MApi_GFX_SetStrBltSckType()
/utopia/UTPA2-700.0.x/projects/build/scripts/
H A Dpnmtologo.c45 struct color { struct
51 static const struct color clut_vga16[16] = { argument
74 static struct color **logo_data;
75 static struct color logo_clut[MAX_LINUX_LOGO_COLORS];
157 logo_data = (struct color **)malloc(logo_height*sizeof(struct color *)); in read_image()
161 logo_data[i] = malloc(logo_width*sizeof(struct color)); in read_image()
201 static inline int is_black(struct color c) in is_black()
206 static inline int is_white(struct color c) in is_white()
211 static inline int is_gray(struct color c) in is_gray()
216 static inline int is_equal(struct color c1, struct color c2) in is_equal()
/utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/lxdialog/
H A Dutil.c176 static void init_one_color(struct dialog_color *color) in init_one_color() argument
181 init_pair(pair, color->fg, color->bg); in init_one_color()
182 if (color->hl) in init_one_color()
183 color->atr = A_BOLD | COLOR_PAIR(pair); in init_one_color()
185 color->atr = COLOR_PAIR(pair); in init_one_color()
H A D.util.o.cmd6 $(wildcard include/config/color.h) \
/utopia/UTPA2-700.0.x/modules/graphic/drv/ge/
H A DdrvGE.c1516 GE_Result MDrv_GE_SetIntensity(GE_Context *pGECtx, MS_U32 idx, MS_U32 color) in MDrv_GE_SetIntensity() argument
1525 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_C_L(idx), (color & 0xFFFF)); in MDrv_GE_SetIntensity()
1526 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_C_H(idx), (color >> 16)); in MDrv_GE_SetIntensity()
1542 GE_Result MDrv_GE_GetIntensity(GE_Context *pGECtx, MS_U32 idx, MS_U32 *color) in MDrv_GE_GetIntensity() argument
1551 …*color =((MS_U32)GE_ReadReg(&pGECtxLocal->halLocalCtx, REG_GE_C_H(idx)))<<16|(MS_U32)GE_ReadReg(&p… in MDrv_GE_GetIntensity()
2634 GE_Result MDrv_GE_DrawLine(GE_Context *pGECtx, GE_Point *v0, GE_Point *v1, MS_U32 color, MS_U32 col… in MDrv_GE_DrawLine() argument
2739 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_PRIM_C_L, (color & 0xFFFF)); in MDrv_GE_DrawLine()
2740 GE_WriteReg(&pGECtxLocal->halLocalCtx, REG_GE_PRIM_C_H, (color >> 16)); in MDrv_GE_DrawLine()
2745 GE_CalcColorDelta(color, color2, dmajor, &delta); in MDrv_GE_DrawLine()
2911 GE_Result MDrv_GE_FillRect(GE_Context *pGECtx, GE_Rect *rect, MS_U32 color, MS_U32 color2, MS_U32 f… in MDrv_GE_FillRect() argument
[all …]
H A DdrvGE.h984 GE_RgbColor color; member
1120 GE_Result MDrv_GE_SetIntensity(GE_Context *pGECtx, MS_U32 id, MS_U32 color);
1121 GE_Result MDrv_GE_GetIntensity(GE_Context *pGECtx, MS_U32 id, MS_U32 *color);
1147 GE_Result MDrv_GE_DrawLine(GE_Context *pGECtx, GE_Point *v0, GE_Point *v1, MS_U32 color, MS_U32 col…
1148 GE_Result MDrv_GE_FillRect(GE_Context *pGECtx, GE_Rect *rect, MS_U32 color, MS_U32 color2, MS_U32 f…
/utopia/UTPA2-700.0.x/projects/tmplib/include/
H A DapiGFX.h810 GFX_RgbColor color; member
943 GFX_RgbColor color; member
1434 DLL_PUBLIC extern GFX_Result MApi_GFX_GetIntensity(MS_U32 idx, MS_U32 *color);
2177 DLL_PUBLIC extern GFX_Result MApi_GFX_SetStrBltSckType(GFX_StretchCKType type, GFX_RgbColor *color);
H A DapiGFX_v2.h133 GFX_RgbColor color; member
/utopia/UTPA2-700.0.x/modules/gpd/drv/gpd/
H A Dgif_lib.h396 const MS_U32 color);
401 const MS_U32 color);
406 const MS_U32 color);
/utopia/UTPA2-700.0.x/mxlib/include/
H A DapiGFX.h817 GFX_RgbColor color; member
953 GFX_RgbColor color; member
1469 DLL_PUBLIC extern GFX_Result MApi_GFX_GetIntensity(MS_U32 idx, MS_U32 *color);
2244 DLL_PUBLIC extern GFX_Result MApi_GFX_SetStrBltSckType(GFX_StretchCKType type, GFX_RgbColor *color);
H A DapiGOP_v2.h673 MS_U32 color; member
/utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/
H A Dgconf.c55 GdkColor color; variable
1221 GdkColor color; in set_node() local
1228 gdk_color_parse(row[COL_COLOR], &color); in set_node()
1229 gdk_colormap_alloc_colors(gdk_colormap_get_system(), &color, 1, in set_node()
1240 COL_COLOR, &color, in set_node()
H A Dnconf.gui.c152 chtype color) in print_in_middle() argument
170 (void) wattrset(win, color); in print_in_middle()
H A Dnconf.h84 chtype color);
H A D.mconf.o.cmd7 $(wildcard include/config/color.h) \
/utopia/UTPA2-700.0.x/modules/graphic/api/gop/
H A DapiGOP.c596 trans_set.color = clr; in MApi_GOP_GWIN_SetTransClr_8888_EX()
3283 trans_set.color = clr; in MApi_GOP_GWIN_SetTransClr_EX()
3333 trans_set.color = st_Transcolor->color; in MApi_GOP_GWIN_SetTransparentClr()
3337 u32TransColor = st_Transcolor->color; in MApi_GOP_GWIN_SetTransparentClr()
3365 trans_set.color = clr; in MApi_GOP_GWIN_SetFMT0TransClr_EX()
4118 trans_set.color = u32TransColor; in MApi_GOP_GWIN_EnableTransClr_EX()
4185 …Result MApi_GOP_GWIN_Set_BGWIN(MS_U8 bgwID, MS_U16 x0, MS_U16 y0, MS_U16 w, MS_U16 h, MS_U16 color) in MApi_GOP_GWIN_Set_BGWIN() argument
/utopia/UTPA2-700.0.x/modules/pq/hal/M7821/pq/
H A Dmhal_pq_adaptive.c199 void DEBUG_LC( const MS_U16 lightReg, const MS_U8 val, const MS_U8 color ) in DEBUG_LC() argument
202 MApi_XC_W2BYTEMSK(lightReg, ( color << (val<<2) ), ( 0x7 << (val<<2) ) ); in DEBUG_LC()
204 MApi_XC_W2BYTE(lightReg, ( color << 4 ) | color ); in DEBUG_LC()
206 MApi_XC_W2BYTE(lightReg, ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
208 MApi_XC_W2BYTE(lightReg, ( color << 12 ) | ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
/utopia/UTPA2-700.0.x/modules/pq/hal/maserati/pq/
H A Dmhal_pq_adaptive.c199 void DEBUG_LC( const MS_U16 lightReg, const MS_U8 val, const MS_U8 color ) in DEBUG_LC() argument
202 MApi_XC_W2BYTEMSK(lightReg, ( color << (val<<2) ), ( 0x7 << (val<<2) ) ); in DEBUG_LC()
204 MApi_XC_W2BYTE(lightReg, ( color << 4 ) | color ); in DEBUG_LC()
206 MApi_XC_W2BYTE(lightReg, ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
208 MApi_XC_W2BYTE(lightReg, ( color << 12 ) | ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
/utopia/UTPA2-700.0.x/modules/pq/hal/M7621/pq/
H A Dmhal_pq_adaptive.c199 void DEBUG_LC( const MS_U16 lightReg, const MS_U8 val, const MS_U8 color ) in DEBUG_LC() argument
202 MApi_XC_W2BYTEMSK(lightReg, ( color << (val<<2) ), ( 0x7 << (val<<2) ) ); in DEBUG_LC()
204 MApi_XC_W2BYTE(lightReg, ( color << 4 ) | color ); in DEBUG_LC()
206 MApi_XC_W2BYTE(lightReg, ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
208 MApi_XC_W2BYTE(lightReg, ( color << 12 ) | ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
/utopia/UTPA2-700.0.x/modules/pq/hal/maxim/pq/
H A Dmhal_pq_adaptive.c199 void DEBUG_LC( const MS_U16 lightReg, const MS_U8 val, const MS_U8 color ) in DEBUG_LC() argument
202 MApi_XC_W2BYTEMSK(lightReg, ( color << (val<<2) ), ( 0x7 << (val<<2) ) ); in DEBUG_LC()
204 MApi_XC_W2BYTE(lightReg, ( color << 4 ) | color ); in DEBUG_LC()
206 MApi_XC_W2BYTE(lightReg, ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
208 MApi_XC_W2BYTE(lightReg, ( color << 12 ) | ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/dvb/
H A Dosd.h105 int color; member
/utopia/UTPA2-700.0.x/projects/build/
H A DReduced.sh125 ls $BSPINC_PATH/ --color=never >$LOG_PATH/filename.txt
/utopia/UTPA2-700.0.x/modules/pq/hal/manhattan/pq/
H A Dmhal_pq_adaptive.c212 void DEBUG_LC(void *pInstance, const MS_U16 lightReg, const MS_U8 val, const MS_U8 color ) in DEBUG_LC() argument
215 MApi_XC_W2BYTEMSK(lightReg, ( color << (val<<2) ), ( 0x7 << (val<<2) ) ); in DEBUG_LC()
217 MApi_XC_W2BYTE(lightReg, ( color << 4 ) | color ); in DEBUG_LC()
219 MApi_XC_W2BYTE(lightReg, ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
221 MApi_XC_W2BYTE(lightReg, ( color << 12 ) | ( color << 8 ) | ( color << 4 ) | color ); in DEBUG_LC()
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/
H A Dfb.h337 __u32 color; member

12