Home
last modified time | relevance | path

Searched refs:PA_INT32_SWAP (Results 1 - 3 of 3) sorted by relevance

/third_party/pulseaudio/src/pulsecore/
H A Dendianmacros.h37 #define PA_INT32_SWAP(x) ((int32_t) bswap_32((uint32_t) x)) macro
42 #define PA_INT32_SWAP(x) ( (int32_t) ( ((uint32_t) (x) >> 24) | ((uint32_t) (x) << 24) | (((uint32_t) (x) & 0xFF00) << 8) | ((((uint32_t) (x)) >> 8) & 0xFF00) ) ) macro
95 #define PA_MAYBE_INT32_SWAP(c,x) ((c) ? PA_INT32_SWAP(x) : (x))
111 #define PA_INT32_FROM_LE(x) PA_INT32_SWAP(x)
114 #define PA_INT32_TO_LE(x) PA_INT32_SWAP(x)
142 #define PA_INT32_FROM_BE(x) PA_INT32_SWAP(x)
145 #define PA_INT32_TO_BE(x) PA_INT32_SWAP(x)
H A Dsvolume_c.c161 t = (int64_t) PA_INT32_SWAP(*samples); in pa_volume_s32re_c()
164 *samples++ = PA_INT32_SWAP((int32_t) t); in pa_volume_s32re_c()
H A Dmix.c327 v = PA_INT32_SWAP(*((int32_t*) m->ptr)); in pa_mix_s32re_c()
335 *data = PA_INT32_SWAP((int32_t) sum); in pa_mix_s32re_c()
451 *data = PA_INT32_SWAP(((uint32_t) (int32_t) sum) >> 8); in pa_mix_s24_32re_c()

Completed in 3 milliseconds