Home
last modified time | relevance | path

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

/linux-4.1.27/drivers/crypto/vmx/
Daesp8-ppc.pl63 my ($stage,$outperm,$outmask,$outhead,$outtail)=map("v$_",(7..11));
144 vperm $outtail,$in0,$in0,$outperm # rotate
145 vsel $stage,$outhead,$outtail,$outmask
146 vmr $outhead,$outtail
164 vperm $outtail,$in0,$in0,$outperm # rotate
165 vsel $stage,$outhead,$outtail,$outmask
166 vmr $outhead,$outtail
181 vperm $outtail,$in0,$in0,$outperm # rotate
182 vsel $stage,$outhead,$outtail,$outmask
183 vmr $outhead,$outtail
[all …]
/linux-4.1.27/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()
340 report = usbhid->out[usbhid->outtail].report; in hid_submit_out()
341 raw_report = usbhid->out[usbhid->outtail].raw_report; in hid_submit_out()
349 usbhid->out[usbhid->outtail].raw_report = NULL; in hid_submit_out()
452 usbhid->outtail = usbhid->outhead; in hid_irq_out()
454 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1); 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()