Home
last modified time | relevance | path

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

/Zephyr-latest/include/zephyr/input/
Dinput_touch.h39 uint32_t screen_height; member
53 .screen_height = DT_PROP(node_id, screen_height), \
/Zephyr-latest/drivers/input/
Dinput_touch.c16 const uint32_t reported_y = cfg->inverted_y ? cfg->screen_height - y : y; in input_touchscreen_report_pos()
Dinput_stmpe811.c341 if (common->screen_width > 0 && common->screen_height > 0) { in stmpe811_report_touch()
344 y = (((int)data->touch_y - config->raw_y_min) * common->screen_height) / in stmpe811_report_touch()
348 y = CLAMP(y, 0, common->screen_height); in stmpe811_report_touch()
/Zephyr-latest/scripts/kconfig/
Dmenuconfig.py1040 screen_height, screen_width = _stdscr.getmaxyx()
1049 menu_win_height = screen_height - help_win_height - 3
1770 screen_height, screen_width = _stdscr.getmaxyx()
1775 win_height = min(win_height, screen_height)
1783 win.mvwin((screen_height - win_height)//2,
1971 screen_height, screen_width = _stdscr.getmaxyx()
1975 win_height = min(len(lines) + 4, screen_height)
1979 win.mvwin((screen_height - win_height)//2,
2257 screen_height, screen_width = _stdscr.getmaxyx()
2262 matches_win_height = screen_height - help_win_height - 4
[all …]
Dguiconfig.py1276 screen_height = _root.winfo_screenheight()
1286 if y + dialog_height > screen_height:
1287 y = screen_height - dialog_height