Home
last modified time | relevance | path

Searched refs:PCM_S32_MAX (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/sound/pcm/
H A Dpcm.h86 #define PCM_S32_MAX 0x7fffffffL macro
89 #define PCM_S32_MAX 0x7fffffffLL macro
93 #define PCM_S32_MAX 0x7fffffff macro
424 (((val) > PCM_S32_MAX) ? PCM_S32_MAX : \
428 (((val) > PCM_S24_MAX) ? PCM_S32_MAX : \
H A Dfeeder_eq.c130 if ((v) < PCM_S32_MIN || (v) > PCM_S32_MAX) \
138 #define FEEDEQ_CLAMP(v) (((v) > PCM_S32_MAX) ? PCM_S32_MAX : \
H A Dfeeder_matrix.c281 v = (accum > PCM_S32_MAX) ? PCM_S32_MAX : in feed_matrix_apply_generic()