/linux-4.4.14/drivers/usb/host/whci/ |
D | int.c | 71 int processed = 0; in process_dn_buf() local 79 processed++; in process_dn_buf() 82 return processed; in process_dn_buf() 88 int processed; in whc_dn_work() local 91 processed = process_dn_buf(whc); in whc_dn_work() 92 } while (processed); in whc_dn_work()
|
/linux-4.4.14/drivers/crypto/nx/ |
D | nx-aes-ccm.c | 283 unsigned int processed = 0, to_process; in generate_pat() local 285 processed += iauth_len; in generate_pat() 294 to_process = min_t(u32, assoclen - processed, in generate_pat() 299 req->src, processed, in generate_pat() 302 if ((to_process + processed) < assoclen) { in generate_pat() 330 processed += to_process; in generate_pat() 331 } while (processed < assoclen); in generate_pat() 351 unsigned int processed = 0, to_process; in ccm_nx_decrypt() local 373 to_process = nbytes - processed; in ccm_nx_decrypt() 375 if ((to_process + processed) < nbytes) in ccm_nx_decrypt() [all …]
|
D | nx-aes-gcm.c | 120 unsigned int processed = 0, to_process; in nx_gca() local 143 to_process = min_t(u64, nbytes - processed, in nx_gca() 149 req->src, processed, &to_process); in nx_gca() 151 if ((to_process + processed) < nbytes) in nx_gca() 172 processed += to_process; in nx_gca() 173 } while (processed < nbytes); in nx_gca() 189 unsigned int processed = 0, to_process; in gmac() local 211 to_process = min_t(u64, nbytes - processed, in gmac() 217 req->src, processed, &to_process); in gmac() 219 if ((to_process + processed) < nbytes) in gmac() [all …]
|
D | nx-aes-ecb.c | 74 unsigned int processed = 0, to_process; in ecb_aes_nx_crypt() local 85 to_process = nbytes - processed; in ecb_aes_nx_crypt() 88 processed, NULL); in ecb_aes_nx_crypt() 106 processed += to_process; in ecb_aes_nx_crypt() 107 } while (processed < nbytes); in ecb_aes_nx_crypt()
|
D | nx-aes-cbc.c | 74 unsigned int processed = 0, to_process; in cbc_aes_nx_crypt() local 85 to_process = nbytes - processed; in cbc_aes_nx_crypt() 88 processed, csbcpb->cpb.aes_cbc.iv); in cbc_aes_nx_crypt() 107 processed += to_process; in cbc_aes_nx_crypt() 108 } while (processed < nbytes); in cbc_aes_nx_crypt()
|
D | nx-aes-ctr.c | 92 unsigned int processed = 0, to_process; in ctr_aes_nx_crypt() local 98 to_process = nbytes - processed; in ctr_aes_nx_crypt() 101 processed, csbcpb->cpb.aes_ctr.iv); in ctr_aes_nx_crypt() 121 processed += to_process; in ctr_aes_nx_crypt() 122 } while (processed < nbytes); in ctr_aes_nx_crypt()
|
/linux-4.4.14/drivers/iio/ |
D | inkern.c | 510 int raw, int *processed, unsigned int scale) in iio_convert_raw_to_processed_unlocked() argument 527 *processed = raw64 * scale_val; in iio_convert_raw_to_processed_unlocked() 531 *processed = -raw64 * scale_val; in iio_convert_raw_to_processed_unlocked() 533 *processed = raw64 * scale_val; in iio_convert_raw_to_processed_unlocked() 534 *processed += div_s64(raw64 * (s64)scale_val2 * scale, in iio_convert_raw_to_processed_unlocked() 539 *processed = -raw64 * scale_val; in iio_convert_raw_to_processed_unlocked() 541 *processed = raw64 * scale_val; in iio_convert_raw_to_processed_unlocked() 542 *processed += div_s64(raw64 * (s64)scale_val2 * scale, in iio_convert_raw_to_processed_unlocked() 546 *processed = div_s64(raw64 * (s64)scale_val * scale, in iio_convert_raw_to_processed_unlocked() 550 *processed = (raw64 * (s64)scale_val * scale) >> scale_val2; in iio_convert_raw_to_processed_unlocked() [all …]
|
/linux-4.4.14/drivers/staging/panel/ |
D | panel.c | 1079 int processed = 0; in handle_lcd_special_code() local 1088 processed = 1; in handle_lcd_special_code() 1092 processed = 1; in handle_lcd_special_code() 1096 processed = 1; in handle_lcd_special_code() 1100 processed = 1; in handle_lcd_special_code() 1104 processed = 1; in handle_lcd_special_code() 1108 processed = 1; in handle_lcd_special_code() 1112 processed = 1; in handle_lcd_special_code() 1116 processed = 1; in handle_lcd_special_code() 1126 processed = 1; in handle_lcd_special_code() [all …]
|
/linux-4.4.14/sound/sh/ |
D | sh_dac_audio.c | 63 int processed; /* bytes proccesed, to compare with period_size */ member 84 chip->processed = 0; in dac_audio_reset() 123 chip->processed = 0; in snd_sh_dac_pcm_open() 176 chip->processed = 0; in snd_sh_dac_pcm_trigger() 324 chip->processed++; in sh_dac_audio_timer() 325 if (chip->processed >= b_ps) { in sh_dac_audio_timer() 326 chip->processed -= b_ps; in sh_dac_audio_timer()
|
/linux-4.4.14/drivers/i2c/busses/ |
D | i2c-rk3x.c | 122 unsigned int processed; /* sent/received bytes */ member 172 i2c->processed = 0; in rk3x_i2c_stop() 207 unsigned int len = i2c->msg->len - i2c->processed; in rk3x_i2c_prepare_read() 224 if (i2c->processed != 0) { in rk3x_i2c_prepare_read() 246 if ((i2c->processed == i2c->msg->len) && (cnt != 0)) in rk3x_i2c_fill_transmit_buf() 249 if (i2c->processed == 0 && cnt == 0) in rk3x_i2c_fill_transmit_buf() 252 byte = i2c->msg->buf[i2c->processed++]; in rk3x_i2c_fill_transmit_buf() 260 if (i2c->processed == i2c->msg->len) in rk3x_i2c_fill_transmit_buf() 311 if (i2c->processed == i2c->msg->len) in rk3x_i2c_handle_write() 320 unsigned int len = i2c->msg->len - i2c->processed; in rk3x_i2c_handle_read() [all …]
|
/linux-4.4.14/drivers/net/ethernet/amd/xgbe/ |
D | xgbe-drv.c | 1812 int processed = 0; in xgbe_tx_poll() local 1829 while ((processed < XGBE_TX_DESC_MAX_PROC) && in xgbe_tx_poll() 1853 processed++; in xgbe_tx_poll() 1857 if (!processed) in xgbe_tx_poll() 1868 DBGPR("<--xgbe_tx_poll: processed=%d\n", processed); in xgbe_tx_poll() 1870 return processed; in xgbe_tx_poll() 2053 int processed = 0; in xgbe_one_poll() local 2061 processed = xgbe_rx_poll(channel, budget); in xgbe_one_poll() 2064 if (processed < budget) { in xgbe_one_poll() 2072 DBGPR("<--xgbe_one_poll: received = %d\n", processed); in xgbe_one_poll() [all …]
|
/linux-4.4.14/net/vmw_vsock/ |
D | vmci_transport_notify.c | 613 bool processed = false; in vmci_transport_notify_pkt_handle_pkt() local 618 processed = true; in vmci_transport_notify_pkt_handle_pkt() 622 processed = true; in vmci_transport_notify_pkt_handle_pkt() 627 processed = true; in vmci_transport_notify_pkt_handle_pkt() 633 processed = true; in vmci_transport_notify_pkt_handle_pkt() 638 *pkt_processed = processed; in vmci_transport_notify_pkt_handle_pkt()
|
D | vmci_transport_notify_qstate.c | 357 bool processed = false; in vmci_transport_notify_pkt_handle_pkt() local 362 processed = true; in vmci_transport_notify_pkt_handle_pkt() 366 processed = true; in vmci_transport_notify_pkt_handle_pkt() 371 *pkt_processed = processed; in vmci_transport_notify_pkt_handle_pkt()
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | Kconfig | 35 is processed as quickly as possible, the ECN is toggled off. 36 After the prescanning step, the receive queue is processed as
|
/linux-4.4.14/drivers/bluetooth/ |
D | hci_h5.c | 523 int processed; in h5_recv() local 538 processed = h5->rx_func(hu, *ptr); in h5_recv() 539 if (processed < 0) in h5_recv() 540 return processed; in h5_recv() 542 ptr += processed; in h5_recv() 543 count -= processed; in h5_recv()
|
/linux-4.4.14/tools/perf/util/ |
D | python-ext-sources | 5 # processed by Makefile and util/setup.py accordingly.
|
/linux-4.4.14/include/linux/iio/ |
D | consumer.h | 207 int *processed, unsigned int scale);
|
/linux-4.4.14/tools/perf/Documentation/ |
D | perf-script-perl.txt | 43 next event is processed. 54 Traces meant to be processed using a script should be recorded with 132 *trace_begin*, if defined, is called before any event is processed and 142 processed and gives scripts a chance to do end-of-script tasks, such
|
D | perf-script-python.txt | 75 that, but first we need to record the data that will be processed by 269 displayed after all the events in the trace have been processed, by 441 next event is processed. 452 Traces meant to be processed using a script should be recorded with 531 *trace_begin*, if defined, is called before any event is processed and 540 processed and gives scripts a chance to do end-of-script tasks, such
|
D | perf-script.txt | 133 The arguments are processed in the order received. A later usage can
|
D | intel-pt.txt | 49 more data than can possibly be processed.
|
/linux-4.4.14/drivers/dma/ |
D | img-mdc-dma.c | 600 u32 val1, val2, done, processed, residue; in mdc_tx_status() local 620 processed = (val1 >> MDC_CMDS_PROCESSED_CMDS_PROCESSED_SHIFT) & in mdc_tx_status() 622 cmds = (done - processed) % in mdc_tx_status() 706 u32 val, processed, done1, done2; in mdc_chan_irq() local 712 processed = (val >> MDC_CMDS_PROCESSED_CMDS_PROCESSED_SHIFT) & in mdc_chan_irq() 743 for (i = processed; i != done1; in mdc_chan_irq()
|
D | edma.c | 172 int processed; member 763 left = edesc->pset_nr - edesc->processed; in edma_execute() 769 j = i + edesc->processed; in edma_execute() 798 edesc->processed += nslots; in edma_execute() 805 if (edesc->processed == edesc->pset_nr) { in edma_execute() 825 } else if (edesc->processed <= MAX_NR_SG) { in edma_execute() 831 echan->ch_num, edesc->processed); in edma_execute() 1375 } else if (edesc->processed == edesc->pset_nr) { in edma_completion_handler() 1392 edesc->processed_stat = edesc->processed; in edma_completion_handler() 1715 for (i = edesc->processed_stat; i < edesc->processed; i++, pset++) { in edma_residue()
|
/linux-4.4.14/include/net/ |
D | regulatory.h | 84 bool processed; member
|
/linux-4.4.14/sound/usb/line6/ |
D | Kconfig | 20 * Signal routing (record clean/processed guitar signal,
|
/linux-4.4.14/Documentation/block/ |
D | stat.txt | 23 read I/Os requests number of read I/Os processed 27 write I/Os requests number of write I/Os processed
|
D | biodoc.txt | 561 to the numbers of sectors in the current segment being processed which could
|
/linux-4.4.14/Documentation/networking/ |
D | tc-actions-env-rules.txt | 7 For example if your action queues a packet to be processed later,
|
D | netlink_mmap.txt | 48 processed in order until no more messages are available, as indicated by 177 be processed by the kernel. After completing processing 182 RX ring only: a message is ready to be processed but could not be 192 processed some messages following it in the ring. The
|
D | scaling.txt | 28 queue, which in turn can be processed by separate CPUs. This mechanism is 135 processing on the remote CPU, and any queued packets are then processed 148 (the default), in which case packets are processed on the interrupting 239 flows to the CPUs where those flows are being processed. The flow hash 241 The CPU recorded in each entry is the one which last processed the flow. 291 packets could arrive later than those about to be processed on the new 372 these queues are processed on a CPU within this set. This choice
|
D | nf_conntrack-sysctl.txt | 51 will take longer for a backlog to be processed.
|
D | spider_net.txt | 29 and is waiting to be emptied and processed by the OS. A "not-in-use" 195 that an interrupt is generated when the descr is processed. This
|
D | 6pack.txt | 20 set and so on. This control data is processed at a higher priority than
|
D | README.ipw2100 | 215 packet processed to sleep is shorter and the sleep period is longer.
|
D | e1000e.txt | 62 but will increase latency as packets are not processed as quickly.
|
D | rds.txt | 204 the message is DMAed and processed. This is only a potential issue
|
D | openvswitch.txt | 105 by reduce the number of new flows need to be processed by the user space program.
|
D | ixgbe.txt | 155 packets processed by the Nth queue.
|
D | e1000.txt | 94 but will increase latency as packets are not processed as quickly.
|
D | rxrpc.txt | 151 has been received and processed; a soft-ACK indicates that the data has
|
D | can.txt | 478 The CAN filters are processed in per-device filter lists at CAN frame
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
D | msgbuf.c | 1255 u16 processed; in brcmf_msgbuf_process_rx() local 1262 processed = 0; in brcmf_msgbuf_process_rx() 1267 processed++; in brcmf_msgbuf_process_rx() 1268 if (processed == BRCMF_MSGBUF_UPDATE_RX_PTR_THRS) { in brcmf_msgbuf_process_rx() 1269 brcmf_commonring_read_complete(commonring, processed); in brcmf_msgbuf_process_rx() 1270 processed = 0; in brcmf_msgbuf_process_rx() 1274 if (processed) in brcmf_msgbuf_process_rx() 1275 brcmf_commonring_read_complete(commonring, processed); in brcmf_msgbuf_process_rx()
|
/linux-4.4.14/include/linux/ |
D | padata.h | 135 unsigned int processed; member
|
D | netdevice.h | 2542 unsigned int processed; member
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb/ |
D | sge.c | 181 unsigned int processed; /* total # of descs HW has processed */ member 689 q->processed = q->cleaned = 0; in alloc_tx_resources() 1291 unsigned int reclaim = q->processed - q->cleaned; in reclaim_completed_tx() 1295 q->processed, q->cleaned); in reclaim_completed_tx() 1399 unsigned int r = q->processed - q->cleaned; in enough_free_Tx_descs() 1438 cmdq->processed += pr0; in update_tx_info() 1446 if (cmdq->cleaned + cmdq->in_use != cmdq->processed && in update_tx_info() 1492 sge->cmdQ[1].processed += cmdq_processed[1]; in process_responses() 1536 sge->cmdQ[1].processed += cmdq_processed[1]; in process_responses() 1592 sge->cmdQ[1].processed += cmdq_processed[1]; in process_pure_responses()
|
/linux-4.4.14/Documentation/ |
D | Intel-IOMMU.txt | 84 When DMAR is being processed and initialized by ACPI, prints DMAR locations 85 and any RMRR's processed.
|
D | dynamic-debug-howto.txt | 239 These dyndbg params are processed just after the ddebug tables are 240 processed, as part of the arch_initcall. Thus you can enable debug 251 If foo module is not built-in, foo.dyndbg will still be processed at 253 loaded later. dyndbg_query= and bare dyndbg= are only processed at
|
D | md-cluster.txt | 96 [ wait until all receiver has *processed* the MESSAGE ] 110 4. triggered by grant of EX on ACK (indicating all receivers have processed
|
D | efi-stub.txt | 83 and is processed in the same manner as the "initrd=" option that is
|
D | volatile-considered-harmful.txt | 92 indicate which descriptors have been processed, is an example of this
|
D | kernel-doc-nano-HOWTO.txt | 236 All descriptive text is further processed, scanning for the following special
|
D | oops-tracing.txt | 194 processed by klogd:
|
D | cpu-hotplug.txt | 94 of them may be online. When physical hotplug is processed by the relevant
|
D | md.txt | 562 sectors in total that could need to be processed. The two
|
/linux-4.4.14/drivers/net/ethernet/apm/xgene/ |
D | xgene_enet_main.c | 543 int ret, desc_count, count = 0, processed = 0; in xgene_enet_process_ring() local 581 processed++; in xgene_enet_process_ring() 597 return processed; in xgene_enet_process_ring() 603 int processed; in xgene_enet_napi() local 606 processed = xgene_enet_process_ring(ring, budget); in xgene_enet_napi() 608 if (processed != budget) { in xgene_enet_napi() 613 return processed; in xgene_enet_napi()
|
/linux-4.4.14/drivers/net/ethernet/cirrus/ |
D | ep93xx_eth.c | 231 static int ep93xx_rx(struct net_device *dev, int processed, int budget) in ep93xx_rx() argument 235 while (processed < budget) { in ep93xx_rx() 307 processed++; in ep93xx_rx() 310 return processed; in ep93xx_rx()
|
/linux-4.4.14/drivers/virtio/ |
D | virtio_mmio.c | 623 int processed, consumed = 0; in vm_cmdline_set() local 630 processed = sscanf(str, "@%lli:%u%n:%d%n", in vm_cmdline_set() 639 if (processed < 2 || str[consumed]) in vm_cmdline_set()
|
/linux-4.4.14/net/wireless/ |
D | reg.c | 98 .processed = true, 624 if (!lr || lr->processed) in reg_is_valid_request() 1885 lr->processed = true; in reg_set_request_processed() 1910 core_request->processed = false; in reg_process_hint_core() 1972 user_request->processed = false; in reg_process_hint_user() 2043 driver_request->processed = false; in reg_process_hint_driver() 2142 country_ie_request->processed = false; in reg_process_hint_country_ie() 2236 if (lr && !lr->processed) { in reg_process_pending_hints() 2265 if (!list_empty(®_requests_list) && lr && lr->processed) in reg_process_pending_hints()
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-class-pktcdvd | 53 device has processed enough bio's
|
D | sysfs-class-net-queues | 17 processed by this particular network device receive queue.
|
D | sysfs-class-rc | 58 scancodes to be processed.
|
D | sysfs-driver-hid-roccat-kone | 8 processed to receive the real dpi value.
|
D | sysfs-devices-power | 133 the device is being processed (1). This attribute is read-only.
|
D | sysfs-power | 167 some wakeup events are being processed at the time the file is
|
D | sysfs-bus-iio | 710 value is in raw device units or in processed units (as _raw 841 value is in raw device units or in processed units (as _raw 1306 present, output should be considered as processed with the 1482 Raw (unscaled no offset etc.) resistance reading that can be processed
|
/linux-4.4.14/drivers/gpu/drm/sti/ |
D | NOTES | 9 - The graphics planes are internally processed by the Generic Display
|
/linux-4.4.14/Documentation/vm/ |
D | soft-dirty.txt | 26 soft-dirty bits clear, the #PF-s that occur after that are processed fast.
|
D | slub.txt | 327 generated pre-processed *-totals
|
/linux-4.4.14/Documentation/arm/Samsung/ |
D | Overview.txt | 47 last in the line of include directories that are processed for the build
|
/linux-4.4.14/Documentation/filesystems/ |
D | fuse.txt | 136 userspace or being processed by the filesystem daemon. If there is 176 1) The INTERRUPT request is processed before the original request is 177 processed 179 2) The INTERRUPT request is processed after the original request has
|
D | quota.txt | 29 and processed accordingly.
|
D | coda.txt | 165 kernel support for Coda may maintain a minicache of recently processed 231 when no messages are waiting or being processed. 347 the request should not be processed, P can send Venus a signal message
|
D | proc.txt | 682 by some IO device before it could be fully processed by the APIC. Hence
|
/linux-4.4.14/arch/alpha/lib/ |
D | memchr.S | 129 subq $18, $0, $4 #-e0 : $4 <- nr quads to be processed
|
D | ev6-memchr.S | 146 subq $18, $0, $4 # E : $4 <- nr quads to be processed
|
/linux-4.4.14/Documentation/usb/ |
D | anchors.txt | 49 are processed in the reverse temporal order they were submitted.
|
D | usbmon.txt | 255 buffer (and not to the number of events processed since the last reset).
|
/linux-4.4.14/arch/mips/sibyte/ |
D | Kconfig | 159 must be processed off-line.
|
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/ |
D | lantiq,pinctrl-falcon.txt | 19 should be enumerated and processed purely based on their content.
|
D | qcom,apq8064-pinctrl.txt | 28 and processed purely based on their content.
|
D | qcom,msm8660-pinctrl.txt | 28 and processed purely based on their content.
|
D | qcom,ipq8064-pinctrl.txt | 28 and processed purely based on their content.
|
D | pinctrl-palmas.txt | 23 and processed purely based on their content.
|
D | xlnx,zynq-pinctrl.txt | 22 and processed purely based on their content.
|
D | qcom,msm8974-pinctrl.txt | 28 and processed purely based on their content.
|
D | lantiq,pinctrl-xway.txt | 19 should be enumerated and processed purely based on their content.
|
D | ste,nomadik.txt | 21 and processed purely based on their content. The subnodes use the generic
|
D | img,tz1090-pdc-pinctrl.txt | 19 and processed purely based on their content.
|
D | pinctrl_spear.txt | 40 and processed purely based on their content.
|
D | qcom,msm8960-pinctrl.txt | 60 and processed purely based on their content.
|
D | qcom,apq8084-pinctrl.txt | 60 and processed purely based on their content.
|
D | qcom,msm8916-pinctrl.txt | 60 and processed purely based on their content.
|
D | qcom,pmic-mpp.txt | 59 and processed purely based on their content.
|
D | qcom,pmic-gpio.txt | 59 and processed purely based on their content.
|
D | renesas,pfc-pinctrl.txt | 58 are parsed through phandles and processed purely based on their content.
|
D | nvidia,tegra20-pinmux.txt | 19 and processed purely based on their content.
|
D | nvidia,tegra210-pinmux.txt | 20 and processed purely based on their content.
|
D | img,tz1090-pinctrl.txt | 19 and processed purely based on their content.
|
/linux-4.4.14/Documentation/video4linux/ |
D | cpia2_overview.txt | 26 how the video from the sensor is processed. Examples are timing registers,
|
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/ |
D | sge.c | 328 unsigned int reclaim = q->processed - q->cleaned; in reclaim_completed_tx() 336 return q->processed - q->cleaned; in reclaim_completed_tx() 347 unsigned int r = q->processed - q->cleaned; in should_restart_tx() 1404 unsigned int reclaim = q->processed - q->cleaned; in reclaim_completed_tx_imm() 2160 qs->txq[TXQ_ETH].processed += credits; in handle_rsp_cntrl_info() 2164 qs->txq[TXQ_CTRL].processed += credits; in handle_rsp_cntrl_info() 2172 qs->txq[TXQ_OFLD].processed += credits; in handle_rsp_cntrl_info() 2191 if (txq->cleaned + txq->in_use != txq->processed && in check_ring_db() 2202 if (txq->cleaned + txq->in_use != txq->processed && in check_ring_db()
|
D | adapter.h | 169 unsigned int processed; /* total # of descs HW has processed */ member
|
/linux-4.4.14/Documentation/video4linux/cx2341x/ |
D | fw-calling.txt | 34 2 O Firmware has processed the command.
|
/linux-4.4.14/arch/mn10300/mm/ |
D | cache-inv-by-tag.S | 241 # interrupts to be processed
|
/linux-4.4.14/drivers/net/ethernet/broadcom/ |
D | bcmsysport.c | 591 unsigned int processed = 0, to_process; in bcm_sysport_desc_rx() local 612 while ((processed < to_process) && (processed < budget)) { in bcm_sysport_desc_rx() 691 processed++; in bcm_sysport_desc_rx() 698 return processed; in bcm_sysport_desc_rx()
|
D | bcm63xx_enet.c | 318 int processed; in bcm_enet_receive_queue() local 322 processed = 0; in bcm_enet_receive_queue() 349 processed++; in bcm_enet_receive_queue() 415 if (processed || !priv->rx_desc_count) { in bcm_enet_receive_queue() 423 return processed; in bcm_enet_receive_queue()
|
/linux-4.4.14/sound/oss/ |
D | sequencer.c | 307 int processed = count - c; in sequencer_write() local 312 if (!processed && (file->f_flags & O_NONBLOCK)) in sequencer_write() 315 return processed; in sequencer_write()
|
/linux-4.4.14/Documentation/mmc/ |
D | mmc-async-req.txt | 71 * Begin to prepare DMA while cmd is being processed by MMC.
|
/linux-4.4.14/Documentation/s390/ |
D | DASD | 14 If you supply kernel parameters the different instances are processed
|
D | cds.txt | 70 terminate the current I/O request processed on the device.
|
/linux-4.4.14/sound/usb/ |
D | pcm.c | 1559 int processed = urb->transfer_buffer_length / ep->stride; in retire_playback_urb() local 1565 if (!processed) in retire_playback_urb() 1574 if (processed > subs->last_delay) in retire_playback_urb() 1577 subs->last_delay -= processed; in retire_playback_urb()
|
/linux-4.4.14/Documentation/filesystems/pohmelfs/ |
D | info.txt | 50 Maximum number of milliseconds to wait for the mcache objects to be processed.
|
D | design_notes.txt | 17 Object creation and data reading and writing are processed asynchronously.
|
D | network_protocol.txt | 25 @cmd - command number, which specifies command to be processed. Following
|
/linux-4.4.14/net/core/ |
D | net-procfs.c | 163 sd->processed, sd->dropped, sd->time_squeeze, 0, in softnet_seq_show()
|
D | dev.c | 3836 __this_cpu_inc(softnet_data.processed); in __netif_receive_skb_core()
|
/linux-4.4.14/tools/power/cpupower/bench/ |
D | README-BENCH | 58 Then the above test runs are processed using the performance governor
|
/linux-4.4.14/kernel/ |
D | padata.c | 183 next_nr = pd->processed; in padata_get_next() 201 pd->processed++; in padata_get_next()
|
/linux-4.4.14/drivers/net/ethernet/ti/ |
D | cpmac.c | 421 int received = 0, processed = 0; in cpmac_poll() local 436 processed++; in cpmac_poll() 512 if (processed == 0) { in cpmac_poll()
|
/linux-4.4.14/drivers/net/ethernet/faraday/ |
D | ftmac100.c | 397 static bool ftmac100_rx_packet(struct ftmac100 *priv, int *processed) in ftmac100_rx_packet() argument 464 (*processed)++; in ftmac100_rx_packet()
|
D | ftgmac100.c | 420 static bool ftgmac100_rx_packet(struct ftgmac100 *priv, int *processed) in ftgmac100_rx_packet() argument 497 (*processed)++; in ftgmac100_rx_packet()
|
/linux-4.4.14/drivers/net/wireless/ath/carl9170/ |
D | tx.c | 1162 goto processed; in carl9170_tx_ampdu() 1172 goto processed; in carl9170_tx_ampdu() 1215 processed: in carl9170_tx_ampdu()
|
/linux-4.4.14/drivers/net/ethernet/ibm/ehea/ |
D | ehea_main.c | 678 int processed, processed_rq1, processed_rq2, processed_rq3; in ehea_proc_rwqes() local 682 processed = processed_rq1 = processed_rq2 = processed_rq3 = 0; in ehea_proc_rwqes() 686 while ((processed < budget) && cqe) { in ehea_proc_rwqes() 689 processed++; in ehea_proc_rwqes() 755 pr->rx_packets += processed; in ehea_proc_rwqes() 762 return processed; in ehea_proc_rwqes()
|
/linux-4.4.14/Documentation/serial/ |
D | tty.txt | 103 All bytes must be processed. 107 processing. Returns the number of bytes processed.
|
/linux-4.4.14/drivers/pci/host/ |
D | pci-tegra.c | 1160 unsigned int i, processed = 0; in tegra_pcie_msi_irq() local 1190 processed++; in tegra_pcie_msi_irq() 1194 return processed > 0 ? IRQ_HANDLED : IRQ_NONE; in tegra_pcie_msi_irq()
|
/linux-4.4.14/Documentation/ABI/obsolete/ |
D | sysfs-driver-hid-roccat-pyra | 8 processed to receive the real dpi value.
|
/linux-4.4.14/arch/mips/ |
D | Kconfig.debug | 87 Select compile flags that produce code that can be processed by the
|
/linux-4.4.14/scripts/ |
D | spelling.txt | 753 procesed||processed 758 processsed||processed
|
/linux-4.4.14/fs/ocfs2/ |
D | dlmglue.c | 4023 unsigned long processed; in ocfs2_downconvert_thread_do_work() local 4032 processed = osb->blocked_lock_count; in ocfs2_downconvert_thread_do_work() 4039 while (processed && !list_empty(&osb->blocked_lock_list)) { in ocfs2_downconvert_thread_do_work() 4046 BUG_ON(!processed); in ocfs2_downconvert_thread_do_work() 4047 processed--; in ocfs2_downconvert_thread_do_work()
|
/linux-4.4.14/drivers/net/wireless/ |
D | mwl8k.c | 1312 int processed; in rxq_process() local 1314 processed = 0; in rxq_process() 1400 processed++; in rxq_process() 1403 return processed; in rxq_process() 1661 int processed; in mwl8k_txq_reclaim() local 1663 processed = 0; in mwl8k_txq_reclaim() 1747 processed++; in mwl8k_txq_reclaim() 1750 return processed; in mwl8k_txq_reclaim()
|
/linux-4.4.14/Documentation/watchdog/ |
D | convert_drivers_to_kernel_api.txt | 68 Private IOCTLs are processed first. When the callback returns with
|
/linux-4.4.14/Documentation/w1/ |
D | w1.netlink | 166 When all commands (w1_netlink_cmd) are processed master device is unlocked
|
/linux-4.4.14/Documentation/locking/ |
D | spinlocks.txt | 125 not continue until the interrupt has been processed).
|
D | rt-mutex-design.txt | 486 processed. 491 become the task that is being processed in the PI chain, since
|
/linux-4.4.14/sound/core/ |
D | Kconfig | 39 can be processed at a given time.
|
/linux-4.4.14/Documentation/early-userspace/ |
D | README | 77 processed by usr/gen_init_cpio.
|
/linux-4.4.14/drivers/net/ethernet/sun/ |
D | sunvnet.c | 840 int processed = vnet_event_napi(port, budget); in vnet_poll() local 842 if (processed < budget) { in vnet_poll() 847 return processed; in vnet_poll()
|
/linux-4.4.14/arch/cris/arch-v32/drivers/ |
D | cryptocop.c | 171 unsigned int processed:1; member 2375 jc->processed = 1; in ioctl_process_job_callback() 2564 jc->processed = 0; in cryptocop_ioctl_process() 2904 wait_event(cryptocop_ioc_process_wq, (jc->processed != 0)); in cryptocop_ioctl_process() 2906 if (!jc->processed){ in cryptocop_ioctl_process()
|
/linux-4.4.14/fs/btrfs/ |
D | relocation.c | 72 unsigned int processed:1; member 2569 BUG_ON(reserve && node->processed); 2574 if (next->processed && (reserve || next != node)) 2827 node->processed = 1; 2845 if (next->processed) 2911 BUG_ON(node->processed);
|
/linux-4.4.14/Documentation/i2c/ |
D | dev-interface | 212 After your I2C bus driver has processed these requests, execution runs
|
/linux-4.4.14/Documentation/input/ |
D | joystick-api.txt | 154 /* do something interesting with processed events */
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | compress_offload.txt | 131 of bytes transferred, the number of samples processed and the number
|
D | ALSA-Configuration.txt | 1818 ospath - Pathname to processed ICS2115 OS firmware
|
/linux-4.4.14/lib/ |
D | Kconfig | 113 and computes the total elapsed time and number of bytes processed.
|
/linux-4.4.14/Documentation/dvb/ |
D | avermedia.txt | 48 is generated and must be processed by the PC before it can be
|
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/sec/fuc/ |
D | g98.fuc0s | 298 // ack the processed interrupts
|
/linux-4.4.14/Documentation/networking/dsa/ |
D | dsa.txt | 111 - packet is prepared to be processed by the Ethernet layer by calling 138 frames that can be processed by the networking stack.
|
/linux-4.4.14/Documentation/isdn/ |
D | INTERFACE.CAPI | 212 Only those parameters appearing in the message type currently being processed
|
/linux-4.4.14/Documentation/target/ |
D | tcmu-design.txt | 138 processed by userspace.
|
/linux-4.4.14/drivers/tty/serial/ |
D | Kconfig | 15 enabled when early_param is processed. 86 enabled when early_param is processed. 1613 enabled when early_param is processed.
|
/linux-4.4.14/drivers/net/wireless/ipw2x00/ |
D | ipw2200.h | 723 u32 processed; /* Internal index to last handled Rx packet */ member
|
/linux-4.4.14/Documentation/timers/ |
D | NO_HZ.txt | 193 that the RCU callbacks are processed in a timely fashion.
|
/linux-4.4.14/Documentation/scsi/ |
D | tmscsim.txt | 185 MaxCmd ist the number of commands (=tags) which can be processed at the same
|
D | scsi_mid_low_api.txt | 1022 * to be processed normally.
|
D | ChangeLog.lpfc | 340 local_dpc_disc prevents those events from being processed.
|
/linux-4.4.14/arch/arm/crypto/ |
D | aes-armv4.S | 27 @ Cortex A8 core and ~25 cycles per byte processed with 128-bit key.
|
D | aesbs-core.S_shipped | 24 @ encrypt 19.5 cycles per byte processed with 128-bit key 25 @ decrypt 22.1 cycles per byte processed with 128-bit key
|
D | sha256-core.S_shipped | 20 @ Cortex A8 core and ~20 cycles per processed byte. 25 @ improvement on Cortex A8 core and ~15.4 cycles per processed byte.
|
D | sha512-core.S_shipped | 20 @ Cortex A8 core and ~40 cycles per processed byte.
|
/linux-4.4.14/Documentation/trace/ |
D | ftrace.txt | 222 has processed and can trace. These are the function 2109 white listed .text sections are processed, since processing other 2122 available_filter_functions list. Modules are processed as they
|
/linux-4.4.14/arch/powerpc/ |
D | Kconfig | 1049 and contains dynamic relocations which are processed early
|
/linux-4.4.14/drivers/block/ |
D | skd_main.c | 2700 int processed = 0; in skd_isr_completion_posted() local 2819 if (++processed >= limit) { in skd_isr_completion_posted()
|
/linux-4.4.14/drivers/scsi/aic7xxx/ |
D | aic7xxx.reg | 45 * This file is processed by the aic7xxx_asm utility for use in assembling
|
D | aic79xx.reg | 45 * This file is processed by the aic7xxx_asm utility for use in assembling
|
D | aic79xx.seq | 551 * the last SCB that was correctly processed.
|
/linux-4.4.14/crypto/ |
D | Kconfig | 201 their crypto request asynchronously to be processed by this daemon.
|
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/ |
D | cfg80211.c | 3540 request->processed ? " processed" : "", in ath6kl_cfg80211_reg_notify()
|
/linux-4.4.14/Documentation/kbuild/ |
D | makefiles.txt | 986 In this example, the file target maketools will be processed
|
/linux-4.4.14/Documentation/security/ |
D | keys.txt | 640 The returned data will be processed for presentation by the key type. For
|