HomeSort by relevance Sort by last modified time
    Searched refs:col (Results 1 - 25 of 171) sorted by null

1 2 3 4 5 6 7

  /onnv/onnv-gate/usr/src/cmd/fmli/qued/
fclear.c 47 register int row, col; local
52 for (row = saverow, col = savecol; row <= LASTROW; row++, col = 0) {
53 fgo(row, col);
54 for (; col <= LASTCOL; col++)
64 register int col, savecol; local
67 for (col = savecol; col <= LASTCOL; col++
    [all...]
fgo.c 40 fgo(row, col)
42 int col;
45 Cfld->curcol = col;
46 wgo(row + Cfld->frow, col + Cfld->fcol);
editmulti.c 47 register int row, col; local
51 col = Cfld->curcol;
72 col = 0;
80 fgo(--row, col = LASTCOL);
92 if (col == LASTCOL) { /* if cursor on last col */
93 col = wrapcol;
97 else if (col == LASTCOL) {
99 col = 0;
107 fgo(row, col);
    [all...]
fput.c 55 register int row, col, done; local
59 col = Cfld->curcol;
91 fgo(row, col);
96 fgo(++row, col = 0);
100 if (col != 0)
101 fgo(row, --col);
105 numspaces = ((col + 8) & ~7) - col;
106 for (i = 0; i < numspaces && col <= LASTCOL; i++, col++
    [all...]
editsingle.c 53 register int row, col; local
60 col = Cfld->curcol;
71 if ((Cfld->rows == 1) && (row == 0) && (col == 0)) {
94 if (col == LASTCOL) /* end of line */
97 col++;
109 fgo(row, col = 0);
116 if (col > 0) {
117 if (col == LASTCOL && freadchar(row, col) != ' ') {
119 fgo(row, col);
    [all...]
multiline.c 64 register int col; local
100 col = LASTCOL;
101 while (col >= 0 && freadchar(LASTROW, col) == ' ')
102 col--;
103 fgo(LASTROW, (col == LASTCOL || col == 0 ? col : col+1));
116 register int col; local
231 register int col; local
    [all...]
singleline.c 63 register int col; local
101 col = LASTCOL;
102 while (col >= 0 && freadchar(0, col) == ' ')
103 col--;
104 fgo(0, (col == LASTCOL || col == 0 ? col : col+1));
118 register int col; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/vi/misc/
fold.c 90 int col; variable
102 ncol = (col + 8) &~ 7;
105 ncol = col ? col - 1 : 0;
111 ncol = col + 1;
114 putchar('\n'), col = 0;
118 col = 0;
121 col += 8;
122 col &= ~7;
125 if (col)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/fmli/inc/
color_pair.h 71 #define CHK_PAIR(vid, col) \
72 ((col > COLOR_PAIRS) || !Pair_set[col] ? vid : COLOR_PAIR(col))
77 * then expand to CHK_PAIR(vid, col) ...
80 #define COL_ATTR(vid, col) \
81 ((Color_terminal == TRUE) && COLOR_PAIRS >= 7 ? CHK_PAIR(vid, col) :vid)
  /onnv/onnv-gate/usr/src/lib/libcurses/screen/
tgoto.c 52 tgoto(char *cap, int col, int row)
56 cp = tparm_p2(cap, row, col);
V3.upd_old_y.c 52 int row, col, num_cols; local
55 for (num_cols = ncols, col = start_col; num_cols > 0;
56 num_cols--, col++)
58 win->_y16[row][col] = _TO_OCHTYPE(win->_y[row][col]);
  /onnv/onnv-gate/usr/src/cmd/format/
add_definition.c 65 static int add_entry(int col, FILE *fd, char *format, ...);
191 int col; local
198 col = add_entry(0, fd, " : ctlr = %s",
201 col = add_entry(col, fd, " : ncyl = %d", disk_type->dtype_ncyl);
203 col = add_entry(col, fd, " : acyl = %d", disk_type->dtype_acyl);
205 col = add_entry(col, fd, " : pcyl = %d", disk_type->dtype_pcyl);
207 col = add_entry(col, fd, " : nhead = %d", disk_type->dtype_nhead)
309 int col; local
    [all...]
  /onnv/onnv-gate/usr/src/cmd/rcap/rcapstat/
rcapstat.c 51 typedef struct col { struct
66 struct col *col_next;
67 struct col *col_prev;
78 col_t *col; local
79 for (col = col_head; col != NULL; col = col->col_next)
80 if (col->col_id.rcid_type == id.rcid_type &&
81 col->col_id.rcid_val == id.rcid_val
150 col_t *col, *col_next; local
261 col_t *col; local
301 col_t *col; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libc/port/gen/
euclen.c 80 int col = 0; local
84 col += 1;
90 col += scrw2;
94 col += scrw3;
98 col += scrw1;
104 return (col);
  /onnv/onnv-gate/usr/src/lib/libsqlite/tool/
mkopts.tcl 24 set col 0
26 global col
27 if {$col==0} {puts -nonewline " "}
28 if {$col<2} {
30 incr col
33 set col 0
37 global col
38 if {$col>0} {puts {}}
39 set col 0
  /onnv/onnv-gate/usr/src/cmd/fmli/vt/
wreadchar.c 39 wreadchar(row, col)
41 unsigned col;
51 col++;
53 ch = (char)(mvwinch(v->win, row, col) & A_CHARTEXT);
indicator.c 38 indicator(message, col)
40 int col;
47 mvwaddstr(win, 0, col, message);
49 wmove(win, 0, col);
move.c 39 * moves a vt to row, col
49 int col; local
54 getmaxyx(v->win, row, col);
55 if (off_screen(newrow, newcol, row, col))
  /onnv/onnv-gate/usr/src/lib/libxcurses/src/libc/xcurses/
tgoto.c 47 (tgoto)(const char *cap, int col, int row)
52 __m_trace("tgoto(%p = \"%s\", %d, %d)", cap, col, row);
55 str = tparm((char *)cap, (long) row, (long) col, 0L, 0L, 0L, 0L, 0L, 0L, 0L);
  /onnv/onnv-gate/usr/src/uts/common/io/lvm/raid/
raid_hotspare.c 90 mr_column_t *col; local
92 col = &un->un_column[hs_index];
95 if (col->un_devflags & MD_RAID_DEV_ISOPEN) {
96 md_layered_close(col->un_dev, MD_OFLG_NULL);
97 col->un_devflags &= ~MD_RAID_DEV_ISOPEN;
102 &col->un_hs_key, NULL, NULL);
104 col->un_hs_pwstart = 0;
105 col->un_hs_devstart = 0;
106 col->un_hs_id = (mddb_recid_t)0;
107 col->un_hs_key = 0
137 mr_column_t *col; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
tgoto.c 52 tgoto(char *cap, int col, int row)
56 str = tparm((char *)cap, (long) row, (long) col,
  /onnv/onnv-gate/usr/src/cmd/col/
Makefile 28 PROG= col
  /onnv/onnv-gate/usr/src/lib/libcmd/common/
fold.c 92 register int n, col=0, x=0; local
111 col = 0;
116 while((cp-first) > (width-col))
119 col = last_space - first;
121 col = width-col;
122 sfwrite(out,first,col);
123 first += col;
124 col = 0;
136 col = 0
    [all...]
  /onnv/onnv-gate/usr/src/cmd/tbl/
t9.c 61 table[0][icol].col = dataln;
69 table[0][icol].rcol = maknew(table[0][icol].col);
72 table[0][icol].rcol = table[0][icol].col;
73 table[0][icol].col= "";
77 table[0][++icol].col = "";
81 table[0][icol].col = "";
  /onnv/onnv-gate/usr/src/cmd/fold/
fold.c 65 static int col = 0; variable
196 if (col != 0) newline_init();
213 ncol = col + chr_width(c);
215 ncol = (col + 8) &~ 7;
219 ncol = col + chr_width(c);
221 ncol = col ? col - 1 : 0;
225 ncol = col + chr_width(c);
232 ncol = col + chr_width(c);
234 ncol = col + wcwidth(c)
    [all...]

Completed in 900 milliseconds

1 2 3 4 5 6 7