Home
last modified time | relevance | path

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

/linux/sound/pci/mixart/
H A Dmixart_mixer.c708 int mixart_update_playback_stream_level(struct snd_mixart* chip, int is_aes, int idx) in mixart_update_playback_stream_level() argument
721 if(is_aes) { in mixart_update_playback_stream_level()
760 int mixart_update_capture_stream_level(struct snd_mixart* chip, int is_aes) in mixart_update_capture_stream_level() argument
768 if(is_aes) { in mixart_update_capture_stream_level()
825 int is_aes = kcontrol->private_value & MIXART_VOL_AES_MASK; in mixart_pcm_vol_get() local
829 if(is_aes) stored_volume = chip->digital_capture_volume[1]; /* AES capture */ in mixart_pcm_vol_get()
833 …if(is_aes) stored_volume = chip->digital_playback_volume[MIXART_PLAYBACK_STREAMS + idx]; /* AES pl… in mixart_pcm_vol_get()
847 int is_aes = kcontrol->private_value & MIXART_VOL_AES_MASK; in mixart_pcm_vol_put() local
853 if (is_aes) /* AES capture */ in mixart_pcm_vol_put()
859 if (is_aes) /* AES playback */ in mixart_pcm_vol_put()
[all …]
H A Dmixart_mixer.h14 int mixart_update_playback_stream_level(struct snd_mixart* chip, int is_aes, int idx);
15 int mixart_update_capture_stream_level(struct snd_mixart* chip, int is_aes);
H A Dmixart.c610 int is_aes = stream->pcm_number > MIXART_PCM_ANALOG; in snd_mixart_hw_params() local
612 mixart_update_playback_stream_level(chip, is_aes, subs->number); in snd_mixart_hw_params()
614 mixart_update_capture_stream_level( chip, is_aes); in snd_mixart_hw_params()
/linux/drivers/crypto/stm32/
H A Dstm32-cryp.c244 static inline bool is_aes(struct stm32_cryp *cryp) in is_aes() function
390 if (is_aes(cryp)) { in stm32_cryp_hw_write_iv()
410 if (is_aes(cryp)) { in stm32_cryp_get_iv()
520 if (is_aes(c) && c->caps->linear_aes_key) { in stm32_cryp_hw_write_key()
540 if (is_aes(cryp) && is_ecb(cryp)) in stm32_cryp_get_hw_mode()
543 if (is_aes(cryp) && is_cbc(cryp)) in stm32_cryp_get_hw_mode()
546 if (is_aes(cryp) && is_ctr(cryp)) in stm32_cryp_get_hw_mode()
549 if (is_aes(cryp) && is_gcm(cryp)) in stm32_cryp_get_hw_mode()
552 if (is_aes(cryp) && is_ccm(cryp)) in stm32_cryp_get_hw_mode()
1451 if (!is_aes(cryp)) in stm32_cryp_dma_check()
[all …]