Home
last modified time | relevance | path

Searched refs:last_y (Results 1 – 8 of 8) sorted by relevance

/dragonfly/bin/mined/
H A Dmined1.c738 if (new_y < 0 || new_y > last_y) in move()
887 for (last_y = 0; last_y < nlines - 1 && last_y < screenmax in reset()
888 && line->next != tail; last_y++) in reset()
892 y = (screen_y > last_y) ? last_y : screen_y; in reset()
1267 int last_y; /* Last y of screen. Usually SCREENMAX */ variable
1404 display (0, 0, header->next, last_y); in load_file()
1549 display(0, 0, top_line, last_y); in RD()
H A Dmined2.c118 if (y == last_y) { /* Last line of screen. Scroll one line */ in DN()
180 move_to(0, last_y); in LOW()
294 move_to(LINE_START, last_y); in EF()
356 if (last_y != screenmax) /* Reset last_y if necessary */ in reverse_scroll()
357 last_y++; in reverse_scroll()
564 display(0, y, cur_line, last_y - y); in S()
770 shift = last_y; /* Save value */ in delete()
1840 if (last_y != screenmax) { in dummy_line()
1841 last_y++; in dummy_line()
H A Dmined.h185 extern int last_y; /* Last y of screen. Usually SCREENMAX */
/dragonfly/usr.sbin/installer/dfuife_curses/
H A Dcurses_xlat.c62 static unsigned int last_y; variable
807 last_y = (*pbar)->y + 2; in curses_form_construct_from_dfui_progress()
847 w = curses_form_widget_add(pbar->form, 0, ++last_y, 58, in curses_widgets_update_from_dfui_progress()
850 if (last_y >= pbar->form->int_height) { in curses_widgets_update_from_dfui_progress()
851 pbar->form->int_height = last_y + 1; in curses_widgets_update_from_dfui_progress()
/dragonfly/contrib/dialog/
H A Dmixedgauge.c117 int last_y = 0, last_x = 0; in myprint_status() local
123 getyx(win, last_y, last_x); in myprint_status()
183 wmove(win, last_y, last_x); in myprint_status()
H A Dutil.c1034 int last_y = 0, last_x = 0; in justify_text() local
1046 getyx(win, last_y, last_x); in justify_text()
1065 getyx(win, last_y, last_x); in justify_text()
1076 (void) wmove(win, last_y, last_x); in justify_text()
/dragonfly/sys/dev/video/bktr/
H A Dbktr_core.c2469 bktr->last_y = 0; in notclipped()
2499 bktr->y = min(bktr->last_y, bktr->line_length); in getline()
2506 if (bktr->last_y <= clip_node->y_min) { in getline()
2507 bktr->y = min(bktr->last_y, bktr->line_length); in getline()
2511 bktr->last_y = bktr->yclip2; in getline()
2517 if (bktr->last_y >= clip_node->y_min) { in getline()
2519 bktr->last_y = bktr->yclip2; in getline()
H A Dbktr_reg.h556 int last_y; member