/openbmc/linux/sound/firewire/tascam/ |
H A D | tascam-transaction.c | 63 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 D | iters_looping.c | 44 /* 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 D | rocker_desc.c | 35 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 D | trace_pipe.tc | 9 : "trace interface never consume the ring buffer" 13 : "trace interface never consume the ring buffer"
|
/openbmc/linux/tools/testing/selftests/mm/ |
H A D | hugetlb-madvise.c | 233 /* 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 D | probes.h | 43 * 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 D | iio_core_trigger.h | 11 * @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 D | ptr_ring.h | 39 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 D | qed_chain.h | 59 /* 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 D | spi-tegra210-quad.c | 417 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 D | spi-tegra114.c | 403 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 D | qobject-input-visitor.c | 121 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 D | opts-visitor.c | 30 * 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 D | string-output-visitor.c | 26 * 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 D | common.h | 96 * 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 D | nitrox_csr.h | 1000 * 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 D | acpi-info.rst | 45 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 D | uverbs_types.h | 62 /* This does not consume the kref on uobj */ 69 /* This does not consume the kref on uobj */
|
/openbmc/qemu/net/ |
H A D | vmnet-common.m | 157 /* 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 D | gss_rpc_xdr.c | 288 /* 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 D | hi3620-clock.txt | 18 to specify the clock which they consume.
|
H A D | marvell,pxa168.txt | 19 to specify the clock which they consume.
|
H A D | marvell,pxa1928.txt | 19 phandle and this identifier to specify the clock which they consume.
|
H A D | marvell,pxa910.txt | 19 to specify the clock which they consume.
|
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/libcppkafka/ |
H A D | libcppkafka_git.bb | 2 DESCRIPTION = "cppkafka allows C++ applications to consume and produce messages using the Apache Ka…
|