Home
last modified time | relevance | path

Searched refs:max_y (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/dev/hid/
H A Dietp.c114 uint16_t max_y; member
333 0, sc->max_y, 0, 0, sc->res_y); in ietp_attach()
349 device_printf(sc->dev, "[%d:%d], %s\n", sc->max_x, sc->max_y, in ietp_attach()
408 if (x > sc->max_x || y > sc->max_y) { in ietp_intr()
410 finger, x, y, sc->max_x, sc->max_y); in ietp_intr()
421 .y = sc->max_y - y, in ietp_intr()
556 sc->max_y = le16toh(buf); in ietp_iic_attach()
563 sc->trace_y = sc->max_y / buf8[1]; in ietp_iic_attach()
/freebsd/sys/netpfil/ipfw/test/
H A Dmain.c39 int max_y; /* max random number in the generation */ member
404 c->max_y = prev ? prev->base_y + prev->y : 0; in parse_flowsets()
405 DX(1,"%d flows on %d flowsets max_y %d", c->flows, c->flowsets, c->max_y); in parse_flowsets()
703 if (c->cur_y >= c->max_y) { /* handle wraparound */ in controller()
/freebsd/usr.sbin/moused/moused/
H A Dmoused.c210 int max_y; member
1625 tphw->max_y = (ai.maximum > ai.minimum) ? ai.maximum : INT_MAX; in r_init_touchpad_hw()
1632 } else if (tphw->max_x != INT_MAX && tphw->max_y != INT_MAX && 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()
2851 int max_y = tphw->max_y; in r_gestures() local
2889 else if (margin_top != 0 && y0 >= max_y - margin_top) in r_gestures()
2890 y0 = max_y - margin_top; in r_gestures()
2936 : start_y > max_y - tpinfo->softbuttons_y; in r_gestures()
3002 start_y >= max_y + vscroll_hor_area)) in r_gestures()
/freebsd/sys/dev/atkbdc/
H A Dpsm.c241 int max_y; member
3811 int max_x, max_y; local
3826 max_y = sc->syninfo.max_y;
3842 else if (y0 >= max_y - margin_top)
3843 y0 = max_y - margin_top;
3894 start_y > max_y + sc->syninfo.softbuttons_y;
3974 max_y + vscroll_hor_area))
4159 int max_x, max_y; local
4185 max_y = sc->syninfo.max_y;
4204 else if (y0 >= max_y - margin_top)
[all …]
/freebsd/contrib/dialog/
H A Dutil.c1282 int max_y = SLINES - 1; in auto_size_preformatted() local
1288 justify_text((WINDOW *) 0, prompt, max_y, max_x, &high, &wide); in auto_size_preformatted()
1298 justify_text((WINDOW *) 0, prompt, max_y, max_x, &high, &wide); in auto_size_preformatted()
1309 justify_text((WINDOW *) 0, prompt, max_y, max_x, &high, &wide); in auto_size_preformatted()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp6240 const int max_y = window_height - 1 - y; in WindowDelegateDraw() local
6241 const size_t num_visible_lines = max_y - min_y + 1; in WindowDelegateDraw()
6249 while (y <= max_y) { in WindowDelegateDraw()