Home
last modified time | relevance | path

Searched refs:g (Results 1 – 25 of 1805) sorted by relevance

12345678910>>...73

/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.c25 virtio_gpu_base_reset(VirtIOGPUBase *g) in virtio_gpu_base_reset() argument
29 g->enable = 0; in virtio_gpu_base_reset()
31 for (i = 0; i < g->conf.max_outputs; i++) { in virtio_gpu_base_reset()
32 g->scanout[i].resource_id = 0; in virtio_gpu_base_reset()
33 g->scanout[i].width = 0; in virtio_gpu_base_reset()
34 g->scanout[i].height = 0; in virtio_gpu_base_reset()
35 g->scanout[i].x = 0; in virtio_gpu_base_reset()
36 g->scanout[i].y = 0; in virtio_gpu_base_reset()
37 g->scanout[i].ds = NULL; in virtio_gpu_base_reset()
42 virtio_gpu_base_fill_display_info(VirtIOGPUBase *g, in virtio_gpu_base_fill_display_info() argument
[all …]
H A Dvhost-user-gpu.c120 static void vhost_user_gpu_update_blocked(VhostUserGPU *g, bool blocked);
123 vhost_user_gpu_handle_cursor(VhostUserGPU *g, VhostUserGpuMsg *msg) in vhost_user_gpu_handle_cursor() argument
128 if (pos->scanout_id >= g->parent_obj.conf.max_outputs) { in vhost_user_gpu_handle_cursor()
131 s = &g->parent_obj.scanout[pos->scanout_id]; in vhost_user_gpu_handle_cursor()
153 vhost_user_gpu_send_msg(VhostUserGPU *g, const VhostUserGpuMsg *msg) in vhost_user_gpu_send_msg() argument
155 qemu_chr_fe_write(&g->vhost_chr, (uint8_t *)msg, in vhost_user_gpu_send_msg()
160 vhost_user_gpu_unblock(VhostUserGPU *g) in vhost_user_gpu_unblock() argument
167 vhost_user_gpu_send_msg(g, &msg); in vhost_user_gpu_unblock()
171 vhost_user_gpu_handle_display(VhostUserGPU *g, VhostUserGpuMsg *msg) in vhost_user_gpu_handle_display() argument
188 vhost_user_gpu_send_msg(g, &reply); in vhost_user_gpu_handle_display()
[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-vga.c13 VirtIOGPUBase *g = vvga->vgpu; in virtio_vga_base_invalidate_display() local
15 if (g->enable) { in virtio_vga_base_invalidate_display()
16 g->hw_ops->invalidate(g); in virtio_vga_base_invalidate_display()
25 VirtIOGPUBase *g = vvga->vgpu; in virtio_vga_base_update_display() local
27 if (g->enable) { in virtio_vga_base_update_display()
28 g->hw_ops->gfx_update(g); in virtio_vga_base_update_display()
37 VirtIOGPUBase *g = vvga->vgpu; in virtio_vga_base_text_update() local
39 if (g->enable) { in virtio_vga_base_text_update()
40 if (g->hw_ops->text_update) { in virtio_vga_base_text_update()
41 g->hw_ops->text_update(g, chardata); in virtio_vga_base_text_update()
[all …]
H A Dvirtio-gpu-gl.c28 static void virtio_gpu_gl_update_cursor_data(VirtIOGPU *g, in virtio_gpu_gl_update_cursor_data() argument
32 VirtIOGPUGL *gl = VIRTIO_GPU_GL(g); in virtio_gpu_gl_update_cursor_data()
58 VirtIOGPU *g = VIRTIO_GPU(b); in virtio_gpu_gl_flushed() local
60 virtio_gpu_process_cmdq(g); in virtio_gpu_gl_flushed()
65 VirtIOGPU *g = VIRTIO_GPU(vdev); in virtio_gpu_gl_handle_ctrl() local
75 virtio_gpu_virgl_reset(g); in virtio_gpu_gl_handle_ctrl()
78 if (virtio_gpu_virgl_init(g)) { in virtio_gpu_gl_handle_ctrl()
96 QTAILQ_INSERT_TAIL(&g->cmdq, cmd, next); in virtio_gpu_gl_handle_ctrl()
100 virtio_gpu_process_cmdq(g); in virtio_gpu_gl_handle_ctrl()
101 virtio_gpu_virgl_fence_poll(g); in virtio_gpu_gl_handle_ctrl()
[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 …]
H A Dvirtio-gpu-pci.c31 VirtIOGPUBase *g = vgpu->vgpu; in virtio_gpu_pci_base_realize() local
32 DeviceState *vdev = DEVICE(g); in virtio_gpu_pci_base_realize()
35 if (virtio_gpu_hostmem_enabled(g->conf)) { in virtio_gpu_pci_base_realize()
38 memory_region_init(&g->hostmem, OBJECT(g), "virtio-gpu-hostmem", in virtio_gpu_pci_base_realize()
39 g->conf.hostmem); in virtio_gpu_pci_base_realize()
44 &g->hostmem); in virtio_gpu_pci_base_realize()
45 virtio_pci_add_shm_cap(vpci_dev, 4, 0, g->conf.hostmem, in virtio_gpu_pci_base_realize()
54 for (i = 0; i < g->conf.max_outputs; i++) { in virtio_gpu_pci_base_realize()
55 object_property_set_link(OBJECT(g->scanout[i].con), "device", in virtio_gpu_pci_base_realize()
H A Dpl110_template.h149 unsigned int r, g, b; in glue() local
165 g = data & 0x3f; in glue()
172 g = (data & 0x3f) << 2; in glue()
177 COPY_PIXEL(d, rgb_to_pixel32(r, g, b)); in glue()
180 g = (data & 0x3f) << 2; in glue()
184 COPY_PIXEL(d, rgb_to_pixel32(r, g, b)); in glue()
195 unsigned int r, g, b; in glue() local
207 g = (data >> 8) & 0xff; in glue()
211 g = (data >> 16) & 0xff; in glue()
214 COPY_PIXEL(d, rgb_to_pixel32(r, g, b)); in glue()
[all …]
/openbmc/qemu/include/ui/
H A Dpixel_ops.h1 static inline unsigned int rgb_to_pixel8(unsigned int r, unsigned int g, in rgb_to_pixel8() argument
4 return ((r >> 5) << 5) | ((g >> 5) << 2) | (b >> 6); in rgb_to_pixel8()
7 static inline unsigned int rgb_to_pixel15(unsigned int r, unsigned int g, in rgb_to_pixel15() argument
10 return ((r >> 3) << 10) | ((g >> 3) << 5) | (b >> 3); in rgb_to_pixel15()
13 static inline unsigned int rgb_to_pixel15bgr(unsigned int r, unsigned int g, in rgb_to_pixel15bgr() argument
16 return ((b >> 3) << 10) | ((g >> 3) << 5) | (r >> 3); in rgb_to_pixel15bgr()
19 static inline unsigned int rgb_to_pixel16(unsigned int r, unsigned int g, in rgb_to_pixel16() argument
22 return ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3); in rgb_to_pixel16()
25 static inline unsigned int rgb_to_pixel16bgr(unsigned int r, unsigned int g, in rgb_to_pixel16bgr() argument
28 return ((b >> 3) << 11) | ((g >> 2) << 5) | (r >> 3); in rgb_to_pixel16bgr()
[all …]
/openbmc/qemu/tests/functional/
H A Dreverse_debugging.py62 get_reg_le(g, reg) global() argument
70 get_reg_be(g, reg) global() argument
74 get_reg(self, g, reg) global() argument
81 get_pc(self, g) global() argument
84 check_pc(self, g, addr) global() argument
90 gdb_step(g) global() argument
94 gdb_bstep(g) global() argument
/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/openbmc/poky/meta/recipes-devtools/valgrind/valgrind/
H A D0001-makefiles-Drop-setting-mcpu-to-cortex-a8-on-arm-arch.patch46 -v6intARM_CFLAGS = $(AM_CFLAGS) -g -O0 -mcpu=cortex-a8 -marm
47 -v6intThumb_CFLAGS = $(AM_CFLAGS) -g -O0 -mcpu=cortex-a8 -mthumb
48 +v6intARM_CFLAGS = $(AM_CFLAGS) -g -O0 -marm
49 +v6intThumb_CFLAGS = $(AM_CFLAGS) -g -O0 -mthumb
51 -v6media_CFLAGS = $(AM_CFLAGS) -g -O0 -mcpu=cortex-a8 -mthumb
52 +v6media_CFLAGS = $(AM_CFLAGS) -g -O0 -mthumb
54 v8crypto_a_CFLAGS = $(AM_CFLAGS) -g -O0 -mfpu=crypto-neon-fp-armv8 -marm -march=armv8-a
55 v8crypto_t_CFLAGS = $(AM_CFLAGS) -g -O0 -mfpu=crypto-neon-fp-armv8 -mthumb -march=armv8-a
56 @@ -74,23 +74,23 @@ v8memory_t_CFLAGS = $(AM_CFLAGS) -g -O0 \
58 vcvt_fixed_float_VFP_CFLAGS = $(AM_CFLAGS) -g -O0 -mcpu=cortex-a8 -mfpu=neon
[all …]
/openbmc/openbmc/meta-facebook/recipes-phosphor/health/
H A Dphosphor-health-monitor_%.bbappend21 sed -i "s/\"CPU_CRIT_VAL\"/${CPU_CRIT_VAL}/g" ${UNPACKDIR}/bmc_health_config.json
22 sed -i "s/CPU_CRIT_TGT/${CPU_CRIT_TGT}/g" ${UNPACKDIR}/bmc_health_config.json
23 sed -i "s/\"CPU_WARN_VAL\"/${CPU_WARN_VAL}/g" ${UNPACKDIR}/bmc_health_config.json
24 sed -i "s/CPU_WARN_TGT/${CPU_WARN_TGT}/g" ${UNPACKDIR}/bmc_health_config.json
26 sed -i "s/\"MEM_CRIT_VAL\"/${MEM_CRIT_VAL}/g" ${UNPACKDIR}/bmc_health_config.json
27 sed -i "s/MEM_CRIT_TGT/${MEM_CRIT_TGT}/g" ${UNPACKDIR}/bmc_health_config.json
28 sed -i "s/\"MEM_WARN_VAL\"/${MEM_WARN_VAL}/g" ${UNPACKDIR}/bmc_health_config.json
29 sed -i "s/MEM_WARN_TGT/${MEM_WARN_TGT}/g" ${UNPACKDIR}/bmc_health_config.json
31 sed -i "s/\"STORAGE_CRIT_VAL\"/${STORAGE_CRIT_VAL}/g" ${UNPACKDIR}/bmc_health_config.json
32 sed -i "s/STORAGE_CRIT_TGT/${STORAGE_CRIT_TGT}/g" ${UNPACKDIR}/bmc_health_config.json
[all …]
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/files/
H A D0001-libntfs-3g-Makefile.am-fix-install-failed-while-host.patch4 Subject: [PATCH] libntfs-3g/Makefile.am: fix install failed while host dir not exist
9 …]: Entering directory `tmp/work/core2-64-wrs-linux/ntfs-3g-ntfsprogs/2017.3.23-r0/build/libntfs-3g'
11 …mv -f "tmp/work/core2-64-wrs-linux/ntfs-3g-ntfsprogs/2017.3.23-r0/image//usr/lib64"/libntfs-3g.so*…
12 "tmp/work/core2-64-wrs-linux/ntfs-3g-ntfsprogs/2017.3.23-r0/image//usr/lib64"; \
24 libntfs-3g/Makefile.am | 6 +++---
27 diff --git a/libntfs-3g/Makefile.am b/libntfs-3g/Makefile.am
29 --- a/libntfs-3g/Makefile.am
30 +++ b/libntfs-3g/Makefile.am
37 $(MV) -f "$(DESTDIR)/$(libdir)"/libntfs-3g.so* "$(DESTDIR)/$(rootlibdir)"; \
42 $(install_sh_PROGRAM) "libntfs-3g.script.so" "$(DESTDIR)/$(libdir)/libntfs-3g.so"; \
[all …]
/openbmc/qemu/tests/tcg/multiarch/
H A Dsha512.c262 …_t a, uint64_t b, uint64_t c, uint64_t *d, uint64_t e, uint64_t f, uint64_t g, uint64_t *h, uint64… in Round() argument
264 uint64_t t1 = *h + Sigma1(e) + Ch(e, f, g) + k + w; in Round()
273 uint64_t a = s[0], b = s[1], c = s[2], d = s[3], e = s[4], f = s[5], g = s[6], h = s[7]; in Transform() local
276 Round(a, b, c, &d, e, f, g, &h, 0x428a2f98d728ae22ull, w0 = be64_to_cpu(chunk[0])); in Transform()
277 Round(h, a, b, &c, d, e, f, &g, 0x7137449123ef65cdull, w1 = be64_to_cpu(chunk[1])); in Transform()
278 Round(g, h, a, &b, c, d, e, &f, 0xb5c0fbcfec4d3b2full, w2 = be64_to_cpu(chunk[2])); in Transform()
279 Round(f, g, h, &a, b, c, d, &e, 0xe9b5dba58189dbbcull, w3 = be64_to_cpu(chunk[3])); in Transform()
280 Round(e, f, g, &h, a, b, c, &d, 0x3956c25bf348b538ull, w4 = be64_to_cpu(chunk[4])); in Transform()
281 Round(d, e, f, &g, h, a, b, &c, 0x59f111f1b605d019ull, w5 = be64_to_cpu(chunk[5])); in Transform()
282 Round(c, d, e, &f, g, h, a, &b, 0x923f82a4af194f9bull, w6 = be64_to_cpu(chunk[6])); in Transform()
[all …]
/openbmc/openbmc/meta-openembedded/meta-filesystems/recipes-filesystems/ntfs-3g-ntfsprogs/
H A Dntfs-3g-ntfsprogs_2022.10.3.bb2 HOMEPAGE = "http://www.ntfs-3g.org/"
4 PROVIDES = "ntfsprogs ntfs-3g"
10 file://0001-libntfs-3g-Makefile.am-fix-install-failed-while-host.patch \
16 UPSTREAM_CHECK_URI = "https://www.tuxera.com/community/open-source-ntfs-3g/"
27 PACKAGES =+ "ntfs-3g ntfsprogs libntfs-3g"
29 FILES:ntfs-3g = "${base_sbindir}/*.ntfs-3g ${bindir}/ntfs-3g* ${base_sbindir}/mount.ntfs"
30 RDEPENDS:ntfs-3g += "fuse"
31 RRECOMMENDS:ntfs-3g = "util-linux-mount"
34 FILES:libntfs-3g = "${libdir}/*${SOLIBS}"
39 ln -sf mount.ntfs-3g ${D}${base_sbindir}/mount.ntfs
[all …]
/openbmc/qemu/ui/
H A Dvnc-enc-zywrle.h215 #define ZYWRLE_LOAD_PIXEL15(src, r, g, b) \ argument
218 g = (((uint8_t*)src)[S_1]<< 6) | (((uint8_t*)src)[S_0]>> 2); \
219 g &= 0xF8; \
223 #define ZYWRLE_SAVE_PIXEL15(dst, r, g, b) \ argument
226 g &= 0xF8; \
228 ((uint8_t*)dst)[S_1] = (uint8_t)((r >> 1)|(g >> 6)); \
229 ((uint8_t*)dst)[S_0] = (uint8_t)(((b >> 3)|(g << 2))& 0xFF); \
234 #define ZYWRLE_LOAD_PIXEL16(src, r, g, b) \ argument
237 g = (((uint8_t*)src)[S_1]<< 5) | (((uint8_t*)src)[S_0] >> 3); \
238 g &= 0xFC; \
[all …]
/openbmc/u-boot/disk/
H A Dpart_amiga.c110 struct amiga_part_geometry *g; in print_part_info() local
112 g = (struct amiga_part_geometry *)&(p->environment); in print_part_info()
116 g->low_cyl * g->block_per_track * g->surfaces , in print_part_info()
117 (g->high_cyl - g->low_cyl + 1) * g->block_per_track * g->surfaces - 1); in print_part_info()
118 print_disk_type(g->dos_type); in print_part_info()
119 printf("\t%5d\n", g->boot_priority); in print_part_info()
296 struct amiga_part_geometry *g; in part_get_info_amiga() local
301 g = (struct amiga_part_geometry *)&(p->environment); in part_get_info_amiga()
302 info->start = g->low_cyl * g->block_per_track * g->surfaces; in part_get_info_amiga()
303 info->size = (g->high_cyl - g->low_cyl + 1) * g->block_per_track * g->surfaces - 1; in part_get_info_amiga()
[all …]
/openbmc/openbmc/poky/meta/recipes-extended/groff/files/
H A D0001-Make-manpages-mulitlib-identical.patch6 Upstream-Status: Submitted [by email to g.branden.robinson@gmail.com]
18 -e "s|[@]PAGE[@]|\\\\%$(PAGE)|g" \
19 -e "s|[@]PDFDOCDIR[@]|`echo $(pdfdocdir) | sed -f $(makevarescape)`|g" \
20 -e "s|[@]PSPRINT[@]|`echo $(PSPRINT) | sed -f $(makevarescape)`|g" \
21 - -e "s|[@]SYSTEMMACRODIR[@]|`echo $(systemtmacdir) | sed -f $(makevarescape)`|g" \
22 …IR[@]|`echo $(systemtmacdir) | sed -e 's,$(libdir),$(prefix)/lib*,' | sed -f $(makevarescape)`|g" \
23 -e "s|[@]TMAC_AN_PREFIX[@]|\\\\%$(tmac_an_prefix)|g" \
24 -e "s|[@]TMAC_M_PREFIX[@]|\\\\%$(tmac_m_prefix)|g" \
25 -e "s|[@]TMAC_MDIR[@]|`echo $(tmacdir) | sed -f $(makevarescape)`/mm|g" \
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/uml-utilities/uml-utilities-20040406/
H A D0001-makefiles-Append-to-CFLAGS-instead-of-re-assign.patch28 -CFLAGS = -g -Wall
29 +CFLAGS += -g -Wall
40 -CFLAGS = -g -Wall
41 +CFLAGS += -g -Wall
53 -CFLAGS = -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
54 +CFLAGS += -g -Wall -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
65 -CFLAGS = -g -Wall
66 +CFLAGS += -g -Wall
77 -CFLAGS = -g -Wall
78 +CFLAGS += -g -Wall
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/gd/gd/
H A D0001-Fix-deprecared-function-prototypes.patch49 -static unsigned int inxsearch(nnq, al,b,g,r)
51 -register int al, b, g, r;
52 +static unsigned int inxsearch(nn_quant *nnq, int al, int b, int g, int r)
56 @@ -306,9 +297,7 @@ register int al, b, g, r;
60 -static int contest(nnq, al,b,g,r)
62 -register int al,b,g,r;
63 +static int contest(nn_quant *nnq, int al, int b, int g, int r)
67 @@ -362,9 +351,7 @@ register int al,b,g,r;
68 /* Move neuron i towards biased (a,b,g,r) by factor alpha
71 -static void altersingle(nnq, alpha,i,al,b,g,r)
[all …]
/openbmc/openbmc/poky/meta/recipes-gnome/gobject-introspection/
H A Dgobject-introspection_1.84.0.bb27 MULTILIB_SCRIPTS = "${PN}-tools:${bindir}/g-ir-annotation-tool ${PN}-tools:${bindir}/g-ir-scanner"
35 # on the fly by g-ir-scanner and a native version of itself to run
50 -Dgi_cross_binary_wrapper=${B}/g-ir-scanner-qemuwrapper \
51 -Dgi_cross_ldd_wrapper=${B}/g-ir-scanner-lddwrapper \
61 sed -i -e '1s,#!.*,#!${USRBINPATH}/env python3,' ${S}/tools/g-ir-tool-template.in
68 cat > ${B}/g-ir-scanner-qemuwrapper << EOF
81 chmod +x ${B}/g-ir-scanner-qemuwrapper
83 …# Write out a wrapper for g-ir-scanner itself, which will be used when building introspection files
87 cat > ${B}/g-ir-scanner-wrapper << EOF
89 # This prevents g-ir-scanner from writing cache data to user's HOME dir
[all …]
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-app/xinit/
H A D0001-Make-manpage-multilib-identical.patch17 @@ -12,7 +12,7 @@ MAN_SUBSTS+= -e 's|__XSERVERNAME__|$(XSERVERNAME)|g' \
18 -e 's|__XCONFIGFILEMAN__|$(XCONFIGFILEMAN)|g' \
19 -e 's|__xinitdir__|$(XINITDIR)|g' \
20 -e 's|__bindir__|$(bindir)|g' \
21 - -e 's|__libdir__|$(libdir)|g' \
22 + -e 's|__libdir__|$(prefix)/lib*|g' \
23 -e 's|__configdir__|$(XINITDIR)|g'

12345678910>>...73