Symbol: pwidth
bin/ksh/vi.c
1363
static int pwidth; /* display columns needed for prompt */
bin/ksh/vi.c
1440
cur_col = pwidth = promptlen(prompt, &p);
bin/ksh/vi.c
1442
if (pwidth > x_cols - 3 - MIN_EDIT_SPACE) {
bin/ksh/vi.c
1444
prompt_trunc = pwidth - cur_col;
bin/ksh/vi.c
1445
pwidth -= prompt_trunc;
bin/ksh/vi.c
1455
winwidth = x_cols - pwidth - 3;
bin/ksh/vi.c
1763
cur_col = pwidth;
bin/ksh/vi.c
1889
ncol = col + pwidth;
bin/ksh/vi.c
1918
ncol = col + pwidth - 1;
bin/ksh/vi.c
1922
ncol = col + pwidth;
bin/ksh/vi.c
1940
col = pwidth;
bin/ksh/vi.c
1952
if (col > pwidth)
bin/ksh/vi.c
2004
ed_mov_opt(pwidth + winwidth + 1, wb1);
bin/ksh/vi.c
2037
cur_col = pwidth;
bin/ksh/vi.c
2049
ci = pwidth;
bin/ksh/vi.c
2050
while (ci < col || (ci > pwidth && isu8cont(*wb))) {
bin/ksh/vi.c
2052
if (ci == pwidth)
usr.bin/less/cmdbuf.c
155
cmd_step_common(char *p, LWCHAR ch, int len, int *pwidth, int *bswidth)
usr.bin/less/cmdbuf.c
161
if (pwidth != NULL || bswidth != NULL) {
usr.bin/less/cmdbuf.c
163
if (pwidth != NULL)
usr.bin/less/cmdbuf.c
164
*pwidth = prlen;
usr.bin/less/cmdbuf.c
170
if (pwidth != NULL || bswidth != NULL) {
usr.bin/less/cmdbuf.c
172
if (pwidth != NULL)
usr.bin/less/cmdbuf.c
173
*pwidth = 0;
usr.bin/less/cmdbuf.c
178
if (pwidth != NULL)
usr.bin/less/cmdbuf.c
179
*pwidth = prlen;
usr.bin/less/cmdbuf.c
183
if (pwidth != NULL)
usr.bin/less/cmdbuf.c
184
*pwidth = is_wide_char(ch) ? 2 : 1;
usr.bin/less/cmdbuf.c
198
cmd_step_right(char **pp, int *pwidth, int *bswidth)
usr.bin/less/cmdbuf.c
203
return (cmd_step_common(p, ch, *pp - p, pwidth, bswidth));
usr.bin/less/cmdbuf.c
210
cmd_step_left(char **pp, int *pwidth, int *bswidth)
usr.bin/less/cmdbuf.c
215
return (cmd_step_common(*pp, ch, p - *pp, pwidth, bswidth));
usr.bin/less/line.c
448
width = pwidth(ch, attr[curr], prev_ch);
usr.bin/less/line.c
534
w = pwidth(ch, a, prev_ch);
usr.bin/less/line.c
588
if (column + to_tab - 1 + pwidth(' ', attr, 0) +
usr.bin/less/line.c
614
pwidth(' ', binattr, 0) + attr_ewidth(binattr) > sc_width)
usr.bin/less/line.c
854
pwidth(' ', binattr, 0) + attr_ewidth(binattr) > sc_width)
usr.bin/tmux/status.c
796
u_int pwidth, u_int *width, struct grid_cell *gc,
usr.bin/tmux/status.c
805
if (*width >= offset + pwidth)
usr.bin/tmux/status.c
808
if (*width > offset + pwidth)
usr.bin/tmux/status.c
829
struct screen_write_ctx *ctx, u_int offset, u_int pwidth, u_int *width,
usr.bin/tmux/status.c
836
return (status_prompt_redraw_character(ctx, offset, pwidth,
usr.bin/tmux/status.c
851
u_int pcursor, pwidth, promptline;
usr.bin/tmux/status.c
918
pwidth = utf8_strwidth(c->prompt_buffer, -1);
usr.bin/tmux/status.c
920
pwidth++;
usr.bin/tmux/status.c
927
pwidth = left;
usr.bin/tmux/status.c
930
if (pwidth > left)
usr.bin/tmux/status.c
931
pwidth = left;
usr.bin/tmux/status.c
937
pwidth, &width, &gc))
usr.bin/tmux/status.c
939
if (!status_prompt_redraw_character(&ctx, offset, pwidth,
usr.bin/tmux/status.c
943
status_prompt_redraw_quote(c, pcursor, &ctx, offset, pwidth, &width,