HomeSort by: relevance | last modified time | path
    Searched refs:fg (Results 1 - 25 of 138) sorted by relevancy

1 2 3 4 5 6

  /src/usr.bin/grep/
fastgrep.c 58 alloc_pattern(fastgrep_t *fg, const char *pat)
62 fg->pattern = (unsigned char *)grep_strdup(pat);
65 for (i = 0; fg->pattern[i]; i++)
66 fg->pattern[i] = towupper((unsigned char)fg->pattern[i]);
70 map_pattern(fastgrep_t *fg, int hasDot)
75 fg->qsBc[i] = fg->len - hasDot;
76 for (i = hasDot + 1; i < fg->len; i++) {
77 unsigned char ch = fg->pattern[i]
    [all...]
  /src/external/gpl3/gcc/dist/gcc/text-art/
style.cc 82 bool fg,
132 if (fg)
147 if (fg)
157 if (fg)
413 #define ASSERT_NAMED_COL_STREQ(NAMED_COLOR, FG, BRIGHT, EXPECTED_STR) \
418 if (FG) \
434 const bool fg = true; local
437 ASSERT_NAMED_COL_STREQ (style::named_color::DEFAULT, fg, bright, "");
438 ASSERT_NAMED_COL_STREQ (style::named_color::BLACK, fg, bright,
440 ASSERT_NAMED_COL_STREQ (style::named_color::RED, fg, bright
480 const bool fg = false; local
546 const bool fg = true; local
559 const bool fg = false; local
593 const bool fg = true; local
600 const bool fg = false; local
    [all...]
  /src/sys/dev/rasops/
rasops15.c 134 uint32_t bg, fg; local
140 fg = ATTR_FG(ri, attr) & 0xffff;
144 stamp[i] = (i & 16 ? fg : bg);
145 stamp[i] |= (i & 8 ? fg : bg) << 16;
146 stamp[i + 1] = (i & 4 ? fg : bg);
147 stamp[i + 1] |= (i & 2 ? fg : bg) << 16;
149 stamp[i] = (i & 8 ? fg : bg);
150 stamp[i] |= (i & 16 ? fg : bg) << 16;
151 stamp[i + 1] = (i & 2 ? fg : bg);
152 stamp[i + 1] |= (i & 4 ? fg : bg) << 16
    [all...]
rasops4.c 121 uint32_t bg, fg; local
127 fg = ATTR_FG(ri, attr) & 0xf;
137 stamp[i] = (i & 1 ? fg : bg) << 12;
138 stamp[i] |= (i & 2 ? fg : bg) << 8;
139 stamp[i] |= (i & 4 ? fg : bg) << 4;
140 stamp[i] |= (i & 8 ? fg : bg) << 0;
143 stamp[i] = (i & 1 ? fg : bg) << 0;
144 stamp[i] |= (i & 2 ? fg : bg) << 4;
145 stamp[i] |= (i & 4 ? fg : bg) << 8;
146 stamp[i] |= (i & 8 ? fg : bg) << 12
    [all...]
rasops8.c 133 uint32_t bg, fg; local
139 fg = ATTR_FG(ri, attr) & 0xff;
149 stamp[i] = (i & 8 ? fg : bg);
150 stamp[i] |= (i & 4 ? fg : bg) << 8;
151 stamp[i] |= (i & 2 ? fg : bg) << 16;
152 stamp[i] |= (i & 1 ? fg : bg) << 24;
155 stamp[i] = (i & 1 ? fg : bg);
156 stamp[i] |= (i & 2 ? fg : bg) << 8;
157 stamp[i] |= (i & 4 ? fg : bg) << 16;
158 stamp[i] |= (i & 8 ? fg : bg) << 24
    [all...]
rasops2.c 127 uint32_t bg, fg; local
133 fg = ATTR_FG(ri, attr) & 3;
143 stamp[i] = (i & 8 ? fg : bg);
144 stamp[i] |= (i & 4 ? fg : bg) << 2;
145 stamp[i] |= (i & 2 ? fg : bg) << 4;
146 stamp[i] |= (i & 1 ? fg : bg) << 6;
149 stamp[i] = (i & 1 ? fg : bg);
150 stamp[i] |= (i & 2 ? fg : bg) << 2;
151 stamp[i] |= (i & 4 ? fg : bg) << 4;
152 stamp[i] |= (i & 8 ? fg : bg) << 6
    [all...]
rasops32.c 134 uint32_t fg, bg; local
141 fg = ATTR_FG(ri, attr);
144 stamp[i + 0] = i & 32 ? fg : bg;
145 stamp[i + 1] = i & 16 ? fg : bg;
146 stamp[i + 2] = i & 8 ? fg : bg;
147 stamp[i + 3] = i & 4 ? fg : bg;
rasops1_putchar_width.h 67 uint32_t bg, fg; local
94 fg = ATTR_FG(ri, attr);
96 /* If fg and bg match this becomes a space character */
97 if (uc == ' ' || __predict_false(fg == bg)) {
135 *rp = fg;
138 *hp = fg;
rasops1-4_putchar.h 92 uint32_t bg, fg, lbg, rbg, clr[2], lmask, rmask, tmp; local
124 fg = ATTR_FG(ri, attr);
126 /* If fg and bg match this becomes a space character */
127 if (uc == ' ' || __predict_false(fg == bg)) {
153 clr[1] = fg & COLOR_MASK;
186 tmp = (*rp & lmask) | (fg & rmask);
236 clr[1] = fg & COLOR_MASK;
288 *bp = (*bp & lmask) | (fg & ~lmask);
292 *bp++ = fg;
294 *bp = (*bp & rmask) | (fg & ~rmask)
    [all...]
rasops24.c 166 uint32_t bg, fg, c1, c2, c3, c4; local
172 fg = ATTR_FG(ri, attr) & 0xffffff;
176 c1 = i & 32 ? fg : bg;
177 c2 = i & 16 ? fg : bg;
178 c3 = i & 8 ? fg : bg;
179 c4 = i & 4 ? fg : bg;
181 c1 = i & 8 ? fg : bg;
182 c2 = i & 4 ? fg : bg;
183 c3 = i & 16 ? fg : bg;
184 c4 = i & 32 ? fg : bg
    [all...]
rasops1.c 97 uint32_t bg, fg, lbg, rbg, fb, lmask, rmask, tmp, tmp0, tmp1; local
129 fg = ATTR_FG(ri, attr);
131 /* If fg and bg match this becomes a space character */
132 if (uc == ' ' || __predict_false(fg == bg)) {
185 tmp = (*rp & lmask) | (fg & rmask);
254 tmp0 = (rp[0] & lmask) | (fg & ~lmask);
255 tmp1 = (rp[1] & rmask) | (fg & ~rmask);
  /src/external/gpl3/gdb/dist/gdb/testsuite/lib/
gdb-utils.exp 70 set fg 39
79 file { set fg 32 }
80 function { set fg 33 }
81 highlight { set fg 31 }
82 variable { set fg 36 }
83 address { set fg 34 }
85 version { set fg 35; set intensity 1 }
89 return "\033\\\[${fg};${bg};${intensity};${italic};${underline};${reverse}m${str}\033\\\[m"
  /src/sys/dev/hdaudio/
hdaudio.c 248 struct hdaudio_function_group *fg; local
263 fg = &co->co_fg[i];
264 if (fg->fg_device && fg->fg_unsol)
265 fg->fg_unsol(fg->fg_device, entry->resp);
677 hdaudio_attach_fg(struct hdaudio_function_group *fg, prop_array_t config)
679 struct hdaudio_codec *co = fg->fg_codec;
682 uint64_t fgptr = (vaddr_t)fg;
685 prop_dictionary_set_uint8(args, "function-group-type", fg->fg_type)
706 struct hdaudio_function_group *fg; local
950 struct hdaudio_function_group *fg; local
970 struct hdaudio_function_group *fg; local
1328 struct hdaudio_function_group *fg = NULL; local
1351 struct hdaudio_function_group *fg; local
1397 struct hdaudio_function_group *fg; local
1445 struct hdaudio_function_group *fg; local
1482 struct hdaudio_function_group *fg; local
    [all...]
  /src/sys/kern/
sys_aio.c 413 aiosp_fg_teardown_locked(struct aiosp *sp, struct aiost_file_group *fg)
415 if (fg == NULL) {
419 RB_REMOVE(aiost_file_tree, sp->fg_root, fg);
420 mutex_destroy(&fg->mtx);
421 kmem_free(fg, sizeof(*fg));
428 aiosp_fg_teardown(struct aiosp *sp, struct aiost_file_group *fg)
430 if (fg == NULL) {
435 aiosp_fg_teardown_locked(sp, fg);
461 struct aiost_file_group *fg = NULL local
834 struct aiost_file_group *fg = st->fg; local
887 struct aiost_file_group *fg = st->fg; local
1743 struct aiost_file_group find = { 0 }, *fg; local
    [all...]
  /src/sys/arch/luna68k/dev/
omrasops.c 83 uint8_t fg; member in struct:__anon1558::__anon1559::__anon1560
227 om_set_rowattr(int row, uint8_t fg, uint8_t bg)
230 if (rowattr[row].fg == fg && rowattr[row].bg == bg)
235 if (rowattr[row].fg == rowattr[row].bg) {
237 if (rowattr[row].fg != fg && rowattr[row].bg != bg) {
242 rowattr[row].fg = fg;
254 /* Setting fg equal to bg means 'reset' or 'erased'. *
456 uint8_t fg, bg; local
568 uint8_t fg, bg; local
609 uint8_t fg, bg; local
1212 uint8_t fg; local
    [all...]
  /src/external/bsd/tmux/dist/
style.c 55 * Parse an embedded style of the form "fg=colour,bg=colour,bright,...". Note
88 sy->gc.fg = base->fg;
200 sy->gc.fg = value;
202 sy->gc.fg = base->fg;
330 if (gc->fg != 8) {
332 colour_tostring(gc->fg));
379 if (sy->gc.fg != 8)
380 gc->fg = sy->gc.fg
    [all...]
  /src/external/gpl3/gcc/dist/gcc/analyzer/
infinite-loop.cc 398 std::unique_ptr<feasible_graph> fg; local
402 fg = ::make_unique<feasible_graph> ();
409 if (fg)
410 curr_fnode = fg->add_node (&enode, state, 0);
436 if (fg)
444 fg->dump_dot (filename, nullptr, dump_args);
514 if (fg)
516 feasible_node *next_fnode = fg->add_node (out_eedge->m_dest,
518 fg->m_nodes.length ());
519 fg->add_edge (new feasible_edge (curr_fnode, next_fnode, out_eedge))
    [all...]
  /src/external/bsd/less/dist/
screen.c 121 #define SET_FG_COLOR(fg) _settextcolor(fg)
123 #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); }
134 #define SET_FG_COLOR(fg) textcolor(fg)
136 #define SETCOLORS(fg,bg) { SET_FG_COLOR(fg); SET_BG_COLOR(bg); }
172 #define MAKEATTR(fg,bg) ((WORD)((fg)|((bg)<<4))
2511 int fg; local
2576 int fg; local
2641 int fg; local
    [all...]
output.c 102 static int fg, fgi, bg, bgi; local
124 if (fg == 0 && bg == 0)
126 fg = nm_fg_color & 7;
157 fg = nm_fg_color & 7;
208 fg = nm_fg_color & 7;
264 fg = screen_color[code - 30];
267 case 39: /* default fg */
268 fg = nm_fg_color & 7;
298 b = fg | fgi;
301 f = fg | fgi
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/tui/
tui-io.c 190 int fg; member in struct:color_pair
195 return fg < o.fg || (fg == o.fg && bg < o.bg);
272 get_color_pair (int fg, int bg)
274 color_pair c = { fg, bg };
285 init_pair (next, fg, bg);
306 const ui_file_style::color &fg = style.get_foreground (); local
308 if (!fg.is_none () || !bg.is_none ()
395 ui_file_style::color fg = style.get_foreground (); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
mingw-hdep.c 288 const ui_file_style::color &fg = style.get_foreground (); local
291 if (fg.is_none ())
293 else if (fg.is_basic ())
294 fgcolor = fg_color[fg.get_value () & 15];
296 fgcolor = rgb_to_16colors (fg);
  /src/external/gpl3/gdb/dist/gdb/tui/
tui-io.c 200 int fg; member in struct:color_pair
205 return fg == other.fg && bg == other.bg;
293 get_color_pair (int fg, int bg)
295 color_pair c = { fg, bg };
306 init_pair (next, fg, bg);
331 const ui_file_style::color &fg = style.get_foreground (); local
333 if (!fg.is_none () || !bg.is_none ())
336 if (get_color (fg, &fgi) && get_color (bg, &bgi))
410 the terminal is fg=BLACK, and bg=WHITE, and the style want
428 ui_file_style::color fg = style.get_foreground (); local
    [all...]
  /src/external/bsd/ipf/dist/tools/
ipftest.c 709 frgroup_t *fg; local
714 for (fg = softc->ipf_groups[i][0]; fg != NULL;
715 fg = fg->fg_next) {
717 i, fg->fg_name, fg->fg_ref, fg->fg_flags);
718 dumprules(fg->fg_start);
723 for (fg = softc->ipf_groups[i][1]; fg != NULL
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/cli/
cli-style.h 33 cli_style_option (const char *name, ui_file_style::basic_color fg,
  /src/external/gpl3/gdb/dist/gdb/
mingw-hdep.c 299 const ui_file_style::color &fg = style.get_foreground (); local
302 if (fg.is_none ())
304 else if (fg.is_basic ())
305 fgcolor = fg_color[fg.get_value () & 15];
307 fgcolor = rgb_to_16colors (fg);

Completed in 69 milliseconds

1 2 3 4 5 6