Searched refs:outtail (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/drivers/crypto/vmx/ |
D | aesp8-ppc.pl | 122 my ($stage,$outperm,$outmask,$outhead,$outtail)=map("v$_",(7..11)); 203 vperm $outtail,$in0,$in0,$outperm # rotate 204 vsel $stage,$outhead,$outtail,$outmask 205 vmr $outhead,$outtail 223 vperm $outtail,$in0,$in0,$outperm # rotate 224 vsel $stage,$outhead,$outtail,$outmask 225 vmr $outhead,$outtail 240 vperm $outtail,$in0,$in0,$outperm # rotate 241 vsel $stage,$outhead,$outtail,$outmask 242 vmr $outhead,$outtail [all …]
|
/Linux-v4.19/drivers/hid/usbhid/ |
D | usbhid.h | 91 unsigned char outhead, outtail; /* Output pipe fifo head & tail */ member
|
D | hid-core.c | 203 if ((kicked = (usbhid->outhead != usbhid->outtail))) { in usbhid_restart_out_queue() 204 hid_dbg(hid, "Kicking head %d tail %d", usbhid->outhead, usbhid->outtail); in usbhid_restart_out_queue() 345 report = usbhid->out[usbhid->outtail].report; in hid_submit_out() 346 raw_report = usbhid->out[usbhid->outtail].raw_report; in hid_submit_out() 354 usbhid->out[usbhid->outtail].raw_report = NULL; in hid_submit_out() 457 usbhid->outtail = usbhid->outhead; in hid_irq_out() 459 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1); in hid_irq_out() 461 if (usbhid->outhead != usbhid->outtail && in hid_irq_out() 537 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) { in __usbhid_submit_report()
|