Lines Matching refs:dst
46 void bf5xx_pcm_to_ac97(struct ac97_frame *dst, const __u16 *src, in bf5xx_pcm_to_ac97() argument
50 dst->ac97_tag = TAG_VALID; in bf5xx_pcm_to_ac97()
52 dst->ac97_pcm_r = *src++; in bf5xx_pcm_to_ac97()
53 dst->ac97_tag |= TAG_PCM_RIGHT; in bf5xx_pcm_to_ac97()
56 dst->ac97_pcm_l = *src++; in bf5xx_pcm_to_ac97()
57 dst->ac97_tag |= TAG_PCM_LEFT; in bf5xx_pcm_to_ac97()
62 dst->ac97_sl = *src++; in bf5xx_pcm_to_ac97()
63 dst->ac97_tag |= TAG_PCM_SL; in bf5xx_pcm_to_ac97()
66 dst->ac97_sr = *src++; in bf5xx_pcm_to_ac97()
67 dst->ac97_tag |= TAG_PCM_SR; in bf5xx_pcm_to_ac97()
70 dst->ac97_lfe = *src++; in bf5xx_pcm_to_ac97()
71 dst->ac97_tag |= TAG_PCM_LFE; in bf5xx_pcm_to_ac97()
74 dst->ac97_center = *src++; in bf5xx_pcm_to_ac97()
75 dst->ac97_tag |= TAG_PCM_CENTER; in bf5xx_pcm_to_ac97()
78 dst++; in bf5xx_pcm_to_ac97()
83 void bf5xx_ac97_to_pcm(const struct ac97_frame *src, __u16 *dst, in bf5xx_ac97_to_pcm() argument
87 *(dst++) = src->ac97_pcm_l; in bf5xx_ac97_to_pcm()
88 *(dst++) = src->ac97_pcm_r; in bf5xx_ac97_to_pcm()