Home
last modified time | relevance | path

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

/scripts/
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];
163 logo_data = (struct color **)malloc(logo_height*sizeof(struct color *)); in read_image()
167 logo_data[i] = malloc(logo_width*sizeof(struct color)); in read_image()
208 static inline int is_black(struct color c) in is_black()
213 static inline int is_white(struct color c) in is_white()
218 static inline int is_gray(struct color c) in is_gray()
223 static inline int is_equal(struct color c1, struct color c2) in is_equal()
Dcheckpatch.pl63 my $color = "auto";
196 $_ = "--color=$color";
230 'color=s' => \$color,
231 'no-color' => \$color, #keep old behaviors of -nocolor
232 'nocolor' => \$color, #keep old behaviors of -nocolor
258 if ($color =~ /^[01]$/) {
259 $color = !$color;
260 } elsif ($color =~ /^always$/i) {
261 $color = 1;
262 } elsif ($color =~ /^never$/i) {
[all …]
Dcheckkconfigsymbols.py121 COLOR = args.color and sys.stdout.isatty()
/scripts/kconfig/
Dnconf.h80 chtype color);
Dgconf.c52 GdkColor color; variable
1163 GdkColor color; in set_node() local
1170 gdk_color_parse(row[COL_COLOR], &color); in set_node()
1171 gdk_colormap_alloc_colors(gdk_colormap_get_system(), &color, 1, in set_node()
1182 COL_COLOR, &color, in set_node()
Dnconf.gui.c152 chtype color) in print_in_middle() argument
170 (void) wattrset(win, color); in print_in_middle()
/scripts/kconfig/lxdialog/
Dutil.c166 static void init_one_color(struct dialog_color *color) in init_one_color() argument
171 init_pair(pair, color->fg, color->bg); in init_one_color()
172 if (color->hl) in init_one_color()
173 color->atr = A_BOLD | COLOR_PAIR(pair); in init_one_color()
175 color->atr = COLOR_PAIR(pair); in init_one_color()