Searched refs:gc (Results 1 - 25 of 135) sorted by relevance

123456

/openbsd-current/sys/dev/ofw/
H A Dofw_gpio.c29 gpio_controller_register(struct gpio_controller *gc) argument
33 gc->gc_cells = OF_getpropint(gc->gc_node, "#gpio-cells", 2);
34 gc->gc_phandle = OF_getpropint(gc->gc_node, "phandle", 0);
35 if (gc->gc_phandle == 0)
38 LIST_INSERT_HEAD(&gpio_controllers, gc, gc_list);
41 for (child = OF_child(gc->gc_node); child; child = OF_peer(child)) {
74 gc->gc_config_pin(gc
87 struct gpio_controller *gc; local
102 struct gpio_controller *gc; local
120 struct gpio_controller *gc; local
135 struct gpio_controller *gc; local
[all...]
/openbsd-current/sys/dev/gpio/
H A Dgpiovar.h51 #define gpiobus_pin_read(gc, pin) \
52 ((gc)->gp_pin_read((gc)->gp_cookie, (pin)))
53 #define gpiobus_pin_write(gc, pin, value) \
54 ((gc)->gp_pin_write((gc)->gp_cookie, (pin), (value)))
55 #define gpiobus_pin_ctl(gc, pin, flags) \
56 ((gc)->gp_pin_ctl((gc)->gp_cookie, (pin), (flags)))
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dptrmem4.C25 Gtk_Container gc; local
26 if (gc.f () != 1)
/openbsd-current/usr.bin/tmux/
H A Dstyle.c85 sy->gc.fg = base->fg;
86 sy->gc.bg = base->bg;
87 sy->gc.us = base->us;
88 sy->gc.attr = base->attr;
89 sy->gc.flags = base->flags;
198 sy->gc.fg = value;
200 sy->gc.fg = base->fg;
203 sy->gc.bg = value;
205 sy->gc.bg = base->bg;
212 sy->gc
241 struct grid_cell *gc = &sy->gc; local
339 style_add(struct grid_cell *gc, struct options *oo, const char *name, struct format_tree *ft) argument
365 style_apply(struct grid_cell *gc, struct options *oo, const char *name, struct format_tree *ft) argument
374 style_set(struct style *sy, const struct grid_cell *gc) argument
[all...]
H A Dgrid-reader.c51 struct grid_cell gc; local
64 grid_get_cell(gr->gd, gr->cx, gr->cy, &gc);
65 if (~gc.flags & GRID_FLAG_PADDING)
76 struct grid_cell gc; local
79 grid_get_cell(gr->gd, gr->cx, gr->cy, &gc);
80 if (~gc.flags & GRID_FLAG_PADDING)
97 struct grid_cell gc; local
102 grid_get_cell(gr->gd, gr->cx, gr->cy, &gc);
103 if (~gc.flags & GRID_FLAG_PADDING)
113 struct grid_cell gc; local
183 struct grid_cell gc; local
345 struct grid_cell gc; local
377 struct grid_cell gc; local
406 struct grid_cell gc; local
[all...]
H A Dgrid.c61 grid_store_cell(struct grid_cell_entry *gce, const struct grid_cell *gc, argument
64 gce->flags = (gc->flags & ~GRID_FLAG_CLEARED);
66 gce->data.fg = gc->fg & 0xff;
67 if (gc->fg & COLOUR_FLAG_256)
70 gce->data.bg = gc->bg & 0xff;
71 if (gc->bg & COLOUR_FLAG_256)
74 gce->data.attr = gc->attr;
81 const struct grid_cell *gc)
85 if (gc->attr > 0xff)
87 if (gc
80 grid_need_extended_cell(const struct grid_cell_entry *gce, const struct grid_cell *gc) argument
114 grid_extended_cell(struct grid_line *gl, struct grid_cell_entry *gce, const struct grid_cell *gc) argument
502 grid_get_cell1(struct grid_line *gl, u_int px, struct grid_cell *gc) argument
538 grid_get_cell(struct grid *gd, u_int px, u_int py, struct grid_cell *gc) argument
549 grid_set_cell(struct grid *gd, u_int px, u_int py, const struct grid_cell *gc) argument
579 grid_set_cells(struct grid *gd, u_int px, u_int py, const struct grid_cell *gc, const char *s, size_t slen) argument
742 grid_string_cells_fg(const struct grid_cell *gc, int *values) argument
791 grid_string_cells_bg(const struct grid_cell *gc, int *values) argument
840 grid_string_cells_us(const struct grid_cell *gc, int *values) argument
925 grid_string_cells_code(const struct grid_cell *lastgc, const struct grid_cell *gc, char *buf, size_t len, int flags, struct screen *sc, int *has_link) argument
1042 struct grid_cell gc; local
1206 struct grid_cell gc; local
1314 struct grid_cell gc; local
1382 struct grid_cell gc; local
1520 struct grid_cell gc; local
[all...]
H A Dwindow-clock.c213 struct grid_cell gc; local
243 memcpy(&gc, &grid_default_cell, sizeof gc);
244 gc.flags |= GRID_FLAG_NOPALETTE;
245 gc.fg = colour;
246 screen_write_puts(&ctx, &gc, "%s", tim);
256 memcpy(&gc, &grid_default_cell, sizeof gc);
257 gc.flags |= GRID_FLAG_NOPALETTE;
258 gc
[all...]
H A Dtty.c1030 tty_fake_bce(const struct tty *tty, const struct grid_cell *gc, u_int bg) argument
1034 if (!COLOUR_DEFAULT(bg) || !COLOUR_DEFAULT(gc->bg))
1349 tty_check_codeset(struct tty *tty, const struct grid_cell *gc) argument
1355 if (gc->data.size == 1 && *gc->data.data < 0x7f)
1356 return (gc);
1360 return (gc);
1361 memcpy(&new, gc, sizeof new);
1364 c = tty_acs_reverse_get(tty, gc->data.data, gc
1425 struct grid_cell gc, last; local
2201 tty_cell(struct tty *tty, const struct grid_cell *gc, const struct grid_cell *defaults, struct colour_palette *palette, struct hyperlinks *hl) argument
2237 struct grid_cell *gc = &tty->cell; local
2532 tty_hyperlink(struct tty *tty, const struct grid_cell *gc, struct hyperlinks *hl) argument
2551 tty_attributes(struct tty *tty, const struct grid_cell *gc, const struct grid_cell *defaults, struct colour_palette *palette, struct hyperlinks *hl) argument
2656 tty_colours(struct tty *tty, const struct grid_cell *gc) argument
2717 tty_check_fg(struct tty *tty, struct colour_palette *palette, struct grid_cell *gc) argument
2776 tty_check_bg(struct tty *tty, struct colour_palette *palette, struct grid_cell *gc) argument
2828 tty_check_us(__unused struct tty *tty, struct colour_palette *palette, struct grid_cell *gc) argument
2849 tty_colours_fg(struct tty *tty, const struct grid_cell *gc) argument
2881 tty_colours_bg(struct tty *tty, const struct grid_cell *gc) argument
2913 tty_colours_us(struct tty *tty, const struct grid_cell *gc) argument
2985 tty_window_default_style(struct grid_cell *gc, struct window_pane *wp) argument
2993 tty_default_colours(struct grid_cell *gc, struct window_pane *wp) argument
3033 struct grid_cell gc; local
[all...]
H A Dscreen-redraw.c51 enum pane_lines pane_lines, int cell_type, struct grid_cell *gc)
56 utf8_copy(&gc->data, &w->fill_character[0]);
63 gc->attr |= GRID_ATTR_CHARSET;
64 utf8_set(&gc->data, CELL_BORDERS[CELL_OUTSIDE]);
67 gc->attr &= ~GRID_ATTR_CHARSET;
69 utf8_set(&gc->data, '0' + (idx % 10));
71 utf8_set(&gc->data, '*');
74 gc->attr &= ~GRID_ATTR_CHARSET;
75 utf8_copy(&gc->data, tty_acs_double_borders(cell_type));
78 gc
50 screen_redraw_border_set(struct window *w, struct window_pane *wp, enum pane_lines pane_lines, int cell_type, struct grid_cell *gc) argument
380 struct grid_cell gc; local
661 struct grid_cell gc; local
[all...]
H A Dinput.c1681 struct grid_cell *gc = &ictx->cell.cell; local
1693 screen_write_clearscreen(sctx, gc->bg);
1726 screen_write_alternateoff(sctx, gc, 0);
1729 screen_write_alternateoff(sctx, gc, 1);
1770 struct grid_cell *gc = &ictx->cell.cell; local
1821 screen_write_alternateon(sctx, gc, 0);
1824 screen_write_alternateon(sctx, gc, 1);
1946 struct grid_cell *gc = &ictx->cell.cell; local
1950 gc->fg = 8;
1952 gc
1980 struct grid_cell *gc = &ictx->cell.cell; local
2015 struct grid_cell *gc = &ictx->cell.cell; local
2103 struct grid_cell *gc = &ictx->cell.cell; local
2578 struct grid_cell *gc = &ictx->cell.cell; local
[all...]
H A Dgrid-view.c35 grid_view_get_cell(struct grid *gd, u_int px, u_int py, struct grid_cell *gc) argument
37 grid_get_cell(gd, grid_view_x(gd, px), grid_view_y(gd, py), gc);
43 const struct grid_cell *gc)
45 grid_set_cell(gd, grid_view_x(gd, px), grid_view_y(gd, py), gc);
58 const struct grid_cell *gc, const char *s, size_t slen)
60 grid_set_cells(gd, grid_view_x(gd, px), grid_view_y(gd, py), gc, s,
42 grid_view_set_cell(struct grid *gd, u_int px, u_int py, const struct grid_cell *gc) argument
57 grid_view_set_cells(struct grid *gd, u_int px, u_int py, const struct grid_cell *gc, const char *s, size_t slen) argument
H A Dmenu.c441 menu_set_style(struct client *c, struct grid_cell *gc, const char *style, argument
447 memcpy(gc, &grid_default_cell, sizeof *gc);
448 style_apply(gc, o, option, NULL);
451 if (style_parse(&sytmp, gc, style) == 0) {
452 gc->fg = sytmp.gc.fg;
453 gc->bg = sytmp.gc.bg;
456 gc
[all...]
H A Dstatus.c375 struct grid_cell gc; local
402 style_apply(&gc, s->options, "status-style", ft);
405 gc.fg = fg;
408 gc.bg = bg;
409 if (!grid_cells_equal(&gc, &sl->style)) {
411 memcpy(&sl->style, &gc, sizeof sl->style);
426 screen_write_putc(&ctx, &gc, ' ');
434 screen_write_putc(&ctx, &gc, ' ');
449 screen_write_putc(&ctx, &gc, ' ');
453 format_draw(&ctx, &gc, widt
557 struct grid_cell gc; local
723 struct grid_cell gc, cursorgc; local
[all...]
/openbsd-current/usr.bin/vi/vi/
H A Dv_match.c39 int cnt, isempty, matchc, startc, (*gc)(SCR *, VCS *);
63 gc = cs_next;
67 gc = cs_prev;
71 gc = cs_next;
75 gc = cs_prev;
79 gc = cs_next;
83 gc = cs_prev;
87 gc = cs_next;
91 gc = cs_prev;
104 if (gc(s
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/init/
H A Dpm1.C44 extern C gc;
65 if (gc.mp != 0)
71 C gc; variable
/openbsd-current/lib/libelf/
H A Dgelf_cap.c96 gelf_update_cap(Elf_Data *ed, int ndx, GElf_Cap *gc) argument
109 if (d == NULL || ndx < 0 || gc == NULL ||
140 LIBELF_COPY_U32(cap32, gc, c_tag);
141 LIBELF_COPY_U32(cap32, gc, c_un.c_val);
145 *cap64 = *gc;
/openbsd-current/gnu/gcc/gcc/
H A Dtree-vn.c52 VEC (tree, gc) *vuses;
194 static VEC (tree, gc) *
199 VEC (tree, gc) *vuses = NULL;
205 VEC_safe_push (tree, gc, vuses, vuse);
211 static VEC (tree, gc) *shared_lookup_vuses;
217 static VEC (tree, gc) *
229 VEC_safe_push (tree, gc, shared_lookup_vuses, vuse);
252 vn_add_with_vuses (tree expr, tree val, VEC (tree, gc) *vuses)
291 vn_lookup_with_vuses (tree expr, VEC (tree, gc) *vuses)
330 print_creation_to_file (tree v, tree expr, VEC (tree, gc) *vuse
[all...]
H A Dtree-ssanames.c62 VEC(tree,gc) *ssa_names;
82 ssa_names = VEC_alloc (tree, gc, 50);
100 VEC_free (tree, gc, ssa_names);
149 VEC_safe_push (tree, gc, ssa_names, t);
H A Dtree-ssa-propagate.c145 static GTY(()) VEC(tree,gc) *interesting_ssa_edges;
161 static GTY(()) VEC(tree,gc) *varying_ssa_edges;
251 VEC_safe_push (tree, gc, varying_ssa_edges, use_stmt);
253 VEC_safe_push (tree, gc, interesting_ssa_edges, use_stmt);
349 process_ssa_edge_worklist (VEC(tree,gc) **worklist)
469 interesting_ssa_edges = VEC_alloc (tree, gc, 20);
470 varying_ssa_edges = VEC_alloc (tree, gc, 20);
514 VEC_free (tree, gc, interesting_ssa_edges);
515 VEC_free (tree, gc, varying_ssa_edges);
H A Dtree-flow.h194 VEC(tree, gc) *may_aliases;
329 extern GTY(()) VEC(tree,gc) *modified_noreturn_calls;
351 static inline VEC(tree, gc) *may_aliases (tree);
433 extern GTY(()) VEC(tree,gc) *ssa_names;
923 void sort_vuses (VEC (tree, gc) *);
925 tree vn_lookup_or_add_with_vuses (tree, VEC (tree, gc) *);
927 void vn_add_with_vuses (tree, tree, VEC (tree, gc) *);
929 tree vn_lookup_with_vuses (tree, VEC (tree, gc) *);
/openbsd-current/gnu/usr.bin/gcc/contrib/
H A Dgcc_update103 boehm-gc/aclocal.m4: boehm-gc/configure.in boehm-gc/acinclude.m4
104 boehm-gc/Makefile.in: boehm-gc/Makefile.am boehm-gc/configure.in boehm-gc/aclocal.m4
105 boehm-gc/configure: boehm-gc/configure.in boehm-gc/acloca
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/
H A DScheduler.pm212 if ( $glob =~ /\G\*\*/gc ) {
217 elsif ( $glob =~ /\G\*/gc ) {
222 elsif ( $glob =~ /\G\?/gc ) {
227 elsif ( $glob =~ /\G\{/gc ) {
233 elsif ( $nesting and $glob =~ /\G,/gc ) {
238 elsif ( $nesting and $glob =~ /\G\}/gc ) {
244 elsif ( $glob =~ /\G(\\.)/gc ) {
249 elsif ( $glob =~ /\G([\},])/gc ) {
257 $glob =~ /\G([^{?*\\\},]*)/gc;
/openbsd-current/gnu/llvm/clang/bindings/python/tests/cindex/
H A Dtest_cdb.py11 import gc namespace
130 gc.collect()
140 gc.collect()
/openbsd-current/sys/dev/pci/drm/i915/gt/uc/
H A Dintel_guc_capture.c457 guc_cap_list_num_regs(struct intel_guc_state_capture *gc, u32 owner, u32 type, u32 classid) argument
463 match = guc_capture_get_one_list(gc->reglists, owner, type, classid);
469 matchext = guc_capture_get_one_ext_list(gc->extlists, owner, type, classid);
480 struct intel_guc_state_capture *gc = guc->capture; local
481 struct __guc_capture_ads_cache *cache = &gc->ads_cache[owner][type][classid];
484 if (!gc->reglists) {
495 !guc_capture_get_one_list(gc->reglists, owner, type, classid)) {
505 num_regs = guc_cap_list_num_regs(gc, owner, type, classid);
530 struct intel_guc_state_capture *gc = guc->capture; local
531 struct __guc_capture_ads_cache *cache = &gc
591 struct intel_guc_state_capture *gc = guc->capture; local
924 guc_capture_add_node_to_outlist(struct intel_guc_state_capture *gc, struct __guc_capture_parsed_output *node) argument
931 guc_capture_add_node_to_cachelist(struct intel_guc_state_capture *gc, struct __guc_capture_parsed_output *node) argument
1611 guc_capture_free_ads_cache(struct intel_guc_state_capture *gc) argument
[all...]
/openbsd-current/gnu/gcc/gcc/cp/
H A Dname-lookup.h94 DEF_VEC_ALLOC_O(cxx_saved_binding,gc);
153 DEF_VEC_ALLOC_O(cp_class_binding,gc);
194 VEC(tree,gc) *static_decls;
208 VEC(cp_class_binding,gc) *class_shadowed;

Completed in 252 milliseconds

123456