• Home
  • Raw
  • Download

Lines Matching refs:dst

1464 #define _A_SWITCH(icode, ptr, dst, src, sw) \  in _snd_emu10k1_audigy_init_efx()  argument
1465 A_OP((icode), ptr, iMACINT0, dst, A_C_00000000, src, sw); in _snd_emu10k1_audigy_init_efx()
1466 #define A_SWITCH(icode, ptr, dst, src, sw) \ in _snd_emu10k1_audigy_init_efx() argument
1467 _A_SWITCH(icode, ptr, A_GPR(dst), A_GPR(src), A_GPR(sw)) in _snd_emu10k1_audigy_init_efx()
1468 #define _A_SWITCH_NEG(icode, ptr, dst, src) \ in _snd_emu10k1_audigy_init_efx() argument
1469 A_OP((icode), ptr, iANDXOR, dst, src, A_C_00000001, A_C_00000001); in _snd_emu10k1_audigy_init_efx()
1470 #define A_SWITCH_NEG(icode, ptr, dst, src) \ in _snd_emu10k1_audigy_init_efx() argument
1471 _A_SWITCH_NEG(icode, ptr, A_GPR(dst), A_GPR(src)) in _snd_emu10k1_audigy_init_efx()
1801 static void _volume(struct snd_emu10k1_fx8010_code *icode, u32 *ptr, u32 dst, u32 src, u32 vol) in _volume() argument
1803 OP(icode, ptr, iMAC0, dst, C_00000000, src, vol); in _volume()
1806 OP(icode, ptr, iACC3, dst, src, C_00000000, C_00000000); in _volume()
1808 static void _volume_add(struct snd_emu10k1_fx8010_code *icode, u32 *ptr, u32 dst, u32 src, u32 vol) in _volume_add() argument
1812 OP(icode, ptr, iMACINT0, dst, dst, src, C_00000001); in _volume_add()
1814 OP(icode, ptr, iMAC0, dst, dst, src, vol); in _volume_add()
1816 static void _volume_out(struct snd_emu10k1_fx8010_code *icode, u32 *ptr, u32 dst, u32 src, u32 vol) in _volume_out() argument
1820 OP(icode, ptr, iACC3, dst, src, C_00000000, C_00000000); in _volume_out()
1822 OP(icode, ptr, iMAC0, dst, C_00000000, src, vol); in _volume_out()
1825 #define VOLUME(icode, ptr, dst, src, vol) \ argument
1826 _volume(icode, ptr, GPR(dst), GPR(src), GPR(vol))
1827 #define VOLUME_IN(icode, ptr, dst, src, vol) \ argument
1828 _volume(icode, ptr, GPR(dst), EXTIN(src), GPR(vol))
1829 #define VOLUME_ADD(icode, ptr, dst, src, vol) \ argument
1830 _volume_add(icode, ptr, GPR(dst), GPR(src), GPR(vol))
1831 #define VOLUME_ADDIN(icode, ptr, dst, src, vol) \ argument
1832 _volume_add(icode, ptr, GPR(dst), EXTIN(src), GPR(vol))
1833 #define VOLUME_OUT(icode, ptr, dst, src, vol) \ argument
1834 _volume_out(icode, ptr, EXTOUT(dst), GPR(src), GPR(vol))
1835 #define _SWITCH(icode, ptr, dst, src, sw) \ argument
1836 OP((icode), ptr, iMACINT0, dst, C_00000000, src, sw);
1837 #define SWITCH(icode, ptr, dst, src, sw) \ argument
1838 _SWITCH(icode, ptr, GPR(dst), GPR(src), GPR(sw))
1839 #define SWITCH_IN(icode, ptr, dst, src, sw) \ argument
1840 _SWITCH(icode, ptr, GPR(dst), EXTIN(src), GPR(sw))
1841 #define _SWITCH_NEG(icode, ptr, dst, src) \ argument
1842 OP((icode), ptr, iANDXOR, dst, src, C_00000001, C_00000001);
1843 #define SWITCH_NEG(icode, ptr, dst, src) \ argument
1844 _SWITCH_NEG(icode, ptr, GPR(dst), GPR(src))
2507 static void copy_string(char *dst, char *src, char *null, int idx) in copy_string() argument
2510 sprintf(dst, "%s %02X", null, idx); in copy_string()
2512 strcpy(dst, src); in copy_string()