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

1 2 3 4 5 6 7 8 91011

  /src/sys/dev/wscons/
wsdisplay_glyphcache.c 60 glyphcache_init(glyphcache *gc, int first, int lines, int width,
63 return glyphcache_init_align(gc, first, lines, width, cellwidth, cellheight,
68 glyphcache_init_align(glyphcache *gc, int first, int lines, int width,
74 gc->gc_width = width;
75 gc->gc_cellwidth = -1;
76 gc->gc_cellheight = -1;
77 gc->gc_firstline = first;
78 gc->gc_firstcol = 0;
79 gc->gc_lines = lines;
80 gc->gc_cellalign = alignment
192 glyphcache *gc = cookie; local
    [all...]
  /src/sys/external/bsd/common/linux/
linux_rcu.c 76 } gc __cacheline_aligned;
157 * If the GC isn't running anything yet, then all callbacks of
158 * interest are queued, and it suffices to wait for the GC to
161 * If the GC is already running, however, and there are any
162 * callbacks of interest queued but not in the GC's current
165 * to wait for one more generation -- or until the GC has
170 mutex_enter(&gc.lock);
171 gen = gc.gen;
172 if (gc.running)
174 while (gc.running || gc.first_callback || gc.first_kfree)
    [all...]
  /src/sys/dev/gpio/
gpiovar.h 65 #define gpiobus_open(gc, dev) \
66 ((gc)->gp_gc_open ? ((gc)->gp_gc_open((gc)->gp_cookie, dev)) : 0)
67 #define gpiobus_close(gc, dev) \
68 ((gc)->gp_gc_close ? ((gc)->gp_gc_close((gc)->gp_cookie, dev)), 1 : 0)
69 #define gpiobus_pin_read(gc, pin) \
70 ((gc)->gp_pin_read((gc)->gp_cookie, (pin))
    [all...]
  /src/sys/dev/fdt/
fdt_gpio.c 55 struct fdtbus_gpio_controller *gc; local
57 gc = kmem_alloc(sizeof(*gc), KM_SLEEP);
58 gc->gc_dev = dev;
59 gc->gc_phandle = phandle;
60 gc->gc_funcs = funcs;
62 LIST_INSERT_HEAD(&fdtbus_gpio_controllers, gc, gc_next);
70 struct fdtbus_gpio_controller *gc; local
72 LIST_FOREACH(gc, &fdtbus_gpio_controllers, gc_next) {
73 if (gc->gc_phandle == phandle
114 struct fdtbus_gpio_controller *gc; local
154 struct fdtbus_gpio_controller *gc = gp->gp_gc; local
163 struct fdtbus_gpio_controller *gc = gp->gp_gc; local
171 struct fdtbus_gpio_controller *gc = gp->gp_gc; local
179 struct fdtbus_gpio_controller *gc = gp->gp_gc; local
187 struct fdtbus_gpio_controller *gc = gp->gp_gc; local
    [all...]
  /src/sys/arch/evbmips/gdium/
gdium_dma.c 48 gdium_dma_init(struct gdium_config *gc)
55 t = &gc->gc_pci_dmat;
56 t->_cookie = gc;
bonito_mainbus.c 70 struct gdium_config * const gc = &gdium_configuration; local
73 device_set_private(self, &gc->gc_bonito);
89 pba.pba_iot = &gc->gc_iot;
90 pba.pba_memt = &gc->gc_memt;
91 pba.pba_dmat = &gc->gc_pci_dmat;
93 pba.pba_pc = &gc->gc_pc;
machdep.c 201 struct gdium_config *gc = &gdium_configuration; local
246 bonito_pci_init(&gc->gc_pc, &gc->gc_bonito);
251 gc->gc_pc.pc_attach_hook = gdium_pci_attach_hook;
252 gdium_bus_io_init(&gc->gc_iot, gc);
253 gdium_bus_mem_init(&gc->gc_memt, gc);
254 gdium_dma_init(gc);
255 gdium_cnattach(gc);
    [all...]
gdium_genfb.c 65 gdium_cnattach(struct gdium_config *gc)
80 reg = pci_conf_read(&gc->gc_pc, pci_make_tag(&gc->gc_pc, 0, 14, 0),
107 gdium_cnattach(struct gdium_config *gc)
  /src/external/bsd/tmux/dist/
style.c 88 sy->gc.fg = base->fg;
89 sy->gc.bg = base->bg;
90 sy->gc.us = base->us;
91 sy->gc.attr = base->attr;
92 sy->gc.flags = base->flags;
200 sy->gc.fg = value;
202 sy->gc.fg = base->fg;
205 sy->gc.bg = value;
207 sy->gc.bg = base->bg;
214 sy->gc.us = value
258 struct grid_cell *gc = &sy->gc; local
    [all...]
grid.c 61 grid_store_cell(struct grid_cell_entry *gce, const struct grid_cell *gc,
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->data.size > 1 || gc->data.width > 1
1066 struct grid_cell gc; local
1235 struct grid_cell gc; local
1343 struct grid_cell gc; local
1411 struct grid_cell gc; local
1549 struct grid_cell gc; local
1570 struct grid_cell gc, tmp_gc; local
    [all...]
grid-reader.c 51 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
354 struct grid_cell gc; local
384 struct grid_cell gc; local
411 struct grid_cell gc; local
    [all...]
screen-write.c 46 struct grid_cell gc; member in struct:screen_write_citem
342 struct grid_cell gc; local
344 memcpy(&gc, gcp, sizeof gc);
346 utf8_set(&gc.data, ch);
347 screen_write_cell(ctx, &gc);
400 struct grid_cell gc; local
402 memcpy(&gc, gcp, sizeof gc);
447 utf8_copy(&gc.data, &text[i])
508 struct grid_cell gc; local
573 struct grid_cell gc; local
649 struct grid_cell gc; local
685 struct grid_cell gc; local
713 const struct grid_cell *gc = &default_gc; local
762 struct grid_cell gc; local
824 struct grid_cell gc; local
1021 struct grid_cell gc; local
1847 struct grid_cell gc; local
    [all...]
  /src/external/mit/libuv/dist/docs/code/ref-timer/
main.c 9 void gc(uv_timer_t *handle) { function
23 uv_timer_start(&gc_req, gc, 0, 2000);
  /src/external/cddl/dtracetoolkit/dist/Bin/
j_stat.d 23 * GC/s Garbage collects, per second
60 execs = threads = methods = objnew = cload = gc = exception = 0;
81 "THREAD/s", "METHOD/s", "OBJNEW/s", "CLOAD/s", "EXCP/s", "GC/s");
115 hotspot*:::gc-begin
117 gc++;
134 gc / interval);
135 execs = threads = methods = oalloc = cload = gc = exception = 0;
rb_stat.d 21 * GC/s Garbage collects, per second
58 execs = methods = objnew = objfree = gc = raised = rescue = 0;
79 "METHOD/s", "OBJNEW/s", "OBJFRE/s", "RAIS/s", "RESC/s", "GC/s");
118 ruby*:::gc-begin
120 gc++;
132 gc / interval);
133 execs = methods = objnew = objfree = gc = raised = rescue = 0;
  /src/external/cddl/dtracetoolkit/dist/Java/
j_stat.d 23 * GC/s Garbage collects, per second
60 execs = threads = methods = objnew = cload = gc = exception = 0;
81 "THREAD/s", "METHOD/s", "OBJNEW/s", "CLOAD/s", "EXCP/s", "GC/s");
115 hotspot*:::gc-begin
117 gc++;
134 gc / interval);
135 execs = threads = methods = oalloc = cload = gc = exception = 0;
  /src/external/cddl/dtracetoolkit/dist/Ruby/
rb_stat.d 21 * GC/s Garbage collects, per second
58 execs = methods = objnew = objfree = gc = raised = rescue = 0;
79 "METHOD/s", "OBJNEW/s", "OBJFRE/s", "RAIS/s", "RESC/s", "GC/s");
118 ruby*:::gc-begin
120 gc++;
132 gc / interval);
133 execs = methods = objnew = objfree = gc = raised = rescue = 0;
  /src/sys/arch/powerpc/booke/dev/
