Home
last modified time | relevance | path

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

/freebsd/sys/dev/hid/
H A Dietp.c113 uint16_t max_y; member
305 0, sc->max_y, 0, 0, sc->res_y); in ietp_attach()
321 device_printf(sc->dev, "[%d:%d], %s\n", sc->max_x, sc->max_y, in ietp_attach()
380 if (x > sc->max_x || y > sc->max_y) { in ietp_intr()
382 finger, x, y, sc->max_x, sc->max_y); in ietp_intr()
393 .y = sc->max_y - y, in ietp_intr()
518 sc->max_y = le16toh(buf); in ietp_iic_attach()
525 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/sys/dev/atkbdc/
H A Dpsm.c240 int max_y; member
3800 int max_x, max_y; local
3815 max_y = sc->syninfo.max_y;
3831 else if (y0 >= max_y - margin_top)
3832 y0 = max_y - margin_top;
3883 start_y > max_y + sc->syninfo.softbuttons_y;
3963 max_y + vscroll_hor_area))
4148 int max_x, max_y; local
4174 max_y = sc->syninfo.max_y;
4193 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.cpp6238 const int max_y = window_height - 1 - y; in WindowDelegateDraw() local
6239 const size_t num_visible_lines = max_y - min_y + 1; in WindowDelegateDraw()
6247 while (y <= max_y) { in WindowDelegateDraw()