Home
last modified time | relevance | path

Searched refs:outhead (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/drivers/crypto/vmx/
Daesp8-ppc.pl63 my ($stage,$outperm,$outmask,$outhead,$outtail)=map("v$_",(7..11));
131 lvx $outhead,0,$out
145 vsel $stage,$outhead,$outtail,$outmask
146 vmr $outhead,$outtail
165 vsel $stage,$outhead,$outtail,$outmask
166 vmr $outhead,$outtail
182 vsel $stage,$outhead,$outtail,$outmask
183 vmr $outhead,$outtail
195 vsel $stage,$outhead,$outtail,$outmask
196 vmr $outhead,$outtail
[all …]
/linux-4.4.14/drivers/hid/usbhid/
Dusbhid.h84 unsigned char outhead, outtail; /* Output pipe fifo head & tail */ member
Dhid-core.c198 if ((kicked = (usbhid->outhead != usbhid->outtail))) { in usbhid_restart_out_queue()
199 hid_dbg(hid, "Kicking head %d tail %d", usbhid->outhead, usbhid->outtail); in usbhid_restart_out_queue()
452 usbhid->outtail = usbhid->outhead; in hid_irq_out()
456 if (usbhid->outhead != usbhid->outtail && in hid_irq_out()
531 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) { in __usbhid_submit_report()
536 usbhid->out[usbhid->outhead].raw_report = hid_alloc_report_buf(report, GFP_ATOMIC); in __usbhid_submit_report()
537 if (!usbhid->out[usbhid->outhead].raw_report) { in __usbhid_submit_report()
541 hid_output_report(report, usbhid->out[usbhid->outhead].raw_report); in __usbhid_submit_report()
542 usbhid->out[usbhid->outhead].report = report; in __usbhid_submit_report()
543 usbhid->outhead = head; in __usbhid_submit_report()