pq3gpio.c 85 struct pq3gpio_group * const gc = v; local
87 uint32_t data = bus_space_read_4(gc->gc_bst, gc->gc_bsh, gc->gc_reg);
89 return (data >> (gc->gc_pins[num].pin_num ^ 31)) & 1;
95 struct pq3gpio_group * const gc = v; local
96 const u_int mask = 1 << (gc->gc_pins[num].pin_num ^ 31);
99 u_int data = bus_space_read_4(gc->gc_bst, gc->gc_bsh, gc->gc_reg)
120 struct pq3gpio_group * const gc = v; local
172 struct pq3gpio_group * const gc = v; local
207 struct pq3gpio_group * const gc = kmem_zalloc(sizeof(*gc), KM_SLEEP); local
    [all...]
  /src/sys/arch/arm/samsung/
exynos_pinctrl.c 137 exynos_parse_config(int phandle, struct exynos_gpio_pin_cfg *gc)
139 gc->cfg_valid = of_getprop_uint32(phandle, "samsung,pin-function", &gc->cfg) == 0;
140 gc->pud_valid = of_getprop_uint32(phandle, "samsung,pin-pud", &gc->pud) == 0;
141 gc->drv_valid = of_getprop_uint32(phandle, "samsung,pin-drv", &gc->drv) == 0;
142 gc->conpwd_valid = of_getprop_uint32(phandle, "samsung,pin-conpwd", &gc->conpwd) == 0;
143 gc->pudpwd_valid = of_getprop_uint32(phandle, "samsung,pin-pudpwd", &gc->pudpwd) == 0
164 struct exynos_gpio_pin_cfg *gc = &pc->pc_pincfg; local
    [all...]
  /src/sys/arch/alpha/gbus/
