Symbol: is_aes
drivers/crypto/stm32/stm32-cryp.c
1445
if (!is_aes(cryp))
drivers/crypto/stm32/stm32-cryp.c
1460
if (is_aes(cryp) && is_ctr(cryp)) {
drivers/crypto/stm32/stm32-cryp.c
1471
if (is_aes(cryp) && is_ctr(cryp) && ret == DMA_NEED_SG_TRUNC)
drivers/crypto/stm32/stm32-cryp.c
1681
cryp->hw_blocksize = is_aes(cryp) ? AES_BLOCK_SIZE : DES_BLOCK_SIZE;
drivers/crypto/stm32/stm32-cryp.c
2143
if (is_aes(cryp) && is_ctr(cryp))
drivers/crypto/stm32/stm32-cryp.c
384
if (is_aes(cryp)) {
drivers/crypto/stm32/stm32-cryp.c
404
if (is_aes(cryp)) {
drivers/crypto/stm32/stm32-cryp.c
514
if (is_aes(c) && c->caps->linear_aes_key) {
drivers/crypto/stm32/stm32-cryp.c
534
if (is_aes(cryp) && is_ecb(cryp))
drivers/crypto/stm32/stm32-cryp.c
537
if (is_aes(cryp) && is_cbc(cryp))
drivers/crypto/stm32/stm32-cryp.c
540
if (is_aes(cryp) && is_ctr(cryp))
drivers/crypto/stm32/stm32-cryp.c
543
if (is_aes(cryp) && is_gcm(cryp))
drivers/crypto/stm32/stm32-cryp.c
546
if (is_aes(cryp) && is_ccm(cryp))
sound/pci/mixart/mixart.c
610
int is_aes = stream->pcm_number > MIXART_PCM_ANALOG;
sound/pci/mixart/mixart.c
612
mixart_update_playback_stream_level(chip, is_aes, subs->number);
sound/pci/mixart/mixart.c
614
mixart_update_capture_stream_level( chip, is_aes);
sound/pci/mixart/mixart_mixer.c
708
int mixart_update_playback_stream_level(struct snd_mixart* chip, int is_aes, int idx)
sound/pci/mixart/mixart_mixer.c
721
if(is_aes) {
sound/pci/mixart/mixart_mixer.c
760
int mixart_update_capture_stream_level(struct snd_mixart* chip, int is_aes)
sound/pci/mixart/mixart_mixer.c
768
if(is_aes) {
sound/pci/mixart/mixart_mixer.c
825
int is_aes = kcontrol->private_value & MIXART_VOL_AES_MASK;
sound/pci/mixart/mixart_mixer.c
829
if(is_aes) stored_volume = chip->digital_capture_volume[1]; /* AES capture */
sound/pci/mixart/mixart_mixer.c
833
if(is_aes) stored_volume = chip->digital_playback_volume[MIXART_PLAYBACK_STREAMS + idx]; /* AES playback */
sound/pci/mixart/mixart_mixer.c
847
int is_aes = kcontrol->private_value & MIXART_VOL_AES_MASK;
sound/pci/mixart/mixart_mixer.c
853
if (is_aes) /* AES capture */
sound/pci/mixart/mixart_mixer.c
859
if (is_aes) /* AES playback */
sound/pci/mixart/mixart_mixer.c
876
mixart_update_capture_stream_level(chip, is_aes);
sound/pci/mixart/mixart_mixer.c
878
mixart_update_playback_stream_level(chip, is_aes, idx);
sound/pci/mixart/mixart_mixer.c
917
int is_aes = kcontrol->private_value & MIXART_VOL_AES_MASK;
sound/pci/mixart/mixart_mixer.c
924
if (is_aes)
sound/pci/mixart/mixart_mixer.c
935
mixart_update_playback_stream_level(chip, is_aes, idx);
sound/pci/mixart/mixart_mixer.h
14
int mixart_update_playback_stream_level(struct snd_mixart* chip, int is_aes, int idx);
sound/pci/mixart/mixart_mixer.h
15
int mixart_update_capture_stream_level(struct snd_mixart* chip, int is_aes);