| /src/external/bsd/tmux/dist/ |
| cmd-resize-window.c | 56 u_int adjust, sx, sy, xpixel = 0, ypixel = 0; local 102 default_window_size(NULL, s, w, &sx, &sy, &xpixel, &ypixel, 105 default_window_size(NULL, s, w, &sx, &sy, &xpixel, &ypixel,
|
| resize.c | 26 resize_window(struct window *w, u_int sx, u_int sy, int xpixel, int ypixel) 53 window_resize(w, sx, sy, xpixel, ypixel); 117 u_int *xpixel, u_int *ypixel) 138 *xpixel = *ypixel = 0; 205 if (loop->tty.xpixel > *xpixel && loop->tty.ypixel > *ypixel) { 207 *ypixel = loop->tty.ypixel; 279 u_int *sx, u_int *sy, u_int *xpixel, u_int *ypixel, int type) 295 *ypixel = c->tty.ypixel 355 u_int sx, sy, xpixel = 0, ypixel = 0; local [all...] |
| image-sixel.c | 38 u_int ypixel; member in struct:sixel_image 300 sixel_parse(const char *buf, size_t len, u_int p2, u_int xpixel, u_int ypixel) 313 si->ypixel = ypixel; 410 if ((si->y % si->ypixel) == 0) 411 *y = (si->y / si->ypixel); 413 *y = 1 + (si->y / si->ypixel); 417 sixel_scale(struct sixel_image *si, u_int xpixel, u_int ypixel, u_int ox, 441 if (ypixel == 0) 442 ypixel = si->ypixel [all...] |
| window.c | 295 window_create(u_int sx, u_int sy, u_int xpixel, u_int ypixel) 301 if (ypixel == 0) 302 ypixel = DEFAULT_YPIXEL; 320 w->ypixel = ypixel; 334 w->xpixel, w->ypixel); 412 window_resize(struct window *w, u_int sx, u_int sy, int xpixel, int ypixel) 416 if (ypixel == 0) 417 ypixel = DEFAULT_YPIXEL; 421 ypixel == -1 ? w->ypixel : (u_int)ypixel) [all...] |
| cmd-break-pane.c | 103 w = wp->window = window_create(w->sx, w->sy, w->xpixel, w->ypixel);
|
| spawn.c | 84 u_int sx, sy, xpixel, ypixel; local 155 default_window_size(sc->tc, s, NULL, &sx, &sy, &xpixel, &ypixel, 157 if ((w = window_create(sx, sy, xpixel, ypixel)) == NULL) { 355 ws.ws_ypixel = w->ypixel * ws.ws_row;
|
| tty-keys.c | 669 u_int sx, sy, xpixel, ypixel, char_x, char_y; local 709 tty_set_size(tty, sx, sy, tty->xpixel, tty->ypixel); 713 } else if (sscanf(tmp, "4;%u;%u", &ypixel, &xpixel) == 2) { 716 char_y = (ypixel && tty->sy) ? ypixel / tty->sy : 0;
|
| tty.c | 129 u_int sx, sy, xpixel, ypixel; local 141 ypixel = 0; 143 ypixel = ws.ws_ypixel / sy; 145 if ((xpixel == 0 || ypixel == 0) && 156 ypixel = 0; 159 xpixel, ypixel); 160 tty_set_size(tty, sx, sy, xpixel, ypixel); 165 tty_set_size(struct tty *tty, u_int sx, u_int sy, u_int xpixel, u_int ypixel) 170 tty->ypixel = ypixel; [all...] |
| input.c | 2074 input_reply(ictx, 1, "\033[4;%u;%ut", y * w->ypixel, 2080 input_reply(ictx, 1, "\033[5;%u;%ut", y * w->ypixel, 2086 input_reply(ictx, 1, "\033[6;%u;%ut", w->ypixel, 2561 si = sixel_parse(buf, len, p2, w->xpixel, w->ypixel);
|
| tmux.h | 1285 u_int ypixel; member in struct:window 1551 u_int ypixel; member in struct:tty
|
| format.c | 1405 return (format_printf("%u", ft->c->tty.ypixel)); 2622 return (format_printf("%u", ft->w->ypixel));
|
| /src/usr.bin/resize/ |
| resize.h | 81 #define setup_winsize(ws, row, col, xpixel, ypixel) \ 85 (ws).ws_ypixel = ypixel)
|
| /src/crypto/external/bsd/openssh/dist/ |
| session.h | 46 u_int row, col, xpixel, ypixel; member in struct:Session
|
| sshpty.c | 128 u_int xpixel, u_int ypixel) 136 w.ws_ypixel = ypixel;
|
| session.c | 1675 (r = sshpkt_get_u32(ssh, &s->ypixel)) != 0 || 1678 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel); 1700 (r = sshpkt_get_u32(ssh, &s->ypixel)) != 0) 1726 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
|