Home
last modified time | relevance | path

Searched refs:prod (Results 1 – 25 of 41) sorted by relevance

12

/openbmc/qemu/chardev/
H A Dchar-ringbuf.c39 size_t prod; member
52 return d->prod - d->cons; in DECLARE_INSTANCE_CHECKER()
65 d->cbuf[d->prod++ & (d->size - 1)] = buf[i]; in ringbuf_chr_write()
66 if (d->prod - d->cons > d->size) { in ringbuf_chr_write()
67 d->cons = d->prod - d->size; in ringbuf_chr_write()
80 for (i = 0; i < len && d->cons != d->prod; i++) { in ringbuf_chr_read()
111 d->prod = 0; in qemu_chr_open_ringbuf()
H A Dchar-mux.c205 while (be && d->prod[m] != d->cons[m] && in mux_chr_accept_input()
218 if ((d->prod[m] - d->cons[m]) < MUX_BUFFER_SIZE) { in mux_chr_can_read()
241 if (d->prod[m] == d->cons[m] && in mux_chr_read()
246 d->buffer[m][d->prod[m]++ & MUX_BUFFER_MASK] = buf[i]; in mux_chr_read()
H A Dchardev-internal.h50 unsigned int prod[MAX_MUX]; member
/openbmc/openbmc/poky/bitbake/lib/ply/
H A Dyacc.py289prod = self.productions # Local reference to production list (to avoid lookup on self.)
380 p = prod[-t]
604prod = self.productions # Local reference to production list (to avoid lookup on self.)
677 p = prod[-t]
876prod = self.productions # Local reference to production list (to avoid lookup on self.)
949 p = prod[-t]
1155 def __init__(self,number,name,prod,precedence=('right',0),func=None,file='',line=0): argument
1157 self.prod = tuple(prod)
1167 self.len = len(self.prod) # Length of the production
1171 for s in self.prod:
[all …]
/openbmc/openbmc/meta-google/dynamic-layers/aspeed-layer/recipes-kernel/linux/
H A Dlinux-aspeed_%.bbappend4 SRC_URI:append:gbmc:prod = " file://gbmc-prod.cfg"
/openbmc/openbmc/meta-google/dynamic-layers/nuvoton-layer/recipes-kernel/linux/
H A Dlinux-nuvoton_%.bbappend5 SRC_URI:append:gbmc:prod = " file://gbmc-prod.cfg"
/openbmc/qemu/hw/9pfs/
H A Dxen-9p-backend.c77 RING_IDX cons, prod, masked_prod, masked_cons; in xen_9pfs_in_sg() local
80 prod = ring->intf->in_prod; in xen_9pfs_in_sg()
82 masked_prod = xen_9pfs_mask(prod, XEN_FLEX_RING_SIZE(ring->ring_order)); in xen_9pfs_in_sg()
103 RING_IDX cons, prod, masked_prod, masked_cons; in xen_9pfs_out_sg() local
106 prod = ring->intf->out_prod; in xen_9pfs_out_sg()
108 masked_prod = xen_9pfs_mask(prod, XEN_FLEX_RING_SIZE(ring->ring_order)); in xen_9pfs_out_sg()
232 RING_IDX prod; in xen_9pfs_push_and_notify() local
242 prod = ring->intf->in_prod; in xen_9pfs_push_and_notify()
244 ring->intf->in_prod = prod + pdu->size; in xen_9pfs_push_and_notify()
269 RING_IDX cons, prod, masked_prod, masked_cons, queued; in xen_9pfs_receive() local
[all …]
/openbmc/qemu/include/hw/xen/interface/io/
H A Dring.h444 static inline RING_IDX name##_queued(RING_IDX prod, \
450 if (prod == cons) \
453 prod = name##_mask(prod, ring_size); \
456 if (prod == cons) \
459 if (prod > cons) \
460 size = prod - cons; \
462 size = ring_size - (cons - prod); \
/openbmc/qemu/hw/char/
H A Dxen_console.c67 XENCONS_RING_IDX cons, prod, size; in OBJECT_DECLARE_SIMPLE_TYPE() local
71 prod = intf->out_prod; in OBJECT_DECLARE_SIMPLE_TYPE()
74 size = prod - cons; in OBJECT_DECLARE_SIMPLE_TYPE()
83 while (cons != prod) in OBJECT_DECLARE_SIMPLE_TYPE()
120 XENCONS_RING_IDX cons, prod, space; in ring_free_bytes() local
123 prod = intf->in_prod; in ring_free_bytes()
126 space = prod - cons; in ring_free_bytes()
143 XENCONS_RING_IDX prod; in xencons_receive() local
151 prod = intf->in_prod; in xencons_receive()
153 intf->in[MASK_XENCONS_IDX(prod++, intf->in)] = in xencons_receive()
[all …]
/openbmc/openbmc/meta-google/recipes-core/dropbear/
H A Ddropbear_%.bbappend3 SYSTEMD_AUTO_ENABLE:${PN}:prod = "disable"
6 SYSTEMD_AUTO_ENABLE:${PN}:bandaid:prod = "enable"
/openbmc/openbmc/meta-google/recipes-google/console/
H A Dglome-login.bb47 # This is an example to override the glome login service in the bbappend for 'prod'
49 #FILES:${PN}:append:prod = " \
54 #do_install:append:prod() {
/openbmc/qemu/hw/display/
H A Dxenfb.c131 uint32_t prod; in xenfb_kbd_event() local
138 prod = page->in_prod; in xenfb_kbd_event()
139 if (prod - page->in_cons == XENKBD_IN_RING_LEN) { in xenfb_kbd_event()
145 XENKBD_IN_RING_REF(page, prod) = *event; in xenfb_kbd_event()
147 page->in_prod = prod + 1; in xenfb_kbd_event()
676 uint32_t cons, prod; in xenfb_queue_full() local
681 prod = page->in_prod; in xenfb_queue_full()
683 return prod - cons == XENFB_IN_RING_LEN; in xenfb_queue_full()
688 uint32_t prod; in xenfb_send_event() local
691 prod = page->in_prod; in xenfb_send_event()
[all …]
H A Dqxl.c407 uint32_t prod; in init_qxl_ram() local
425 prod = ring->prod & SPICE_RING_INDEX_MASK(ring); in init_qxl_ram()
426 assert(prod < ARRAY_SIZE(ring->items)); in init_qxl_ram()
427 ring->items[prod].el = 0; in init_qxl_ram()
706 uint32_t prod; in qxl_push_free_res() local
711 if (ring->prod - ring->cons + 1 == ring->num_items) { in qxl_push_free_res()
728 trace_qxl_ring_res_push_rest(d->id, ring->prod - ring->cons, in qxl_push_free_res()
729 ring->num_items, ring->prod, ring->cons); in qxl_push_free_res()
735 prod = ring->prod & SPICE_RING_INDEX_MASK(ring); in qxl_push_free_res()
736 if (prod >= ARRAY_SIZE(ring->items)) { in qxl_push_free_res()
[all …]
/openbmc/openbmc/meta-google/recipes-phosphor/initrdscripts/
H A Dobmc-phosphor-initfs.bbappend17 do_install:append:gbmc:prod() {
27 FILES:${PN}:append:gbmc:prod = " /init-options-base"
/openbmc/u-boot/doc/
H A DREADME.davinci125 http://focus.ti.com/docs/prod/folders/print/tms320dm355.html
129 http://focus.ti.com/docs/prod/folders/print/tms320dm365.html?247SEM=
137 http://focus.ti.com/docs/prod/folders/print/tms320dm6467.html
141 http://focus.ti.com/docs/prod/folders/print/tms320dm6446.html
149 http://focus.ti.com/docs/prod/folders/print/omap-l138.html
/openbmc/qemu/hw/usb/
H A Ddev-audio.c581 uint64_t prod; member
591 buf->prod = 0; in streambuf_init()
603 int64_t free = buf->size - (buf->prod - buf->cons); in streambuf_put()
613 assert(buf->prod % USBAUDIO_PACKET_SIZE(channels) == 0); in streambuf_put()
614 usb_packet_copy(p, buf->data + (buf->prod % buf->size), in streambuf_put()
616 buf->prod += USBAUDIO_PACKET_SIZE(channels); in streambuf_put()
622 int64_t used = buf->prod - buf->cons; in streambuf_get()
630 *len = MIN(buf->prod - buf->cons, in streambuf_get()
/openbmc/qemu/target/ppc/
H A Dint_helper.c913 int32_t prod = a->s16[i] * b->s16[i]; in helper_VMHADDSHS() local
914 int32_t t = (int32_t)c->s16[i] + (prod >> 15); in helper_VMHADDSHS()
931 int32_t prod = a->s16[i] * b->s16[i] + 0x00004000; in helper_VMHRADDSHS() local
932 int32_t t = (int32_t)c->s16[i] + (prod >> 15); in helper_VMHRADDSHS()
947 int32_t prod = a->s16[i] * b->s16[i]; in helper_VMLADDUHM() local
948 r->s16[i] = (int16_t) (prod + c->s16[i]); in helper_VMLADDUHM()
976 int32_t prod[16]; in VMRG() local
980 prod[i] = (int32_t)a->s8[i] * b->u8[i]; in VMRG()
984 r->s32[i] = c->s32[i] + prod[4 * i] + prod[4 * i + 1] + in VMRG()
985 prod[4 * i + 2] + prod[4 * i + 3]; in VMRG()
[all …]
/openbmc/openbmc/meta-google/recipes-phosphor/flash/google-key/
H A Dverify-bmc-image.sh60 import_key prod
/openbmc/qemu/hw/arm/
H A Dsmmuv3-internal.h228 #define Q_PROD(q) ((q)->prod & INDEX_MASK(q))
234 #define Q_PROD_WRAP(q) (((q)->prod & WRAP_MASK(q)) >> (q)->log2size)
238 return ((q->cons ^ q->prod) & WRAP_INDEX_MASK(q)) == WRAP_MASK(q); in smmuv3_q_full()
243 return (q->cons & WRAP_INDEX_MASK(q)) == (q->prod & WRAP_INDEX_MASK(q)); in smmuv3_q_empty()
248 q->prod = (q->prod + 1) & WRAP_INDEX_MASK(q); in queue_prod_incr()
H A Dtrace-events38 smmuv3_cmdq_consume(uint32_t prod, uint32_t cons, uint8_t prod_wrap, uint8_t cons_wrap) "prod=%d co…
40 smmuv3_cmdq_consume_out(uint32_t prod, uint32_t cons, uint8_t prod_wrap, uint8_t cons_wrap) "prod:%…
/openbmc/qemu/include/hw/ppc/
H A Dspapr_cpu_core.h49 bool prod; /* not migrated, only used to improve dispatch latencies */ member
/openbmc/openbmc/meta-google/conf/distro/
H A Dgbmc.conf27 DISTRO_FEATURES:append:prod = " disable-u-boot-shell"
/openbmc/openbmc/meta-google/recipes-phosphor/flash/
H A Dgoogle-key.bb20 install -m 0644 ${UNPACKDIR}/platforms_gbmc_secure.gpg ${D}${datadir}/google-key/prod.key
/openbmc/u-boot/cmd/
H A Dusb.c160 if (strlen(dev->mf) || strlen(dev->prod) || in usb_display_desc()
162 printf(" - %s %s %s\n", dev->mf, dev->prod, in usb_display_desc()
410 if (strlen(dev->mf) || strlen(dev->prod) || strlen(dev->serial))
411 printf(" %s %s %s %s\n", pre, dev->mf, dev->prod, dev->serial);
/openbmc/qemu/include/hw/arm/
H A Dsmmuv3.h29 uint32_t prod; member

12