Home
last modified time | relevance | path

Searched full:g (Results 1 – 25 of 6202) sorted by relevance

12345678910>>...249

/openbmc/linux/drivers/net/wireless/realtek/rtlwifi/rtl8821ae/
H A Dtable.c2898 "FCC", "2.4G", "20M", "CCK", "1T", "01", "36",
2899 "ETSI", "2.4G", "20M", "CCK", "1T", "01", "32",
2900 "MKK", "2.4G", "20M", "CCK", "1T", "01", "32",
2901 "FCC", "2.4G", "20M", "CCK", "1T", "02", "36",
2902 "ETSI", "2.4G", "20M", "CCK", "1T", "02", "32",
2903 "MKK", "2.4G", "20M", "CCK", "1T", "02", "32",
2904 "FCC", "2.4G", "20M", "CCK", "1T", "03", "36",
2905 "ETSI", "2.4G", "20M", "CCK", "1T", "03", "32",
2906 "MKK", "2.4G", "20M", "CCK", "1T", "03", "32",
2907 "FCC", "2.4G", "20M", "CCK", "1T", "04", "36",
[all …]
/openbmc/u-boot/drivers/usb/gadget/
H A Dgadget_chips.h18 #define gadget_is_net2280(g) (!strcmp("net2280", (g)->name)) argument
20 #define gadget_is_net2280(g) 0 argument
24 #define gadget_is_amd5536udc(g) (!strcmp("amd5536udc", (g)->name)) argument
26 #define gadget_is_amd5536udc(g) 0 argument
30 #define gadget_is_dummy(g) (!strcmp("dummy_udc", (g)->name)) argument
32 #define gadget_is_dummy(g) 0 argument
36 #define gadget_is_pxa(g) (!strcmp("pxa2xx_udc", (g)->name)) argument
38 #define gadget_is_pxa(g) 0 argument
42 #define gadget_is_goku(g) (!strcmp("goku_udc", (g)->name)) argument
44 #define gadget_is_goku(g) 0 argument
[all …]
/openbmc/qemu/hw/display/
H A Dvirtio-gpu-base.c24 virtio_gpu_base_reset(VirtIOGPUBase *g) in virtio_gpu_base_reset() argument
28 g->enable = 0; in virtio_gpu_base_reset()
30 for (i = 0; i < g->conf.max_outputs; i++) { in virtio_gpu_base_reset()
31 g->scanout[i].resource_id = 0; in virtio_gpu_base_reset()
32 g->scanout[i].width = 0; in virtio_gpu_base_reset()
33 g->scanout[i].height = 0; in virtio_gpu_base_reset()
34 g->scanout[i].x = 0; in virtio_gpu_base_reset()
35 g->scanout[i].y = 0; in virtio_gpu_base_reset()
36 g->scanout[i].ds = NULL; in virtio_gpu_base_reset()
41 virtio_gpu_base_fill_display_info(VirtIOGPUBase *g, in virtio_gpu_base_fill_display_info() argument
[all …]
H A Dvirtio-gpu-virgl.c33 virtio_gpu_virgl_find_resource(VirtIOGPU *g, uint32_t resource_id) in virtio_gpu_virgl_find_resource() argument
37 res = virtio_gpu_find_resource(g, resource_id); in virtio_gpu_virgl_find_resource()
56 struct VirtIOGPU *g; member
68 VirtIOGPU *g = opaque; in virtio_gpu_virgl_resume_cmdq_bh() local
70 virtio_gpu_process_cmdq(g); in virtio_gpu_virgl_resume_cmdq_bh()
83 b = VIRTIO_GPU_BASE(vmr->g); in virtio_gpu_virgl_hostmem_region_free()
91 gl = VIRTIO_GPU_GL(vmr->g); in virtio_gpu_virgl_hostmem_region_free()
96 virtio_gpu_virgl_map_resource_blob(VirtIOGPU *g, in virtio_gpu_virgl_map_resource_blob() argument
101 VirtIOGPUBase *b = VIRTIO_GPU_BASE(g); in virtio_gpu_virgl_map_resource_blob()
120 vmr->g = g; in virtio_gpu_virgl_map_resource_blob()
[all …]
H A Dvirtio-gpu.c39 virtio_gpu_find_check_resource(VirtIOGPU *g, uint32_t resource_id,
45 void virtio_gpu_update_cursor_data(VirtIOGPU *g, in virtio_gpu_update_cursor_data() argument
53 res = virtio_gpu_find_check_resource(g, resource_id, false, in virtio_gpu_update_cursor_data()
78 static void update_cursor(VirtIOGPU *g, struct virtio_gpu_update_cursor *cursor) in update_cursor() argument
81 VirtIOGPUClass *vgc = VIRTIO_GPU_GET_CLASS(g); in update_cursor()
84 if (cursor->pos.scanout_id >= g->parent_obj.conf.max_outputs) { in update_cursor()
87 s = &g->parent_obj.scanout[cursor->pos.scanout_id]; in update_cursor()
104 vgc->update_cursor_data(g, s, cursor->resource_id); in update_cursor()
117 virtio_gpu_find_resource(VirtIOGPU *g, uint32_t resource_id) in virtio_gpu_find_resource() argument
121 QTAILQ_FOREACH(res, &g->reslist, next) { in virtio_gpu_find_resource()
[all …]
H A Dvhost-user-gpu.c119 static void vhost_user_gpu_update_blocked(VhostUserGPU *g, bool blocked);
122 vhost_user_gpu_handle_cursor(VhostUserGPU *g, VhostUserGpuMsg *msg) in vhost_user_gpu_handle_cursor() argument
127 if (pos->scanout_id >= g->parent_obj.conf.max_outputs) { in vhost_user_gpu_handle_cursor()
130 s = &g->parent_obj.scanout[pos->scanout_id]; in vhost_user_gpu_handle_cursor()
152 vhost_user_gpu_send_msg(VhostUserGPU *g, const VhostUserGpuMsg *msg) in vhost_user_gpu_send_msg() argument
154 qemu_chr_fe_write(&g->vhost_chr, (uint8_t *)msg, in vhost_user_gpu_send_msg()
159 vhost_user_gpu_unblock(VhostUserGPU *g) in vhost_user_gpu_unblock() argument
166 vhost_user_gpu_send_msg(g, &msg); in vhost_user_gpu_unblock()
170 vhost_user_gpu_handle_display(VhostUserGPU *g, VhostUserGpuMsg *msg) in vhost_user_gpu_handle_display() argument
187 vhost_user_gpu_send_msg(g, &reply); in vhost_user_gpu_handle_display()
[all …]
H A Dvirtio-gpu-rutabaga.c32 virtio_gpu_rutabaga_update_cursor(VirtIOGPU *g, struct virtio_gpu_scanout *s, in virtio_gpu_rutabaga_update_cursor() argument
39 VirtIOGPURutabaga *vr = VIRTIO_GPU_RUTABAGA(g); in virtio_gpu_rutabaga_update_cursor()
41 res = virtio_gpu_find_resource(g, resource_id); in virtio_gpu_rutabaga_update_cursor()
69 VirtIOGPU *g = VIRTIO_GPU(b); in virtio_gpu_rutabaga_gl_flushed() local
70 virtio_gpu_process_cmdq(g); in virtio_gpu_rutabaga_gl_flushed()
74 rutabaga_cmd_create_resource_2d(VirtIOGPU *g, in rutabaga_cmd_create_resource_2d() argument
82 VirtIOGPURutabaga *vr = VIRTIO_GPU_RUTABAGA(g); in rutabaga_cmd_create_resource_2d()
108 QTAILQ_INSERT_HEAD(&g->reslist, res, next); in rutabaga_cmd_create_resource_2d()
112 rutabaga_cmd_create_resource_3d(VirtIOGPU *g, in rutabaga_cmd_create_resource_3d() argument
120 VirtIOGPURutabaga *vr = VIRTIO_GPU_RUTABAGA(g); in rutabaga_cmd_create_resource_3d()
[all …]
/openbmc/linux/Documentation/userspace-api/media/v4l/
H A Dpixfmt-rgb.rst45 - 'r', 'g' and 'b' denote bits of the red, green and blue components
59 R\ :sub:`0` G\ :sub:`5` G\ :sub:`4` G\ :sub:`3` G\ :sub:`2` G\ :sub:`1`
60 G\ :sub:`0` B\ :sub:`4` B\ :sub:`3` B\ :sub:`2` B\ :sub:`1` B\ :sub:`0`], and
62 R\ :sub:`0` G\ :sub:`5` G\ :sub:`4` G\ :sub:`3`] followed by [G\ :sub:`2`
63 G\ :sub:`1` G\ :sub:`0` B\ :sub:`4` B\ :sub:`3` B\ :sub:`2` B\ :sub:`1`
130 - g\ :sub:`2`
131 - g\ :sub:`1`
132 - g\ :sub:`0`
141 - g\ :sub:`3`
142 - g\ :sub:`2`
[all …]
H A Dbayer.svg3 …c:Work></rdf:RDF></metadata><g id="g186" class="com.sun.star.drawing.CustomShape" transform="trans…
5g></g><g id="g203" class="com.sun.star.drawing.CustomShape" transform="translate(-3285.9 -3185.9)"…
6g></g><g id="g220" class="com.sun.star.drawing.CustomShape" transform="translate(-3285.9 -3185.9)"…
7 </g></g><g id="g237" class="com.sun.star.drawing.CustomShape" transform="translate(-3285.9 -3185.9)…
8g></g><g id="g254" class="com.sun.star.drawing.CustomShape" transform="translate(-3285.9 -3185.9)"…
10 </g></g><g id="g281" class="com.sun.star.drawing.CustomShape" transform="translate(-3285.9 -3185.9)…
11g></g><g id="g298" class="com.sun.star.drawing.CustomShape" transform="translate(-3285.9 -3185.9)"…
12g></g><g id="g315" class="com.sun.star.drawing.CustomShape" transform="translate(-3285.9 -3185.9)"…
13 </g></g><g id="g332" class="com.sun.star.drawing.CustomShape" transform="translate(-3285.9 -3185.9)…
14 </g></g><g id="g349" class="com.sun.star.drawing.TextShape" transform="translate(-3285.9 -3185.9)">…
[all …]
H A Dpixfmt-srggb10-ipu3.rst40 - G\ :sub:`0001low`\ (bits 7--2)
45 G\ :sub:`0001high`\ (bits 3--0)
46 - G\ :sub:`0003low`\ (bits 7--6)
50 - G\ :sub:`0003high`
52 - G\ :sub:`0005low`\ (bits 7--2)
57 G\ :sub:`0005high`\ (bits 3--0)
59 - G\ :sub:`0007low`\ (bits 7--6)
62 - G\ :sub:`0007high`
64 - G\ :sub:`0009low`\ (bits 7--2)
70 G\ :sub:`0009high`\ (bits 3--0)
[all …]
H A Duser-func.rst17 vidioc-dbg-g-chip-info
18 vidioc-dbg-g-register
34 vidioc-g-audio
35 vidioc-g-audioout
36 vidioc-g-crop
37 vidioc-g-ctrl
38 vidioc-g-dv-timings
39 vidioc-g-edid
40 vidioc-g-enc-index
41 vidioc-g-ext-ctrls
[all …]
H A Dnv12mt_example.svg57 id="defs151" /><g
60 transform="translate(-3285.889,-3185.889)"><g
86 </g></g><g
89 transform="translate(-3285.889,-3185.889)"><g
101 style="fill:none;stroke:#3465a4" /></g></g><g
104 transform="translate(-3285.889,-3185.889)"><g
130 </g></g><g
133 transform="translate(-3285.889,-3185.889)"><g
159 </g></g><g
162 transform="translate(-3285.889,-3185.889)"><g
[all …]
H A Dnv12mt.svg64 id="defs147" /><g
67 transform="translate(-3285.889,-3185.889)"><g
68 id="g179"><g
71 clip-path="url(#presentation_clip_path)"><g
73 id="g182"><g
75 id="g184"><g
101 </g></g><g
103 id="g199"><g
115 style="fill:none;stroke:#3465a4" /></g></g><g
117 id="g206"><g
[all …]
/openbmc/linux/drivers/gpio/
H A Dgpio-ftgpio010.c57 struct ftgpio_gpio *g = gpiochip_get_data(gc); in ftgpio_gpio_ack_irq() local
59 writel(BIT(irqd_to_hwirq(d)), g->base + GPIO_INT_CLR); in ftgpio_gpio_ack_irq()
65 struct ftgpio_gpio *g = gpiochip_get_data(gc); in ftgpio_gpio_mask_irq() local
68 val = readl(g->base + GPIO_INT_EN); in ftgpio_gpio_mask_irq()
70 writel(val, g->base + GPIO_INT_EN); in ftgpio_gpio_mask_irq()
77 struct ftgpio_gpio *g = gpiochip_get_data(gc); in ftgpio_gpio_unmask_irq() local
81 val = readl(g->base + GPIO_INT_EN); in ftgpio_gpio_unmask_irq()
83 writel(val, g->base + GPIO_INT_EN); in ftgpio_gpio_unmask_irq()
89 struct ftgpio_gpio *g = gpiochip_get_data(gc); in ftgpio_gpio_set_irq_type() local
93 reg_type = readl(g->base + GPIO_INT_TYPE); in ftgpio_gpio_set_irq_type()
[all …]
H A Dgpio-ixp4xx.c61 struct ixp4xx_gpio *g = gpiochip_get_data(gc); in ixp4xx_gpio_irq_ack() local
63 __raw_writel(BIT(d->hwirq), g->base + IXP4XX_REG_GPIS); in ixp4xx_gpio_irq_ack()
77 struct ixp4xx_gpio *g = gpiochip_get_data(gc); in ixp4xx_gpio_irq_unmask() local
80 if (!(g->irq_edge & BIT(d->hwirq))) in ixp4xx_gpio_irq_unmask()
90 struct ixp4xx_gpio *g = gpiochip_get_data(gc); in ixp4xx_gpio_irq_set_type() local
101 g->irq_edge |= BIT(d->hwirq); in ixp4xx_gpio_irq_set_type()
106 g->irq_edge |= BIT(d->hwirq); in ixp4xx_gpio_irq_set_type()
111 g->irq_edge |= BIT(d->hwirq); in ixp4xx_gpio_irq_set_type()
116 g->irq_edge &= ~BIT(d->hwirq); in ixp4xx_gpio_irq_set_type()
121 g->irq_edge &= ~BIT(d->hwirq); in ixp4xx_gpio_irq_set_type()
[all …]
/openbmc/linux/tools/perf/bench/
H A Dnuma.c48 #define tprintf(x...) do { if (g && g->p.show_details >= 0) printf(x); } while (0)
54 #define dprintf(x...) do { if (g && g->p.show_details >= 1) printf(x); } while (0)
162 static struct global_info *g = NULL; variable
173 OPT_STRING('G', "mb_global" , &p0.mb_global_str, "MB", "global memory (MBs)"),
231 for (i = 0; i < g->p.nr_nodes; i++) { in nr_numa_nodes()
293 for (cpu = 0; cpu < g->p.nr_cpus; cpu++) in bind_to_cpu()
296 if (target_cpu < 0 || target_cpu >= g->p.nr_cpus) in bind_to_cpu()
339 for (cpu = 0; cpu < g->p.nr_cpus; cpu++) in bind_to_node()
387 ret = set_mempolicy(MPOL_DEFAULT, NULL, g->p.nr_nodes-1); in mempol_restore()
450 if (ret && !g->print_once) { in alloc_data()
[all …]
/openbmc/linux/drivers/pinctrl/qcom/
H A Dpinctrl-msm.c87 const struct msm_pingroup *g) \
89 return readl(pctrl->regs[g->tile] + g->name##_reg); \
92 const struct msm_pingroup *g) \
94 writel(val, pctrl->regs[g->tile] + g->name##_reg); \
104 const struct msm_pingroup *g) in MSM_ACCESSOR()
106 u32 val = g->intr_ack_high ? BIT(g->intr_status_bit) : 0; in MSM_ACCESSOR()
108 msm_writel_intr_status(val, pctrl, g); in MSM_ACCESSOR()
191 const struct msm_pingroup *g; in msm_pinmux_set_mux() local
196 g = &pctrl->soc->groups[group]; in msm_pinmux_set_mux()
197 mask = GENMASK(g->mux_bit + order_base_2(g->nfuncs) - 1, g->mux_bit); in msm_pinmux_set_mux()
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/
H A DCVE-2019-13232_p3.patch41 if (G.cover == NULL) {
42 G.cover = malloc(sizeof(cover_t));
43 if (G.cover == NULL) {
45 ((cover_t *)G.cover)->max = 0;
47 ((cover_t *)G.cover)->num = 0;
48 - if ((G.extra_bytes != 0 &&
49 - cover_add((cover_t *)G.cover, 0, G.extra_bytes) != 0) ||
50 - cover_add((cover_t *)G.cover,
51 + if (cover_add((cover_t *)G.cover,
52 G.extra_bytes + G.ecrec.offset_start_central_directory,
[all …]
H A D11-cve-2014-8141-getzip64data.patch25 if (readbuf(__G__ (char *)G.extra_field, length) == 0)
28 - getZip64Data(__G__ G.extra_field, length);
29 + if (getZip64Data(__G__ G.extra_field, length) != PK_COOL)
36 G.unipath_filename = NULL;
37 if (G.UzO.U_flag < 2) {
91 - if (G.crec.ucsize == 0xffffffff || G.lrec.ucsize == 0xffffffff){
92 - G.lrec.ucsize = G.crec.ucsize = makeint64(offset + ef_buf);
93 - offset += sizeof(G.crec.ucsize);
94 + if ((G.crec.ucsize == Z64FLGL) || (G.lrec.ucsize == Z64FLGL))
99 + G.crec.ucsize = G.lrec.ucsize = makeint64(offset + ef_buf);
[all …]
/openbmc/qemu/contrib/vhost-user-gpu/
H A Dvirgl.c22 vg_virgl_update_cursor_data(VuGpu *g, uint32_t resource_id, in vg_virgl_update_cursor_data() argument
38 virgl_cmd_context_create(VuGpu *g, in virgl_cmd_context_create() argument
50 virgl_cmd_context_destroy(VuGpu *g, in virgl_cmd_context_destroy() argument
61 virgl_cmd_create_resource_2d(VuGpu *g, in virgl_cmd_create_resource_2d() argument
84 virgl_cmd_create_resource_3d(VuGpu *g, in virgl_cmd_create_resource_3d() argument
107 virgl_cmd_resource_unref(VuGpu *g, in virgl_cmd_resource_unref() argument
120 vg_cleanup_mapping_iov(g, res_iovs, num_iovs); in virgl_cmd_resource_unref()
131 virgl_cmd_get_capset_info(VuGpu *g, in virgl_cmd_get_capset_info() argument
155 vg_ctrl_response(g, cmd, &resp.hdr, sizeof(resp)); in virgl_cmd_get_capset_info()
170 virgl_cmd_get_capset(VuGpu *g, in virgl_cmd_get_capset() argument
[all …]
H A Dvhost-user-gpu.c52 static void vg_cleanup_mapping(VuGpu *g,
111 vg_sock_fd_close(VuGpu *g) in vg_sock_fd_close() argument
113 if (g->sock_fd >= 0) { in vg_sock_fd_close()
114 close(g->sock_fd); in vg_sock_fd_close()
115 g->sock_fd = -1; in vg_sock_fd_close()
122 VuGpu *g = user_data; in source_wait_cb() local
124 if (!vg_recv_msg(g, VHOST_USER_GPU_DMABUF_UPDATE, 0, NULL)) { in source_wait_cb()
129 g->wait_in = 0; in source_wait_cb()
130 vg_handle_ctrl(&g->dev.parent, 0); in source_wait_cb()
136 vg_wait_ok(VuGpu *g) in vg_wait_ok() argument
[all …]
/openbmc/linux/crypto/
H A Dsm3.c38 #define R(i, a, b, c, d, e, f, g, h, t, w1, w2) \ argument
43 h += GG ## i(e, f, g) + ss1 + (w1); \
49 #define R1(a, b, c, d, e, f, g, h, t, w1, w2) \ argument
50 R(1, a, b, c, d, e, f, g, h, t, w1, w2)
51 #define R2(a, b, c, d, e, f, g, h, t, w1, w2) \ argument
52 R(2, a, b, c, d, e, f, g, h, t, w1, w2)
74 u32 a, b, c, d, e, f, g, h, ss1, ss2; in sm3_transform() local
82 g = sctx->state[6]; in sm3_transform()
85 R1(a, b, c, d, e, f, g, h, K[0], I(0), I(4)); in sm3_transform()
86 R1(d, a, b, c, h, e, f, g, K[1], I(1), I(5)); in sm3_transform()
[all …]
/openbmc/linux/drivers/usb/gadget/udc/
H A Dtrace.h21 TP_PROTO(struct usb_gadget *g, int ret),
22 TP_ARGS(g, ret),
45 __entry->speed = g->speed;
46 __entry->max_speed = g->max_speed;
47 __entry->state = g->state;
48 __entry->mA = g->mA;
49 __entry->sg_supported = g->sg_supported;
50 __entry->is_otg = g->is_otg;
51 __entry->is_a_peripheral = g->is_a_peripheral;
52 __entry->b_hnp_enable = g->b_hnp_enable;
[all …]
/openbmc/u-boot/lib/
H A Dsha256.c62 uint32_t A, B, C, D, E, F, G, H; in sha256_process() local
99 #define P(a,b,c,d,e,f,g,h,x,K) { \ in sha256_process() argument
100 temp1 = h + S3(e) + F1(e,f,g) + K + x; \ in sha256_process()
111 G = ctx->state[6]; in sha256_process()
114 P(A, B, C, D, E, F, G, H, W[0], 0x428A2F98); in sha256_process()
115 P(H, A, B, C, D, E, F, G, W[1], 0x71374491); in sha256_process()
116 P(G, H, A, B, C, D, E, F, W[2], 0xB5C0FBCF); in sha256_process()
117 P(F, G, H, A, B, C, D, E, W[3], 0xE9B5DBA5); in sha256_process()
118 P(E, F, G, H, A, B, C, D, W[4], 0x3956C25B); in sha256_process()
119 P(D, E, F, G, H, A, B, C, W[5], 0x59F111F1); in sha256_process()
[all …]
/openbmc/linux/drivers/pinctrl/tegra/
H A Dpinctrl-tegra.c256 const struct tegra_pingroup *g; in tegra_pinctrl_set_mux() local
260 g = &pmx->soc->groups[group]; in tegra_pinctrl_set_mux()
262 if (WARN_ON(g->mux_reg < 0)) in tegra_pinctrl_set_mux()
265 for (i = 0; i < ARRAY_SIZE(g->funcs); i++) { in tegra_pinctrl_set_mux()
266 if (g->funcs[i] == function) in tegra_pinctrl_set_mux()
269 if (WARN_ON(i == ARRAY_SIZE(g->funcs))) in tegra_pinctrl_set_mux()
272 val = pmx_readl(pmx, g->mux_bank, g->mux_reg); in tegra_pinctrl_set_mux()
273 val &= ~(0x3 << g->mux_bit); in tegra_pinctrl_set_mux()
274 val |= i << g->mux_bit; in tegra_pinctrl_set_mux()
275 pmx_writel(pmx, val, g->mux_bank, g->mux_reg); in tegra_pinctrl_set_mux()
[all …]

12345678910>>...249