Home
last modified time | relevance | path

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

/linux-6.1.9/sound/pci/mixart/
Dmixart_mixer.c710 int mixart_update_playback_stream_level(struct snd_mixart* chip, int is_aes, int idx) in mixart_update_playback_stream_level() argument
723 if(is_aes) { in mixart_update_playback_stream_level()
762 int mixart_update_capture_stream_level(struct snd_mixart* chip, int is_aes) in mixart_update_capture_stream_level() argument
770 if(is_aes) { in mixart_update_capture_stream_level()
827 int is_aes = kcontrol->private_value & MIXART_VOL_AES_MASK; in mixart_pcm_vol_get() local
830 if(is_aes) stored_volume = chip->digital_capture_volume[1]; /* AES capture */ in mixart_pcm_vol_get()
834 …if(is_aes) stored_volume = chip->digital_playback_volume[MIXART_PLAYBACK_STREAMS + idx]; /* AES pl… in mixart_pcm_vol_get()
849 int is_aes = kcontrol->private_value & MIXART_VOL_AES_MASK; in mixart_pcm_vol_put() local
854 if (is_aes) /* AES capture */ in mixart_pcm_vol_put()
860 if (is_aes) /* AES playback */ in mixart_pcm_vol_put()
[all …]
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);
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-6.1.9/drivers/crypto/stm32/
Dstm32-cryp.c167 static inline bool is_aes(struct stm32_cryp *cryp) in is_aes() function
287 if (is_aes(cryp)) { in stm32_cryp_hw_write_iv()
304 if (is_aes(cryp)) { in stm32_cryp_get_iv()
328 if (is_aes(cryp) && is_ecb(cryp)) in stm32_cryp_get_hw_mode()
331 if (is_aes(cryp) && is_cbc(cryp)) in stm32_cryp_get_hw_mode()
334 if (is_aes(cryp) && is_ctr(cryp)) in stm32_cryp_get_hw_mode()
337 if (is_aes(cryp) && is_gcm(cryp)) in stm32_cryp_get_hw_mode()
340 if (is_aes(cryp) && is_ccm(cryp)) in stm32_cryp_get_hw_mode()
1022 cryp->hw_blocksize = is_aes(cryp) ? AES_BLOCK_SIZE : DES_BLOCK_SIZE; in stm32_cryp_prepare_req()
1484 if (is_aes(cryp) && is_ctr(cryp)) in stm32_cryp_irq_write_data()