Home
last modified time | relevance | path

Searched refs:screenwidth (Results 1 – 16 of 16) sorted by relevance

/openbsd-src/gnu/usr.bin/texinfo/info/
H A Dterminal.c197 int screenwidth, screenheight; variable
459 screenwidth = screenheight = 0; in terminal_get_screen_size()
467 screenwidth = (int) window_size.ws_col; in terminal_get_screen_size()
474 if (screenwidth <= 0) in terminal_get_screen_size()
479 screenwidth = atoi (sw); in terminal_get_screen_size()
481 if (screenwidth <= 0) in terminal_get_screen_size()
482 screenwidth = tgetnum ("co"); in terminal_get_screen_size()
498 if (screenwidth <= 0) in terminal_get_screen_size()
499 screenwidth = 80; in terminal_get_screen_size()
543 screenwidth = 80; in terminal_initialize_terminal()
H A Dpcterm.c104 screenwidth = outside_info.screenwidth; in pc_get_screen_size()
203 screenwidth = ScreenCols (); in pc_prep_terminal()
263 if (outside_info.screenwidth == 0)
H A Dm-x.c211 display_initialize_display (screenwidth, screenheight);
212 window_new_screen_size (screenwidth, screenheight);
H A Dsignals.c174 display_initialize_display (screenwidth, screenheight); in reset_info_window_sizes()
175 window_new_screen_size (screenwidth, screenheight); in reset_info_window_sizes()
H A Dterminal.h34 extern int screenwidth, screenheight;
H A Ddisplay.c339 if (strlen (printed_line) > (unsigned int) screenwidth) in display_update_one_window()
H A Dsession.c280 window_initialize_windows (screenwidth, screenheight); in initialize_info_session()
282 display_initialize_display (screenwidth, screenheight); in initialize_info_session()
/openbsd-src/usr.bin/mail/
H A Dmain.c75 int screenwidth; /* Screen width, or best guess */ variable
332 if ((screenwidth = ws.ws_col) == 0) in setscreensize()
333 screenwidth = 80; in setscreensize()
H A Dglob.h77 extern int screenwidth; /* Screen width, or best guess */
H A Dcmd1.c238 printf("%.*s\n", screenwidth, fmtline); in printhead()
/openbsd-src/gnu/usr.bin/binutils/gdb/tui/
H A Dtui-win.c420 int screenheight, screenwidth; in tui_update_gdb_sizes() local
422 rl_get_screen_size (&screenheight, &screenwidth); in tui_update_gdb_sizes()
425 tui_active ? TUI_CMD_WIN->generic.width : screenwidth); in tui_update_gdb_sizes()
606 int screenheight, screenwidth; in tui_resize_all() local
608 rl_get_screen_size (&screenheight, &screenwidth); in tui_resize_all()
609 width_diff = screenwidth - tui_term_width (); in tui_resize_all()
622 resize_term (screenheight, screenwidth); in tui_resize_all()
629 tui_set_term_width_to (screenwidth); in tui_resize_all()
H A Dtui-io.c412 int screenwidth = TUI_CMD_WIN->generic.width; in tui_rl_display_match_list() local
431 limit = screenwidth / max; in tui_rl_display_match_list()
432 if (limit != 1 && (limit * max == screenwidth)) in tui_rl_display_match_list()
/openbsd-src/usr.bin/kdump/
H A Dkdump.c153 static int screenwidth; variable
164 if (screenwidth == 0) { in main()
169 screenwidth = ws.ws_col; in main()
171 screenwidth = 80; in main()
1260 if (col + width > (screenwidth-2)) { in showbufc()
1294 if (col + 3 > screenwidth) { in showbuf()
1305 bpl = (screenwidth - 13)/4; in showbuf()
/openbsd-src/lib/libedit/
H A Dfilecomplete.c340 int screenwidth = el->el_terminal.t_size.h; in fn_display_match_list() local
350 cols = screenwidth / (width + 1); in fn_display_match_list()
/openbsd-src/gnu/lib/libreadline/
H A DCHANGES202 screenheight, screenwidth, alphabetic, etc.
/openbsd-src/gnu/usr.bin/texinfo/
H A DChangeLog.461987 printed_line is longer than screenwidth.