Searched refs:row (Results 76 - 100 of 155) sorted by relevance

1234567

/freebsd-10.0-release/sys/dev/fb/
H A Dfbreg.h150 typedef int vi_read_hw_cursor_t(video_adapter_t *adp, int *col, int *row);
151 typedef int vi_set_hw_cursor_t(video_adapter_t *adp, int col, int row);
249 #define vidd_read_hw_cursor(adp, col, row) \
250 (*vidsw[(adp)->va_index]->read_hw_cursor)((adp), (col), (row))
251 #define vidd_set_hw_cursor(adp, col, row) \
252 (*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);
H A Dcreator.c642 creator_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
646 *row = 0;
651 creator_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
820 int row; local
825 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
832 ((row + sc->sc_ymargin) << 16) | (col + sc->sc_xmargin));
/freebsd-10.0-release/sys/powerpc/ps3/
H A Dps3_syscons.c500 ps3fb_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
503 *row = 0;
509 ps3fb_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
626 int row; local
633 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
637 + (row + sc->sc_ymargin)*(sc->sc_stride/4)
/freebsd-10.0-release/sys/powerpc/wii/
H A Dwii_fb.c703 wiifb_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
706 *col = *row = 0;
712 wiifb_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
828 int row; local
837 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
841 + (row + sc->sc_ymargin)*(sc->sc_stride/4)
/freebsd-10.0-release/contrib/gcclibs/libmudflap/
H A Dmf-runtime.c1307 unsigned row = old_obj->type; local
1308 unsigned plot = __mf_object_dead_head [row];
1310 del_obj = __mf_object_cemetary [row][plot];
1311 __mf_object_cemetary [row][plot] = old_obj;
1314 __mf_object_dead_head [row] = plot;
1607 unsigned row = 0; local
1612 /* Widen the search from the most recent plots in each row, looking
1619 for (row = 0; row <= __MF_TYPE_MAX_CEM; row
1843 unsigned row, plot; local
[all...]
/freebsd-10.0-release/contrib/nvi/common/
H A Doptions.c833 int numcols, numrows, row; local
935 for (row = 0; row < numrows;) {
936 for (base = row, col = 0; col < numcols; ++col) {
943 if (++row < numrows || b_num)
948 for (row = 0; row < b_num;) {
949 (void)opts_print(sp, &optlist[b_op[row]]);
950 if (++row < b_num)
/freebsd-10.0-release/sys/arm/broadcom/bcm2835/
H A Dbcm2835_fb.c511 int row, col; local
527 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
531 + (row + sc->ymargin)*(sc->stride)
761 bcmfb_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
763 *col = *row = 0;
769 bcmfb_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
903 int row; local
916 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
920 + (row + sc->ymargin)*(sc->stride)
/freebsd-10.0-release/sys/arm/versatile/
H A Dversatile_clcd.c532 int row, col; local
548 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
552 + (row + sc->ymargin)*(sc->stride)
749 versatilefb_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
751 *col = *row = 0;
757 versatilefb_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
871 int row; local
887 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
891 + (row + sc->ymargin)*(sc->stride)
/freebsd-10.0-release/sys/dev/terasic/mtl/
H A Dterasic_mtl.h188 uint8_t col, uint8_t row);
H A Dterasic_mtl_reg.c222 uint8_t row)
226 v = (col << TERASIC_MTL_TEXTCURSOR_COL_SHIFT) | row;
221 terasic_mtl_reg_textcursor_set(struct terasic_mtl_softc *sc, uint8_t col, uint8_t row) argument
/freebsd-10.0-release/sys/powerpc/ofw/
H A Dofw_syscons.c605 ofwfb_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
608 *row = 0;
614 ofwfb_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
802 int row; local
814 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
818 + (row + sc->sc_ymargin)*sc->sc_stride
859 int row; local
866 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
870 + (row + sc->sc_ymargin)*(sc->sc_stride/4)
/freebsd-10.0-release/contrib/dialog/
H A Dprogressbox.c90 print_line(MY_OBJ * obj, WINDOW *win, int row, int width) argument
95 (void) wmove(win, row, 0); /* move cursor to correct line */
H A Dtailbox.c84 print_line(MY_OBJ * obj, WINDOW *win, int row, int width) argument
89 (void) wmove(win, row, 0); /* move cursor to correct line */
H A Dbuildlist.c201 * Translate a choice from items[] to a row-number in an unbounded column,
256 * Convert a row-number back to an item number, i.e., index into items[].
259 row2index(ALL_DATA * data, int row, int selected) argument
265 if (row-- <= 0) {
275 skip_rows(ALL_DATA * data, int row, int skip, int selected) argument
277 int choice = row2index(data, row, selected);
278 int result = row;
666 dlg_trace_msg("\t...visit row %d (%d,%d)\n", cur_row, cur_y, cur_x);
684 dlg_trace_msg("MOUSE column %d, row %d ->item %d\n", j, i, k);
/freebsd-10.0-release/crypto/openssh/
H A Dsshpty.c189 pty_change_window_size(int ptyfd, u_int row, u_int col, argument
195 w.ws_row = row;
/freebsd-10.0-release/bin/ls/
H A Dprint.c240 int row; local
290 for (row = 0; row < numrows; ++row) {
293 base = row;
/freebsd-10.0-release/contrib/ee/
H A Dnew_curse.c159 #define cm__ 10 /* screen rel cursor motion, row, column */
706 int row, column; local
712 for (row = 0;
713 row < (min(origin->Num_lines, destination->Num_lines));
714 row++)
720 dest->row[column] = orig->row[column];
1470 tmp->row = malloc(columns + 1);
1476 tmp->row[i] = ' ';
1480 tmp->row[
2073 int column, row; local
2494 int row, column; local
2543 int row, column; local
2597 int row, column; local
[all...]
/freebsd-10.0-release/contrib/groff/src/preproc/tbl/
H A Dtable.cpp1001 int row; // occurs before row `row' member in struct:stuff
1011 stuff::stuff(int r) : next(0), row(r), printed(0)
1061 tbl->print_single_hline(row);
1082 tbl->print_double_hline(row);
1362 error("impossible horizontal span at row %1, column %2", r + 1, c + 1);
1374 error("first row cannot be vertically spanned");
1392 error("impossible vertical span at row %1, column %2", r + 1, c + 1);
1586 error_with_file_and_line(fn, ln, "row
1863 row_start_reg(int row) argument
1891 row_top_reg(int row) argument
[all...]
H A Dmain.cpp1093 // now reverse the list so that the first row is at the beginning
1123 int row; local
1132 row = f->nrows;
1137 row = 0;
1141 f->entry[row][col] = *tem;
1167 f->vline[row][col] = tem->pre_vline;
1169 f->vline[row][col+1] = tem->vline;
1171 row++;
1186 error("last row of format is all lines");
1243 // A format row tha
[all...]
/freebsd-10.0-release/contrib/ncurses/form/
H A Dfrm_driver.c130 /* Calculate the position of a single row in a field buffer */
131 #define Position_Of_Row_In_Buffer(field,row) ((row)*(field)->dcols)
137 /* Calculate the start address of the row in the fields specified buffer# N */
138 #define Address_Of_Row_In_Nth_Buffer(field,N,row) \
139 (Address_Of_Nth_Buffer(field,N) + Position_Of_Row_In_Buffer(field,row))
141 /* Calculate the start address of the row in the fields primary buffer */
142 #define Address_Of_Row_In_Buffer(field,row) \
143 Address_Of_Row_In_Nth_Buffer(field,0,row)
145 /* Calculate the start address of the row i
491 int row; local
532 int row, height; local
2310 Insert_String(FORM *form, int row, FIELD_CELL *txt, int len) argument
[all...]
/freebsd-10.0-release/sys/boot/i386/btx/btxldr/
H A Dbtxldr.S52 .set SCR_COL,0x50 # Columns per row
316 movb $SCR_COL,%al # Columns per row
317 mulb %dh # * row position
324 cmpb $SCR_COL,%dl # Beyond row?
327 incb %dh # Bump row
/freebsd-10.0-release/sys/arm/freescale/imx/
H A Dimx51_ipuv3.c655 ipu3fb_read_hw_cursor(video_adapter_t *adp, int *col, int *row) argument
658 *col = *row = 0;
663 ipu3fb_set_hw_cursor(video_adapter_t *adp, int col, int row) argument
795 int col, row, bpp; local
806 row = (off / adp->va_info.vi_width) * adp->va_info.vi_cheight;
810 + (row + sc->ymargin) * (sc->stride)
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dlinker.c1402 /* The symbol from the object file is turned into one of these row
1540 enum link_row row;
1546 row = INDR_ROW;
1548 row = WARN_ROW;
1550 row = SET_ROW;
1554 row = UNDEFW_ROW;
1556 row = UNDEF_ROW;
1559 row = DEFW_ROW;
1561 row = COMMON_ROW;
1563 row
1535 enum link_row row; local
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc-metadata.sql78 /* The PRISTINE table keeps track of pristine texts. Each row describes a
101 value that refers to this row. (References in other places, such as
115 on each node in the WC, relative to the NODES table row for the
116 same path. (A NODES row must exist if this node exists, but an
117 ACTUAL_NODE row can exist on its own if it is just recording info
121 The ACTUAL_NODE table row for a given path exists if the node at that
123 NODES row. ("Is known" because a text change on disk may not yet
126 The ACTUAL_NODE table row for a given path may also exist in other cases,
245 was performed. A row's 'op_depth' does NOT refer to the depth of its own
249 The row wit
[all...]

Completed in 482 milliseconds

1234567