Lines Matching refs:from
121 #define AUDIO_WAV_FILE2HOST_INT(from, to) \
122 (*to) = ((((*from) >> 24) & 0xff) | (((*from) & 0xff) << 24) | \
123 (((*from) >> 8) & 0xff00) | (((*from) & 0xff00) << 8))
124 #define AUDIO_WAV_FILE2HOST_SHORT(from, to) \
125 (*to) = ((((*from) >> 8) & 0xff) | (((*from) & 0xff) << 8))
126 #define AUDIO_WAV_HOST2FILE_INT(from, to) \
127 AUDIO_WAV_FILE2HOST_INT((from), (to))
128 #define AUDIO_WAV_HOST2FILE_SHORT(from, to) \
129 AUDIO_WAV_FILE2HOST_SHORT((from), (to))
132 #define AUDIO_WAV_FILE2HOST_INT(from, to) \
133 *((int *)(to)) = *((int *)(from))
134 #define AUDIO_WAV_FILE2HOST_SHORT(from, to) \
135 *((short *)(to)) = *((short *)(from))
136 #define AUDIO_WAV_HOST2FILE_INT(from, to) \
137 *((int *)(to)) = *((int *)(from))
138 #define AUDIO_WAV_HOST2FILE_SHORT(from, to) \
139 *((short *)(to)) = *((short *)(from))