Searched refs:AE_CLAMP (Results 1 – 1 of 1) sorted by relevance
18 #define AE_CLAMP(x,lo,hi) ((x) < (lo) ? (lo) : (x) > (hi) ? (hi) : (x)) macro24 #define AE_SSAT16(x) AE_CLAMP(x,-32768,32767)25 #define AE_SSAT24(x) AE_CLAMP(x,-16777216,16777215)
Completed in 5 milliseconds