Searched defs:PA_CLAMP (Results 1 – 1 of 1) sorted by relevance
143 #define PA_CLAMP(x, low, high) \ macro151 #define PA_CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) macro