Home
last modified time | relevance | path

Searched refs:processed (Results 1 – 168 of 168) sorted by relevance

/linux-4.4.14/drivers/usb/host/whci/
Dint.c71 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/
Dnx-aes-ccm.c283 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 …]
Dnx-aes-gcm.c120 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 …]
Dnx-aes-ecb.c74 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()
Dnx-aes-cbc.c74 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()
Dnx-aes-ctr.c92 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/
Dinkern.c510 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/
Dpanel.c1079 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/
Dsh_dac_audio.c63 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/
Di2c-rk3x.c122 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/
Dxgbe-drv.c1812 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/
Dvmci_transport_notify.c613 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()
Dvmci_transport_notify_qstate.c357 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/
DKconfig35 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/
Dhci_h5.c523 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/
Dpython-ext-sources5 # processed by Makefile and util/setup.py accordingly.
/linux-4.4.14/include/linux/iio/
Dconsumer.h207 int *processed, unsigned int scale);
/linux-4.4.14/tools/perf/Documentation/
Dperf-script-perl.txt43 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
Dperf-script-python.txt75 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
Dperf-script.txt133 The arguments are processed in the order received. A later usage can
Dintel-pt.txt49 more data than can possibly be processed.
/linux-4.4.14/drivers/dma/
Dimg-mdc-dma.c600 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()
Dedma.c172 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/
Dregulatory.h84 bool processed; member
/linux-4.4.14/sound/usb/line6/
DKconfig20 * Signal routing (record clean/processed guitar signal,
/linux-4.4.14/Documentation/block/
Dstat.txt23 read I/Os requests number of read I/Os processed
27 write I/Os requests number of write I/Os processed
Dbiodoc.txt561 to the numbers of sectors in the current segment being processed which could
/linux-4.4.14/Documentation/networking/
Dtc-actions-env-rules.txt7 For example if your action queues a packet to be processed later,
Dnetlink_mmap.txt48 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
Dscaling.txt28 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
Dnf_conntrack-sysctl.txt51 will take longer for a backlog to be processed.
Dspider_net.txt29 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
D6pack.txt20 set and so on. This control data is processed at a higher priority than
DREADME.ipw2100215 packet processed to sleep is shorter and the sleep period is longer.
De1000e.txt62 but will increase latency as packets are not processed as quickly.
Drds.txt204 the message is DMAed and processed. This is only a potential issue
Dopenvswitch.txt105 by reduce the number of new flows need to be processed by the user space program.
Dixgbe.txt155 packets processed by the Nth queue.
De1000.txt94 but will increase latency as packets are not processed as quickly.
Drxrpc.txt151 has been received and processed; a soft-ACK indicates that the data has
Dcan.txt478 The CAN filters are processed in per-device filter lists at CAN frame
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/
Dmsgbuf.c1255 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/
Dpadata.h135 unsigned int processed; member
Dnetdevice.h2542 unsigned int processed; member
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb/
Dsge.c181 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/
DIntel-IOMMU.txt84 When DMAR is being processed and initialized by ACPI, prints DMAR locations
85 and any RMRR's processed.
Ddynamic-debug-howto.txt239 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
Dmd-cluster.txt96 [ wait until all receiver has *processed* the MESSAGE ]
110 4. triggered by grant of EX on ACK (indicating all receivers have processed
Defi-stub.txt83 and is processed in the same manner as the "initrd=" option that is
Dvolatile-considered-harmful.txt92 indicate which descriptors have been processed, is an example of this
Dkernel-doc-nano-HOWTO.txt236 All descriptive text is further processed, scanning for the following special
Doops-tracing.txt194 processed by klogd:
Dcpu-hotplug.txt94 of them may be online. When physical hotplug is processed by the relevant
Dmd.txt562 sectors in total that could need to be processed. The two
/linux-4.4.14/drivers/net/ethernet/apm/xgene/
Dxgene_enet_main.c543 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/
Dep93xx_eth.c231 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/
Dvirtio_mmio.c623 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/
Dreg.c98 .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(&reg_requests_list) && lr && lr->processed) in reg_process_pending_hints()
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-class-pktcdvd53 device has processed enough bio's
Dsysfs-class-net-queues17 processed by this particular network device receive queue.
Dsysfs-class-rc58 scancodes to be processed.
Dsysfs-driver-hid-roccat-kone8 processed to receive the real dpi value.
Dsysfs-devices-power133 the device is being processed (1). This attribute is read-only.
Dsysfs-power167 some wakeup events are being processed at the time the file is
Dsysfs-bus-iio710 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/
DNOTES9 - The graphics planes are internally processed by the Generic Display
/linux-4.4.14/Documentation/vm/
Dsoft-dirty.txt26 soft-dirty bits clear, the #PF-s that occur after that are processed fast.
Dslub.txt327 generated pre-processed *-totals
/linux-4.4.14/Documentation/arm/Samsung/
DOverview.txt47 last in the line of include directories that are processed for the build
/linux-4.4.14/Documentation/filesystems/
Dfuse.txt136 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
Dquota.txt29 and processed accordingly.
Dcoda.txt165 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
Dproc.txt682 by some IO device before it could be fully processed by the APIC. Hence
/linux-4.4.14/arch/alpha/lib/
Dmemchr.S129 subq $18, $0, $4 #-e0 : $4 <- nr quads to be processed
Dev6-memchr.S146 subq $18, $0, $4 # E : $4 <- nr quads to be processed
/linux-4.4.14/Documentation/usb/
Danchors.txt49 are processed in the reverse temporal order they were submitted.
Dusbmon.txt255 buffer (and not to the number of events processed since the last reset).
/linux-4.4.14/arch/mips/sibyte/
DKconfig159 must be processed off-line.
/linux-4.4.14/Documentation/devicetree/bindings/pinctrl/
Dlantiq,pinctrl-falcon.txt19 should be enumerated and processed purely based on their content.
Dqcom,apq8064-pinctrl.txt28 and processed purely based on their content.
Dqcom,msm8660-pinctrl.txt28 and processed purely based on their content.
Dqcom,ipq8064-pinctrl.txt28 and processed purely based on their content.
Dpinctrl-palmas.txt23 and processed purely based on their content.
Dxlnx,zynq-pinctrl.txt22 and processed purely based on their content.
Dqcom,msm8974-pinctrl.txt28 and processed purely based on their content.
Dlantiq,pinctrl-xway.txt19 should be enumerated and processed purely based on their content.
Dste,nomadik.txt21 and processed purely based on their content. The subnodes use the generic
Dimg,tz1090-pdc-pinctrl.txt19 and processed purely based on their content.
Dpinctrl_spear.txt40 and processed purely based on their content.
Dqcom,msm8960-pinctrl.txt60 and processed purely based on their content.
Dqcom,apq8084-pinctrl.txt60 and processed purely based on their content.
Dqcom,msm8916-pinctrl.txt60 and processed purely based on their content.
Dqcom,pmic-mpp.txt59 and processed purely based on their content.
Dqcom,pmic-gpio.txt59 and processed purely based on their content.
Drenesas,pfc-pinctrl.txt58 are parsed through phandles and processed purely based on their content.
Dnvidia,tegra20-pinmux.txt19 and processed purely based on their content.
Dnvidia,tegra210-pinmux.txt20 and processed purely based on their content.
Dimg,tz1090-pinctrl.txt19 and processed purely based on their content.
/linux-4.4.14/Documentation/video4linux/
Dcpia2_overview.txt26 how the video from the sensor is processed. Examples are timing registers,
/linux-4.4.14/drivers/net/ethernet/chelsio/cxgb3/
Dsge.c328 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()
Dadapter.h169 unsigned int processed; /* total # of descs HW has processed */ member
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-calling.txt34 2 O Firmware has processed the command.
/linux-4.4.14/arch/mn10300/mm/
Dcache-inv-by-tag.S241 # interrupts to be processed
/linux-4.4.14/drivers/net/ethernet/broadcom/
Dbcmsysport.c591 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()
Dbcm63xx_enet.c318 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/
Dsequencer.c307 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/
Dmmc-async-req.txt71 * Begin to prepare DMA while cmd is being processed by MMC.
/linux-4.4.14/Documentation/s390/
DDASD14 If you supply kernel parameters the different instances are processed
Dcds.txt70 terminate the current I/O request processed on the device.
/linux-4.4.14/sound/usb/
Dpcm.c1559 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/
Dinfo.txt50 Maximum number of milliseconds to wait for the mcache objects to be processed.
Ddesign_notes.txt17 Object creation and data reading and writing are processed asynchronously.
Dnetwork_protocol.txt25 @cmd - command number, which specifies command to be processed. Following
/linux-4.4.14/net/core/
Dnet-procfs.c163 sd->processed, sd->dropped, sd->time_squeeze, 0, in softnet_seq_show()
Ddev.c3836 __this_cpu_inc(softnet_data.processed); in __netif_receive_skb_core()
/linux-4.4.14/tools/power/cpupower/bench/
DREADME-BENCH58 Then the above test runs are processed using the performance governor
/linux-4.4.14/kernel/
Dpadata.c183 next_nr = pd->processed; in padata_get_next()
201 pd->processed++; in padata_get_next()
/linux-4.4.14/drivers/net/ethernet/ti/
Dcpmac.c421 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/
Dftmac100.c397 static bool ftmac100_rx_packet(struct ftmac100 *priv, int *processed) in ftmac100_rx_packet() argument
464 (*processed)++; in ftmac100_rx_packet()
Dftgmac100.c420 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/
Dtx.c1162 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/
Dehea_main.c678 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/
Dtty.txt103 All bytes must be processed.
107 processing. Returns the number of bytes processed.
/linux-4.4.14/drivers/pci/host/
Dpci-tegra.c1160 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/
Dsysfs-driver-hid-roccat-pyra8 processed to receive the real dpi value.
/linux-4.4.14/arch/mips/
DKconfig.debug87 Select compile flags that produce code that can be processed by the
/linux-4.4.14/scripts/
Dspelling.txt753 procesed||processed
758 processsed||processed
/linux-4.4.14/fs/ocfs2/
Ddlmglue.c4023 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/
Dmwl8k.c1312 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/
Dconvert_drivers_to_kernel_api.txt68 Private IOCTLs are processed first. When the callback returns with
/linux-4.4.14/Documentation/w1/
Dw1.netlink166 When all commands (w1_netlink_cmd) are processed master device is unlocked
/linux-4.4.14/Documentation/locking/
Dspinlocks.txt125 not continue until the interrupt has been processed).
Drt-mutex-design.txt486 processed.
491 become the task that is being processed in the PI chain, since
/linux-4.4.14/sound/core/
DKconfig39 can be processed at a given time.
/linux-4.4.14/Documentation/early-userspace/
DREADME77 processed by usr/gen_init_cpio.
/linux-4.4.14/drivers/net/ethernet/sun/
Dsunvnet.c840 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/
Dcryptocop.c171 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/
Drelocation.c72 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/
Ddev-interface212 After your I2C bus driver has processed these requests, execution runs
/linux-4.4.14/Documentation/input/
Djoystick-api.txt154 /* do something interesting with processed events */
/linux-4.4.14/Documentation/sound/alsa/
Dcompress_offload.txt131 of bytes transferred, the number of samples processed and the number
DALSA-Configuration.txt1818 ospath - Pathname to processed ICS2115 OS firmware
/linux-4.4.14/lib/
DKconfig113 and computes the total elapsed time and number of bytes processed.
/linux-4.4.14/Documentation/dvb/
Davermedia.txt48 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/
Dg98.fuc0s298 // ack the processed interrupts
/linux-4.4.14/Documentation/networking/dsa/
Ddsa.txt111 - 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/
DINTERFACE.CAPI212 Only those parameters appearing in the message type currently being processed
/linux-4.4.14/Documentation/target/
Dtcmu-design.txt138 processed by userspace.
/linux-4.4.14/drivers/tty/serial/
DKconfig15 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/
Dipw2200.h723 u32 processed; /* Internal index to last handled Rx packet */ member
/linux-4.4.14/Documentation/timers/
DNO_HZ.txt193 that the RCU callbacks are processed in a timely fashion.
/linux-4.4.14/Documentation/scsi/
Dtmscsim.txt185 MaxCmd ist the number of commands (=tags) which can be processed at the same
Dscsi_mid_low_api.txt1022 * to be processed normally.
DChangeLog.lpfc340 local_dpc_disc prevents those events from being processed.
/linux-4.4.14/arch/arm/crypto/
Daes-armv4.S27 @ Cortex A8 core and ~25 cycles per byte processed with 128-bit key.
Daesbs-core.S_shipped24 @ encrypt 19.5 cycles per byte processed with 128-bit key
25 @ decrypt 22.1 cycles per byte processed with 128-bit key
Dsha256-core.S_shipped20 @ Cortex A8 core and ~20 cycles per processed byte.
25 @ improvement on Cortex A8 core and ~15.4 cycles per processed byte.
Dsha512-core.S_shipped20 @ Cortex A8 core and ~40 cycles per processed byte.
/linux-4.4.14/Documentation/trace/
Dftrace.txt222 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/
DKconfig1049 and contains dynamic relocations which are processed early
/linux-4.4.14/drivers/block/
Dskd_main.c2700 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/
Daic7xxx.reg45 * This file is processed by the aic7xxx_asm utility for use in assembling
Daic79xx.reg45 * This file is processed by the aic7xxx_asm utility for use in assembling
Daic79xx.seq551 * the last SCB that was correctly processed.
/linux-4.4.14/crypto/
DKconfig201 their crypto request asynchronously to be processed by this daemon.
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/
Dcfg80211.c3540 request->processed ? " processed" : "", in ath6kl_cfg80211_reg_notify()
/linux-4.4.14/Documentation/kbuild/
Dmakefiles.txt986 In this example, the file target maketools will be processed
/linux-4.4.14/Documentation/security/
Dkeys.txt640 The returned data will be processed for presentation by the key type. For