Searched refs:LIM (Results 1 – 1 of 1) sorted by relevance
30 #define LIM(x,min,max) MAX(min,MIN(x,max)) macro31 #define ULIM(x,y,z) ((y) < (z) ? LIM(x,y,z) : LIM(x,z,y))32 #define CLIP(x) LIM(x,0,65535)