Searched refs:CLAMP (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dtty.c2740 #define CLAMP(x, h, l) ((x) > h ? h : ((x) < l) ? l : (x)) macro
2743 tp->t_lowat = x = CLAMP(cps / 2, TTMAXLOWAT, TTMINLOWAT);
2745 x = CLAMP(x, TTMAXHIWAT, TTMINHIWAT);
2747 #undef CLAMP macro

Completed in 65 milliseconds