Lines Matching refs:from
145 #define AUDIO_AIFF_FILE2HOST_INT(from, to) \
146 *((int *)(to)) = *((int *)(from))
147 #define AUDIO_AIFF_FILE2HOST_SHORT(from, to) \
148 *((short *)(to)) = *((short *)(from))
149 #define AUDIO_AIFF_HOST2FILE_INT(from, to) \
150 *((int *)(to)) = *((int *)(from))
151 #define AUDIO_AIFF_HOST2FILE_SHORT(from, to) \
152 *((short *)(to)) = *((short *)(from))
154 #define AUDIO_AIFF_FILE2HOST_INT(from, to) \
155 (*to) = ((((*from) >> 24) & 0xff) | (((*from) & 0xff) << 24) | \
156 (((*from) >> 8) & 0xff00) | (((*from) & 0xff00) << 8))
157 #define AUDIO_AIFF_FILE2HOST_SHORT(from, to) \
158 (*to) = ((((*from) >> 8) & 0xff) | (((*from) & 0xff) << 8))
159 #define AUDIO_AIFF_HOST2FILE_INT(from, to) \
160 AUDIO_AIFF_FILE2HOST_INT((from), (to))
161 #define AUDIO_AIFF_HOST2FILE_SHORT(from, to) \
162 AUDIO_AIFF_FILE2HOST_SHORT((from), (to))