Lines Matching defs:to
4 * The contents of this file are subject to the terms of the
23 * Use is subject to license terms.
42 * to make the conversion easier.
55 * to separate the header into the different chunks. Thus a single header
121 #define AUDIO_WAV_FILE2HOST_INT(from, to) \
122 (*to) = ((((*from) >> 24) & 0xff) | (((*from) & 0xff) << 24) | \
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))