Lines Matching refs:high
141 #define PA_CLAMP(x, low, high) \
145 typeof(high) _high = (high); \
149 #define PA_CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x)))
153 #define PA_CLAMP_UNLIKELY(x, low, high) \
157 typeof(high) _high = (high); \
161 #define PA_CLAMP_UNLIKELY(x, low, high) (PA_UNLIKELY((x) > (high)) ? (high) : (PA_UNLIKELY((x) < (low)) ? (low) : (x)))