gbus_io.c 73 struct gbus_config * const gc = v; local
75 *iohp = ALPHA_PHYS_TO_K0SEG(gc->gc_sysbase + addr);
143 struct gbus_config * const gc = &gbus_config; local
144 bus_space_tag_t t = &gc->gc_st;
146 if (t->abs_cookie == gc) {
148 KASSERT(gc->gc_sysbase == sysbase);
152 gc->gc_sysbase = sysbase;
161 t->abs_cookie = gc;
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.ada/
data-sections.exp 23 {debug additional_flags=-fdata-sections ldflags=-Wl,--gc-sections}] \
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.ada/
data-sections.exp 23 {debug additional_flags=-fdata-sections ldflags=-Wl,--gc-sections}] \
  /src/sys/arch/hpcmips/dev/
mq200subr.c 243 mq200_set_pll(sc, clock->gc[MQ200_GC1], crt->clock);
288 (clock->gc[MQ200_GC1] << MQ200_GCC_RCLK_SHIFT) |
300 mq200_clknames[clock->gc[MQ200_GC1]]);
313 (clock->gc[MQ200_GC2] << MQ200_GCC_RCLK_SHIFT) |
316 mq200_clknames[clock->gc[MQ200_GC2]]);
343 mq200_win_enable(struct mq200_softc *sc, int gc,
348 DPRINTF("enable window on GC%d: %dx%d(%dx%d)\n",
349 gc + 1, width, height, sc->sc_width[gc], sc->sc_height[gc]);
    [all...]
mq200debug.c 176 { "GC", MQ200_GCR(0), 0x00, 0x13 },
177 { "GC", MQ200_GCR(0), 0x20, 0x33 },
233 mq200_dump_gc(struct mq200_softc *sc, int gc)
260 reg = mq200_read(sc, MQ200_GCCR(gc));
280 if (gc == 0) {
361 reg = mq200_read(sc, MQ200_GCHDCR(gc));
362 if (gc == 0) {
374 reg = mq200_read(sc, MQ200_GCVDCR(gc));
375 if (gc == 0) {
387 reg = mq200_read(sc, MQ200_GCHSCR(gc));
    [all...]
  /src/sys/arch/arm/sociox/
sni_gpio.c 205 struct gpio_chipset_tag *gc; local
215 gc = &sc->sc_gpio_gc;
216 gc->gp_cookie = sc;
217 gc->gp_pin_read = NULL; /* AAA */
218 gc->gp_pin_write = NULL; /* AAA */
219 gc->gp_pin_ctl = NULL; /* AAA */
220 gc->gp_intr_establish = NULL; /* AAA */
221 gc->gp_intr_disestablish = NULL; /* AAA */
222 gc->gp_intr_str = NULL; /* AAA */
224 gba.gba_gc = gc;
    [all...]

Completed in 59 milliseconds

1 2 3 4 5 6 7 8 91011