Home
last modified time | relevance | path

Searched refs:min_y (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/arm-optimized-routines/math/tools/
H A Dtgamma128_gen.jl169 min_y = SpecialFunctions.gamma(min_x)
170 min_y_hi = quadval(min_y, -1)
172 println("static const long double min_y_lo = ", quadhex(min_y - min_y_hi), ";")
175 # Taylor series generated by Wolfram Alpha for (gamma(min_x+x)-min_y)/x^2.
188 (SpecialFunctions.gamma(min_x - x) - min_y) / (x*x),
201 (SpecialFunctions.gamma(min_x + x) - min_y) / (x*x),
/freebsd/usr.sbin/moused/moused/
H A Dmoused.c209 int min_y; member
1624 tphw->min_y = (ai.maximum > ai.minimum) ? ai.minimum : INT_MIN; in r_init_touchpad_hw()
1635 tphw->res_y = (tphw->max_y - tphw->min_y) / dim.y; in r_init_touchpad_hw()
1736 sz_y = tphw->max_y - tphw->min_y; in r_init_touchpad_info()
2853 int min_y = tphw->min_y; in r_gestures() local
2887 if (margin_bottom != 0 && y0 <= min_y + margin_bottom) in r_gestures()
2888 y0 = min_y + margin_bottom; in r_gestures()
2935 ? start_y < min_y - tpinfo->softbuttons_y in r_gestures()
3000 start_y <= min_y + vscroll_hor_area) || in r_gestures()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp6239 const int min_y = y; in WindowDelegateDraw() local
6241 const size_t num_visible_lines = max_y - min_y + 1; in WindowDelegateDraw()
6252 1, m_text.GetStringAtIndex(m_first_visible_line + y - min_y)); in WindowDelegateDraw()