Searched defs:row (Results 1 - 25 of 66) sorted by relevance

123

/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwinsdel.c61 int row; local
80 row = w->_maxy + n;
89 row = w->_cury;
93 (void) __m_cc_erase(w, row, 0, row + abs(n), w->_maxx-1);
H A Dtgoto.c47 (tgoto)(const char *cap, int col, int row) argument
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);
H A Dprefresh.c83 int row, dy, dx; local
113 for (row = sminr; row <= smaxr; ++row)
114 (void) __m_cc_erase(ns, row, sminc, row, smaxc);
H A Dmvcur.c118 * row() adds the best sequence for moving the cursor from orow
121 * row() considers row_address, parm_up/down_cursor and cursor_up/down.
124 row(outseq, orow, nrow) function
146 /* try out direct row addressing */
403 /* try out independent row/column addressing */
405 row(try, oldrow, newrow);
413 /* try out homing and then row/column */
417 row(try, 0, newrow);
422 /* try out homing to last line and then row/column */
426 row(tr
[all...]
/illumos-gate/usr/src/lib/libcurses/screen/
H A Dtgoto.c52 tgoto(char *cap, int col, int row) argument
56 cp = tparm_p2(cap, row, col);
H A DV3.upd_old_y.c52 int row, col, num_cols; local
54 for (row = start_line; nlines > 0; nlines--, row++)
58 win->_y16[row][col] = _TO_OCHTYPE(win->_y[row][col]);
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwinsdel.c64 int row; local
77 row = w->_maxy + n;
84 row = w->_cury;
88 (void) __m_cc_erase(w, row, 0, row + abs(n) - 1, w->_maxx - 1);
H A Dtgoto.c52 tgoto(char *cap, int col, int row) argument
56 str = tparm((char *)cap, (long) row, (long) col,
H A Dwscrl.c69 int row; local
74 for (row = w->_top; row < w->_bottom; row++) {
75 if (row < w->_bottom - n) {
76 if (!w->_line[row+n][0]._f) {
81 (void) __m_cc_erase(w, row + n,
82 0, row + n, 0);
88 first = __m_cc_first(w, row + n,
90 save = w->_line[row
[all...]
H A Dprefresh.c79 int row, dy, dx; local
102 for (row = sminr; row < smaxr; ++row) {
103 (void) __m_cc_erase(ns, row, sminc, row, smaxc);
H A Dmvcur.c119 * row() adds the best sequence for moving the cursor from orow
122 * row() considers row_address, parm_up/down_cursor and cursor_up/down.
125 row(struct Sequence *outseq, int orow, int nrow) function
145 /* try out direct row addressing */
391 /* try out independent row/column addressing */
393 row(try, oldrow, newrow);
401 /* try out homing and then row/column */
405 row(try, 0, newrow);
410 /* try out homing to last line and then row/column */
414 row(tr
[all...]
/illumos-gate/usr/src/lib/smbsrv/libsmb/common/
H A Dsmb_status_tbl.c47 const smb_status_table_t *row = vrow; local
49 if (key->value == row->value)
51 if (key->value < row->value)
/illumos-gate/usr/src/cmd/mandoc/
H A Deqn_html.c33 struct tag *post, *row, *cell, *t; local
45 * column order, but must be printed in row-order.
61 /* Print row-by-row. */
65 row = print_otag(p, TAG_MTR, 0, NULL);
85 print_tagq(p, row);
/illumos-gate/usr/src/uts/i86pc/boot/
H A Dboot_vga.c122 int row; local
125 vga_getpos(&row, &col);
126 VGA_SCREEN[row*VGA_TEXT_COLS + col] = (color << 8) | c;
146 vga_setpos(int row, int col) argument
150 off = row * VGA_TEXT_COLS + col;
156 vga_getpos(int *row, int *col) argument
161 *row = off / VGA_TEXT_COLS;
/illumos-gate/usr/src/cmd/cmd-inet/usr.sbin/snoop/
H A Dsnoop_solarnet.c89 int new_row = 1, row = 0; local
222 "Row %d", ++row);
279 "Row %d", ++row);
/illumos-gate/usr/src/psm/promif/ieee1275/common/
H A Dprom_fb.c76 prom_get_tem_pos(uint32_t *row, uint32_t *col) argument
82 (uintptr_t)row, (uintptr_t)col, 0, 0, 0);
/illumos-gate/usr/src/lib/libeti/form/common/
H A Dchg_field.c111 int row = f->frow; local
116 while (f->frow != row);
125 int row = f->frow; local
130 while (f->frow != row);
139 int row = f->frow; local
145 while (f->frow == row && f->fcol != col);
147 if (f->frow != row) {
148 row = f->frow;
150 while (f->frow == row && f->fcol > col)
153 if (f->frow != row)
163 int row = f->frow; local
[all...]
H A Dutility.c157 int row, col; local
160 row = c->frow;
163 row = c -> frow + Y(f) - T(f);
167 (void) wmove(Sub(f), row, col); local
/illumos-gate/usr/src/common/lvm/
H A Dmd_convert.c130 uint_t row; local
148 for (row = 0; (row < un->un_nrows); row++)
149 ncomps += mdr[row].un_ncomp;
164 uint_t row; local
181 for (row = 0; (row < un->un_nrows); row++)
182 ncomps += mdr[row]
214 uint_t row, comp, ncomps = 0; local
[all...]
/illumos-gate/usr/src/uts/common/zmod/
H A Dcrc32.c381 unsigned long row; local
391 row = 1;
393 odd[n] = row;
394 row <<= 1;
/illumos-gate/usr/src/lib/libast/common/disc/
H A Dsfdcmore.c46 int row; /* current row */ member in struct:__anon2611
71 more->row = 2;
163 if (!more->row)
200 if (++more->row < more->rows)
229 more->row = 1;
238 more->row--;
242 more->row = 2;
246 more->row = 0;
289 more->row
[all...]
/illumos-gate/usr/src/uts/sparc/io/
H A Dconsplat.c242 plat_tem_get_prom_pos(uint32_t *row, uint32_t *col) argument
244 prom_get_tem_pos(row, col);
/illumos-gate/usr/src/uts/common/io/sfxge/common/
H A Defx_sram.c205 __in size_t row,
209 size_t offset = row * FR_AZ_SRM_DBG_REG_STEP;
220 __in size_t row,
224 _NOTE(ARGUNUSED(row))
234 __in size_t row,
238 _NOTE(ARGUNUSED(row))
247 __in size_t row,
251 _NOTE(ARGUNUSED(row))
260 __in size_t row,
264 size_t offset = row * FR_AZ_SRM_DBG_REG_STE
204 efx_sram_byte_increment_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
219 efx_sram_all_the_same_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
233 efx_sram_bit_alternate_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
246 efx_sram_byte_alternate_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
259 efx_sram_byte_changing_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
280 efx_sram_bit_sweep_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
[all...]
/illumos-gate/usr/src/boot/lib/libz/
H A Dcrc32.c361 unsigned long row; local
371 row = 1;
373 odd[n] = row;
374 row <<= 1;
/illumos-gate/usr/src/cmd/picl/plugins/sun4v/lib/snmp/
H A Dpdu.c60 snmp_create_pdu(int cmd, int max_reps, char *oidstrs, int n_oids, int row) argument
89 if (snmp_add_null_vars(pdu, oidstrs, n_oids, row) < 0) {
249 snmp_add_null_vars(snmp_pdu_t *pdu, char *oidstrs, int n_oids, int row) argument
269 p, row, &vp->name_len);
306 snmp_oidstr_to_oid(int cmd, char *oidstr, int row, size_t *n_subids) argument
322 * Add one more to count for 'row'. Need special processing
326 if ((cmd == SNMP_MSG_GET) || (cmd == SNMP_MSG_GETBULK && row > 0) ||
327 (cmd == SNMP_MSG_GETNEXT && row >= 0)) {
349 * For SNMP_MSG_GET, the leaf subid will simply be the row#.
351 * For SNMP_MSG_GETBULK, if the row# passe
[all...]

Completed in 112 milliseconds

123