Searched refs:outtail (Results 1 – 4 of 4) sorted by relevance
/linux-6.6.21/arch/powerpc/crypto/ |
D | aesp10-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-6.6.21/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-6.6.21/drivers/hid/usbhid/ |
D | usbhid.h | 78 unsigned char outhead, outtail; /* Output pipe fifo head & tail */ member
|
D | hid-core.c | 200 if ((kicked = (usbhid->outhead != usbhid->outtail))) { in usbhid_restart_out_queue() 201 hid_dbg(hid, "Kicking head %d tail %d", usbhid->outhead, usbhid->outtail); in usbhid_restart_out_queue() 342 report = usbhid->out[usbhid->outtail].report; in hid_submit_out() 343 raw_report = usbhid->out[usbhid->outtail].raw_report; in hid_submit_out() 351 usbhid->out[usbhid->outtail].raw_report = NULL; in hid_submit_out() 451 usbhid->outtail = usbhid->outhead; in hid_irq_out() 453 usbhid->outtail = (usbhid->outtail + 1) & (HID_OUTPUT_FIFO_SIZE - 1); in hid_irq_out() 455 if (usbhid->outhead != usbhid->outtail && in hid_irq_out() 532 if ((head = (usbhid->outhead + 1) & (HID_OUTPUT_FIFO_SIZE - 1)) == usbhid->outtail) { in __usbhid_submit_report()
|