Lines Matching refs:to
4 * The contents of this file are subject to the terms of the
24 * Use is subject to license terms.
44 * used to store additional information. At the minimum, it is at
54 * set to AUDIO_AU_UNKNOWN_SIZE.
117 #define AUDIO_AU_FILE2HOST(from, to) *((long *)(to)) = *((long *)(from))
119 #define AUDIO_AU_FILE2HOST(from, to) \
120 ((char *)(to))[0] = ((char *)(from))[3]; \
121 ((char *)(to))[1] = ((char *)(from))[2]; \
122 ((char *)(to))[2] = ((char *)(from))[1]; \
123 ((char *)(to))[3] = ((char *)(from))[0];
127 #define AUDIO_AU_HOST2FILE(from, to) AUDIO_AU_FILE2HOST((from), (to))