Searched defs:IN_RANGE (Results 1 – 4 of 4) sorted by relevance
47 #define IN_RANGE(n, x, y) (((n) >= (x)) && ((n) <= (y))) macro
125 #define IN_RANGE(_var, _min, _max) ( ((_var) >= (_min)) && ((_var) <= (_max)) ) macro
152 #define IN_RANGE(a, b, e) ((a) >= (b) && (a) <= (e)) macro
69 #define IN_RANGE(n, x, y) (((n) >= (x)) && ((n) <= (y))) macro