Searched refs:DECL_AUDIO_EXPORT (Results 1 – 1 of 1) sorted by relevance
/titanic_50/usr/src/uts/common/io/audio/impl/ |
H A D | audio_output.c | 38 #define DECL_AUDIO_EXPORT(NAME, TYPE, SAMPLE) \ macro 73 DECL_AUDIO_EXPORT(16ne, int16_t, sample >> 8) 74 DECL_AUDIO_EXPORT(16oe, int16_t, ddi_swap16(sample >> 8)) 75 DECL_AUDIO_EXPORT(32ne, int32_t, sample << 8) 76 DECL_AUDIO_EXPORT(32oe, int32_t, ddi_swap32(sample << 8)) 77 DECL_AUDIO_EXPORT(24ne, int32_t, sample) 78 DECL_AUDIO_EXPORT(24oe, int32_t, ddi_swap32(sample))
|