Home
last modified time | relevance | path

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

/linux-4.4.14/drivers/crypto/sunxi-ss/
Dsun4i-ss-cipher.c34 unsigned int oleft = areq->nbytes; in sun4i_ss_opti_poll() local
79 oleft = areq->nbytes / 4; in sun4i_ss_opti_poll()
98 todo = min3(tx_cnt, oleft, (mo.length - oo) / 4); in sun4i_ss_opti_poll()
100 oleft -= todo; in sun4i_ss_opti_poll()
108 } while (oleft > 0); in sun4i_ss_opti_poll()
144 unsigned int oleft = areq->nbytes; in sun4i_ss_cipher_poll() local
211 oleft = areq->nbytes; in sun4i_ss_cipher_poll()
215 while (oleft > 0) { in sun4i_ss_cipher_poll()
259 oo, mo.length, oleft, areq->nbytes, tx_cnt, in sun4i_ss_cipher_poll()
265 todo = min3(tx_cnt, oleft / 4, (mo.length - oo) / 4); in sun4i_ss_cipher_poll()
[all …]
/linux-4.4.14/sound/isa/sb/
Dsb_mixer.c153 unsigned char left, right, oleft, oright; in snd_sbmixer_put_double() local
159 oleft = snd_sbmixer_read(sb, left_reg); in snd_sbmixer_put_double()
160 left = (oleft & ~((mask << left_shift) | (mask << right_shift))) | left | right; in snd_sbmixer_put_double()
161 change = left != oleft; in snd_sbmixer_put_double()
165 oleft = snd_sbmixer_read(sb, left_reg); in snd_sbmixer_put_double()
167 left = (oleft & ~(mask << left_shift)) | left; in snd_sbmixer_put_double()
169 change = left != oleft || right != oright; in snd_sbmixer_put_double()
/linux-4.4.14/sound/pci/
Dsonicvibes.c644 int vol, oleft, oright, mleft, mright; in snd_sonicvibes_interrupt() local
651 oleft = mleft = snd_sonicvibes_in1(sonic, SV_IREG_LEFT_ANALOG); in snd_sonicvibes_interrupt()
653 oleft &= 0x1f; in snd_sonicvibes_interrupt()
655 oleft += vol; in snd_sonicvibes_interrupt()
656 if (oleft < 0) in snd_sonicvibes_interrupt()
657 oleft = 0; in snd_sonicvibes_interrupt()
658 if (oleft > 0x1f) in snd_sonicvibes_interrupt()
659 oleft = 0x1f; in snd_sonicvibes_interrupt()
669 oleft |= mleft & 0x80; in snd_sonicvibes_interrupt()
671 snd_sonicvibes_out1(sonic, SV_IREG_LEFT_ANALOG, oleft); in snd_sonicvibes_interrupt()
Dcmipci.c2077 int left, right, oleft, oright; in snd_cmipci_put_volume() local
2092 oleft = snd_cmipci_mixer_read(cm, reg.left_reg); in snd_cmipci_put_volume()
2093 left |= oleft & ~(reg.mask << reg.left_shift); in snd_cmipci_put_volume()
2094 change = left != oleft; in snd_cmipci_put_volume()