Home
last modified time | relevance | path

Searched refs:oleft (Results 1 – 4 of 4) sorted by relevance

/linux/drivers/crypto/allwinner/sun4i-ss/
H A Dsun4i-ss-cipher.c31 unsigned int oleft = areq->cryptlen; in sun4i_ss_opti_poll() local
75 oleft = areq->cryptlen / 4; in sun4i_ss_opti_poll()
118 todo = min(tx_cnt, oleft); in sun4i_ss_opti_poll()
121 oleft -= todo; in sun4i_ss_opti_poll()
130 } while (oleft); in sun4i_ss_opti_poll()
197 unsigned int oleft = areq->cryptlen; in sun4i_ss_cipher_poll() local
266 oleft = areq->cryptlen; in sun4i_ss_cipher_poll()
270 while (oleft) { in sun4i_ss_cipher_poll()
337 todo = min(tx_cnt, oleft / 4); in sun4i_ss_cipher_poll()
342 oleft -= todo * 4; in sun4i_ss_cipher_poll()
[all …]
/linux/sound/isa/sb/
H A Dsb_mixer.c132 unsigned char left, right, oleft, oright; in snd_sbmixer_put_double() local
138 oleft = snd_sbmixer_read(sb, left_reg); in snd_sbmixer_put_double()
139 left = (oleft & ~((mask << left_shift) | (mask << right_shift))) | left | right; in snd_sbmixer_put_double()
140 change = left != oleft; in snd_sbmixer_put_double()
144 oleft = snd_sbmixer_read(sb, left_reg); in snd_sbmixer_put_double()
146 left = (oleft & ~(mask << left_shift)) | left; in snd_sbmixer_put_double()
148 change = left != oleft || right != oright; in snd_sbmixer_put_double()
/linux/sound/pci/
H A Dsonicvibes.c612 int vol, oleft, oright, mleft, mright; in snd_sonicvibes_interrupt() local
619 oleft = mleft = snd_sonicvibes_in1(sonic, SV_IREG_LEFT_ANALOG); in snd_sonicvibes_interrupt()
621 oleft &= 0x1f; in snd_sonicvibes_interrupt()
623 oleft += vol; in snd_sonicvibes_interrupt()
624 if (oleft < 0) in snd_sonicvibes_interrupt()
625 oleft = 0; in snd_sonicvibes_interrupt()
626 if (oleft > 0x1f) in snd_sonicvibes_interrupt()
627 oleft = 0x1f; in snd_sonicvibes_interrupt()
637 oleft |= mleft & 0x80; in snd_sonicvibes_interrupt()
639 snd_sonicvibes_out1(sonic, SV_IREG_LEFT_ANALOG, oleft); in snd_sonicvibes_interrupt()
H A Dcmipci.c2011 int left, right, oleft, oright; in snd_cmipci_put_volume() local
2026 oleft = snd_cmipci_mixer_read(cm, reg.left_reg); in snd_cmipci_put_volume()
2027 left |= oleft & ~(reg.mask << reg.left_shift); in snd_cmipci_put_volume()
2028 change = left != oleft; in snd_cmipci_put_volume()