Searched refs:width1 (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/shell_cmds-179/seq/
H A Dseq.c413 int precision, width1, width2, places; local
429 width1 = sprintf(buf, "%g", first);
433 width1 -= (places + strlen(decimal_point));
445 MAX(width1, width2) + (int) strlen(decimal_point) +
448 sprintf(buf, "%%%c%d%c", pad, MAX(width1, width2),
/macosx-10.10.1/vim-55/src/
H A Dnormal.c4407 int width1; /* text width for first screen line */ local
4415 width1 = W_WIDTH(curwin) - col_off1;
4430 if (width1 <= 0)
4434 curwin->w_curswant = width1 - 1;
4442 if (linelen > width1)
4443 n = ((linelen - width1 - 1) / width2 + 1) * width2 + width1;
4445 n = width1;
4475 if (linelen > width1)
4476 curwin->w_curswant += (((linelen - width1
7955 int width1 = W_WIDTH(curwin) - curwin_col_off(); local
8027 int width1 = W_WIDTH(curwin) - col_off; local
[all...]
H A Dcharset.c1227 int width1; /* width of first line (after line number) */ local
1234 width1 = W_WIDTH(wp) - win_col_off(wp);
1235 if ((int)vcol < width1 - 1)
1237 if ((int)vcol == width1 - 1)
1239 width2 = width1 + win_col_off2(wp);
1242 return ((vcol - width1) % width2 == width2 - 1);

Completed in 137 milliseconds