Searched refs:col (Results 76 - 100 of 172) sorted by relevance

1234567

/freebsd-9.3-release/sys/teken/
H A Dteken_subr.h36 teken_tab_isset(teken_t *t, unsigned int col) argument
40 if (col >= T_NUMCOL)
41 return ((col % 8) == 0);
43 b = col / (sizeof(unsigned int) * 8);
44 o = col % (sizeof(unsigned int) * 8);
50 teken_tab_clear(teken_t *t, unsigned int col) argument
54 if (col >= T_NUMCOL)
57 b = col / (sizeof(unsigned int) * 8);
58 o = col % (sizeof(unsigned int) * 8);
64 teken_tab_set(teken_t *t, unsigned int col) argument
324 teken_subr_cursor_position(teken_t *t, unsigned int row, unsigned int col) argument
583 teken_subr_horizontal_position_absolute(teken_t *t, unsigned int col) argument
[all...]
/freebsd-9.3-release/contrib/groff/src/libs/libdriver/
H A Dinput.cpp484 e_copy->col = new color;
486 *e_copy->col = *e->col;
607 delete current_env->col;
1265 col: In-out-parameter; the color object to be set, must have
1269 parse_color_command(color *col) argument
1280 col->set_cmy(cyan, magenta, yellow);
1283 col->set_default();
1287 col->set_gray(gray);
1294 col
[all...]
/freebsd-9.3-release/sys/dev/vt/
H A Dvt_buf.c164 vtbuf_iscursor(struct vt_buf *vb, int row, int col) argument
169 (vb->vb_cursor.tp_row == row) && (vb->vb_cursor.tp_col == col))
190 if ((POS_INDEX(sc, sr) <= POS_INDEX(col, row)) &&
191 (POS_INDEX(col, row) < POS_INDEX(ec, er)))
538 vtbuf_mouse_cursor_position(struct vt_buf *vb, int col, int row) argument
543 area.tr_begin.tp_col = MAX(col - 1, 0);
545 area.tr_end.tp_col = MIN(col + 2, vb->vb_scr_size.tp_col);
633 vtbuf_set_mark(struct vt_buf *vb, int type, int col, int row) argument
646 vb->vb_mark_end.tp_col = col;
651 vb->vb_mark_start.tp_col = col;
[all...]
/freebsd-9.3-release/usr.bin/talk/
H A Ddisplay.c176 readwin(WINDOW *win, int line, int col) argument
182 wmove(win, line, col);
/freebsd-9.3-release/contrib/groff/src/devices/grohtml/
H A Dhtml-text.h46 color col; member in struct:tag_definition
/freebsd-9.3-release/sys/dev/fe/
H A Dif_fe.c1436 int col; local
1505 col = fe_inb(sc, FE_DLCR4);
1506 col = (col & FE_D4_COL) >> FE_D4_COL_SHIFT;
1507 if (col == 0) {
1519 col = 1;
1521 sc->ifp->if_collisions += col;
1522 if (col == 1)
1526 sc->mibdata.dot3StatsCollFrequencies[col-1]++;
1533 col
[all...]
/freebsd-9.3-release/contrib/ncurses/ncurses/tty/
H A Dtty_update.c175 GoTo(int const row, int const col) argument
178 row, col, SP->_cursrow, SP->_curscol));
182 mvcur(SP->_cursrow, SP->_curscol, row, col);
1042 int row, col; local
1045 col = SP->_curscol;
1051 while (col < screen_columns)
1052 curscr->_line[row].text[col++] = blank;
1055 for (col = 0; col < screen_columns; col
1071 int col; local
[all...]
/freebsd-9.3-release/contrib/groff/src/roff/troff/
H A Dnode.h174 color *col; /* for grotty */ member in class:space_node
314 color *col; /* for grotty */ member in class:hmotion_node
317 : node(nxt), n(i), was_tab(0), unformat(0), col(c) {}
319 : node(nxt, s, divlevel), n(i), was_tab(0), unformat(0), col(c) {}
323 col(c) {}
325 : node(nxt), n(i), was_tab(flag1), unformat(flag2), col(c) {}
361 color *col; /* for grotty */ member in class:vmotion_node
H A Dnode.cpp1213 void troff_output_file::fill_color(color *col) argument
1215 if (!col || current_fill_color == col)
1217 current_fill_color = col;
1225 cs = col->get_components(components);
1266 void troff_output_file::glyph_color(color *col) argument
1268 if (!col || current_glyph_color == col)
1270 current_glyph_color = col;
1279 cs = col
2724 color *col; member in class:break_char_node
[all...]
/freebsd-9.3-release/sys/dev/fb/
H A Dfbreg.h122 typedef int vi_read_hw_cursor_t(video_adapter_t *adp, int *col, int *row);
123 typedef int vi_set_hw_cursor_t(video_adapter_t *adp, int col, int row);
221 #define vidd_read_hw_cursor(adp, col, row) \
222 (*vidsw[(adp)->va_index]->read_hw_cursor)((adp), (col), (row))
223 #define vidd_set_hw_cursor(adp, col, row) \
224 (*vidsw[(adp)->va_index]->set_hw_cursor)((adp), (col), (row))
H A Ds3_pci.c365 s3lfb_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
367 return (*prevvidsw->read_hw_cursor)(adp, col, row);
371 s3lfb_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
373 return (*prevvidsw->set_hw_cursor)(adp, col, row);
/freebsd-9.3-release/sys/powerpc/ps3/
H A Dps3_syscons.c500 ps3fb_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
502 *col = 0;
509 ps3fb_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
627 int col; local
634 col = (off % adp->va_info.vi_width) * adp->va_info.vi_cwidth;
638 + col + sc->sc_xmargin;
/freebsd-9.3-release/usr.bin/mail/
H A Dlist.c342 evalcol(int col) argument
346 if (col == 0)
349 if (colp->co_char == col)
/freebsd-9.3-release/contrib/tcpdump/
H A Dprint-olsr.c497 int col = 0; local
505 if (col == 0)
517 col = (col + 1) % 4;
/freebsd-9.3-release/sys/powerpc/ofw/
H A Dofw_syscons.c562 ofwfb_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
564 *col = 0;
571 ofwfb_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
759 int col; local
771 col = (off % adp->va_info.vi_width) * adp->va_info.vi_cwidth;
775 + col + sc->sc_xmargin);
816 int col; local
823 col = (off % adp->va_info.vi_width) * adp->va_info.vi_cwidth;
827 + col + sc->sc_xmargin;
/freebsd-9.3-release/contrib/groff/src/preproc/eqn/
H A Deqn.y37 column *col;
119 %type <col> column column_arg column_element_list
/freebsd-9.3-release/contrib/nvi/ip/
H A Dip_funcs.c177 *xp = ipp->col;
303 ipp->col = cno;
/freebsd-9.3-release/crypto/openssh/
H A Dsshpty.c189 pty_change_window_size(int ptyfd, u_int row, u_int col, argument
196 w.ws_col = col;
/freebsd-9.3-release/games/grdc/
H A Dgrdc.c262 movto(int line, int col) argument
264 move(line, col);
/freebsd-9.3-release/usr.bin/systat/
H A Dextern.h52 extern int col;
H A Dicmp.c191 #define DO(stat, row, col) \
192 mvwprintw(wnd, row, col, "%9lu", stats.stat)
H A Dicmp6.c188 #define DO(stat, row, col) \
189 mvwprintw(wnd, row, col, "%9lu", stats.stat)
H A Dip.c209 #define DO(stat, row, col) \
210 mvwprintw(wnd, row, col, "%9lu", stats.stat)
H A Dip6.c196 #define DO(stat, row, col) \
197 mvwprintw(wnd, row, col, "%9lu", stats.stat)
H A Dmain.c66 int col; variable
224 move(CMDLINE, col);

Completed in 288 milliseconds

1234567