D | most_snd.c | 57 void (*copy_fn)(void *alsa, void *most, unsigned int bytes); 111 static void alsa_to_most_memcpy(void *alsa, void *most, unsigned int bytes) in alsa_to_most_memcpy() argument 113 memcpy(most, alsa, bytes); in alsa_to_most_memcpy() 116 static void alsa_to_most_copy16(void *alsa, void *most, unsigned int bytes) in alsa_to_most_copy16() argument 118 swap_copy16(most, alsa, bytes); in alsa_to_most_copy16() 121 static void alsa_to_most_copy24(void *alsa, void *most, unsigned int bytes) in alsa_to_most_copy24() argument 123 swap_copy24(most, alsa, bytes); in alsa_to_most_copy24() 126 static void alsa_to_most_copy32(void *alsa, void *most, unsigned int bytes) in alsa_to_most_copy32() argument 128 swap_copy32(most, alsa, bytes); in alsa_to_most_copy32() 131 static void most_to_alsa_memcpy(void *alsa, void *most, unsigned int bytes) in most_to_alsa_memcpy() argument [all …]
|