Home
last modified time | relevance | path

Searched full:consume (Results 1 – 25 of 639) sorted by relevance

12345678910>>...26

/openbmc/linux/sound/firewire/tascam/
H A Dtascam-transaction.c63 int i, len, consume; in fill_message() local
71 consume = snd_rawmidi_transmit_peek(substream, msg, 3); in fill_message()
72 if (consume == 0) in fill_message()
78 for (i = 0; i < consume; ++i) { in fill_message()
87 consume = i + 1; in fill_message()
90 } else if (consume == 3) { in fill_message()
97 len = consume; in fill_message()
111 /* Calculate consume bytes. */ in fill_message()
119 if (consume < len - 1) in fill_message()
121 consume = len - 1; in fill_message()
[all …]
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Diters_looping.c44 /* consume first item */ in consume_first_item_only()
75 /* consume first element */ in missing_null_check_fail()
108 /* consume first element */ in wrong_sized_read_fail()
144 /* consume next item */ in __flag()
/openbmc/qemu/hw/net/rocker/
H A Drocker_desc.c35 desc_ring_consume *consume; member
239 if (ring->consume) { in ring_pump()
242 err = ring->consume(ring->r, info); in ring_pump()
323 void desc_ring_set_consume(DescRing *ring, desc_ring_consume *consume, in desc_ring_set_consume() argument
326 ring->consume = consume; in desc_ring_set_consume()
/openbmc/linux/tools/testing/selftests/ftrace/test.d/00basic/
H A Dtrace_pipe.tc9 : "trace interface never consume the ring buffer"
13 : "trace interface never consume the ring buffer"
/openbmc/linux/tools/testing/selftests/mm/
H A Dhugetlb-madvise.c233 /* read should not consume any pages */ in main()
292 /* write should not consume any pages */ in main()
332 /* shared write should not consume any additional pages */ in main()
344 /* private read should not consume any pages */ in main()
348 /* private write should consume additional pages */ in main()
366 /* private write should consume additional pages again */ in main()
/openbmc/linux/arch/arm/include/asm/
H A Dprobes.h43 * We assume one instruction can consume at most 64 bytes stack, which is
44 * 'push {r0-r15}'. Instructions consume more or unknown stack space like
/openbmc/linux/drivers/iio/
H A Diio_core_trigger.h11 * @indio_dev: iio_dev associated with the device that will consume the trigger
33 * @indio_dev: iio_dev associated with the device that will consume the trigger
/openbmc/linux/include/linux/
H A Dptr_ring.h39 int batch; /* number of entries to consume in a batch */
121 * consume in interrupt or BH context, you must disable interrupts/BH when
188 * re-test __ptr_ring_empty and/or consume the ring enteries
251 * Doing it naively at each consume would be as simple as: in __ptr_ring_discard_one()
508 * In particular if you consume ring in interrupt or BH context, you must
587 * In particular if you consume ring in interrupt or BH context, you must
616 * In particular if you consume ring in interrupt or BH context, you must
/openbmc/linux/include/linux/qed/
H A Dqed_chain.h59 /* Cyclic index of next element to produce/consume */
65 /* Cyclic index of next element to produce/consume */
77 * as produce / consume.
80 /* Point to next element to produce/consume */
134 * for fastpath operation [consume/produce] but only for the SINGLE
495 * call to qed_chain_produce/consume. Instead, the indices in qed_chain_reset()
/openbmc/linux/drivers/spi/
H A Dspi-tegra210-quad.c417 unsigned int i, count, consume, write_bytes; in tegra_qspi_copy_client_txbuf_to_qspi_txbuf() local
423 consume = tqspi->curr_dma_words * tqspi->bytes_per_word; in tegra_qspi_copy_client_txbuf_to_qspi_txbuf()
424 if (consume > t->len - tqspi->cur_pos) in tegra_qspi_copy_client_txbuf_to_qspi_txbuf()
425 consume = t->len - tqspi->cur_pos; in tegra_qspi_copy_client_txbuf_to_qspi_txbuf()
426 write_bytes = consume; in tegra_qspi_copy_client_txbuf_to_qspi_txbuf()
430 for (i = 0; consume && (i < tqspi->bytes_per_word); i++, consume--) in tegra_qspi_copy_client_txbuf_to_qspi_txbuf()
453 unsigned int i, count, consume, read_bytes; in tegra_qspi_copy_qspi_rxbuf_to_client_rxbuf() local
460 consume = tqspi->curr_dma_words * tqspi->bytes_per_word; in tegra_qspi_copy_qspi_rxbuf_to_client_rxbuf()
461 if (consume > t->len - tqspi->cur_pos) in tegra_qspi_copy_qspi_rxbuf_to_client_rxbuf()
462 consume = t->len - tqspi->cur_pos; in tegra_qspi_copy_qspi_rxbuf_to_client_rxbuf()
[all …]
H A Dspi-tegra114.c403 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word; in tegra_spi_copy_client_txbuf_to_spi_txbuf() local
406 if (consume > t->len - tspi->cur_pos) in tegra_spi_copy_client_txbuf_to_spi_txbuf()
407 consume = t->len - tspi->cur_pos; in tegra_spi_copy_client_txbuf_to_spi_txbuf()
408 write_bytes = consume; in tegra_spi_copy_client_txbuf_to_spi_txbuf()
412 for (i = 0; consume && (i < tspi->bytes_per_word); in tegra_spi_copy_client_txbuf_to_spi_txbuf()
413 i++, consume--) in tegra_spi_copy_client_txbuf_to_spi_txbuf()
443 unsigned consume = tspi->curr_dma_words * tspi->bytes_per_word; in tegra_spi_copy_spi_rxbuf_to_client_rxbuf() local
446 if (consume > t->len - tspi->cur_pos) in tegra_spi_copy_spi_rxbuf_to_client_rxbuf()
447 consume = t->len - tspi->cur_pos; in tegra_spi_copy_spi_rxbuf_to_client_rxbuf()
448 read_bytes = consume; in tegra_spi_copy_spi_rxbuf_to_client_rxbuf()
[all …]
/openbmc/qemu/qapi/
H A Dqobject-input-visitor.c121 bool consume) in qobject_input_try_get_object() argument
141 if (tos->h && consume && ret) { in qobject_input_try_get_object()
150 if (consume) { in qobject_input_try_get_object()
156 if (consume) { in qobject_input_try_get_object()
166 bool consume, Error **errp) in qobject_input_get_object() argument
168 QObject *obj = qobject_input_try_get_object(qiv, name, consume); in qobject_input_get_object()
H A Dopts-visitor.c30 * Generating the next list link will consume the most
43 * Generating the next list link will consume the most
46 * repeated option. This may consume QemuOpt itself
361 /* Note that we consume a string even if this is called as part of in opts_type_str()
H A Dstring-output-visitor.c26 * Generating the next list link will consume the most
38 * Generating the next list link will consume the most
41 * repeated option. This may consume QemuOpt itself
/openbmc/linux/arch/arm64/include/asm/stacktrace/
H A Dcommon.h96 * updating stack boundaries so that future unwind steps cannot consume this
140 * Future unwind steps can only consume stack above this frame record. in unwind_consume_stack()
/openbmc/linux/drivers/crypto/cavium/nitrox/
H A Dnitrox_csr.h1000 * that ILK packets may consume. When the threshold is
1003 * that NPS packets may consume. When the threshold is
1006 * that the sum of ILK and NPS packets may consume.
1008 * flows may consume before ILK_XOFF is sent to the BMI_X2P_ARB.
1010 * flows may consume before NPS XOFF is sent to the BMI_X2p_ARB.
1012 * packet flows may consume before both NPS_XOFF and ILK_XOFF
1108 * ILK packet flows may consume before ILK XOFF is
1111 * NPS_SLC packet flow may consume before NPS_SLC XOFF is
1114 * NPS_UNS packet flow may consume before NPS_UNS XOFF is
1117 * NPS_SLC packet flows may consume before NPS_UNS XOFF, NSP_SLC and
/openbmc/linux/Documentation/PCI/
H A Dacpi-info.rst45 describe all the address space they consume. This includes all the windows
127 Play system determines what resources the device should consume and
130 In ACPI, devices can consume resources (for example, legacy keyboards),
/openbmc/linux/include/rdma/
H A Duverbs_types.h62 /* This does not consume the kref on uobj */
69 /* This does not consume the kref on uobj */
/openbmc/qemu/net/
H A Dvmnet-common.m157 /* QEMU is not ready to consume more packets -
177 * respectfully wait until it is ready to consume more packets,
211 * ready to consume more packets.
/openbmc/linux/net/sunrpc/auth_gss/
H A Dgss_rpc_xdr.c288 /* consume uninteresting buffer */ in gssx_dec_option_array()
342 /* we assume we have no options for now, so simply consume them */ in gssx_dec_status()
520 /* we assume we have no attributes for now, so simply consume them */ in gssx_dec_name()
526 /* we assume we have no options for now, so simply consume them */ in gssx_dec_name()
693 /* we assume we have no options for now, so simply consume them */ in gssx_dec_ctx()
/openbmc/linux/Documentation/devicetree/bindings/clock/
H A Dhi3620-clock.txt18 to specify the clock which they consume.
H A Dmarvell,pxa168.txt19 to specify the clock which they consume.
H A Dmarvell,pxa1928.txt19 phandle and this identifier to specify the clock which they consume.
H A Dmarvell,pxa910.txt19 to specify the clock which they consume.
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libcppkafka/
H A Dlibcppkafka_git.bb2 DESCRIPTION = "cppkafka allows C++ applications to consume and produce messages using the Apache Ka…

12345678910>>...26