Searched refs:row (Results 1 - 25 of 155) sorted by relevance

1234567

/freebsd-10.0-release/usr.bin/systat/
H A Diostat.c175 int row; local
177 row = 0;
178 wmove(wnd, row, 0); wclrtobot(wnd);
179 mvwaddstr(wnd, row++, INSET,
181 mvwaddstr(wnd, row++, 0, "cpu user|");
182 mvwaddstr(wnd, row++, 0, " nice|");
183 mvwaddstr(wnd, row++, 0, " system|");
184 mvwaddstr(wnd, row++, 0, "interrupt|");
185 mvwaddstr(wnd, row++, 0, " idle|");
187 row
193 numlabels(int row) argument
234 barlabels(int row) argument
261 int i, row, _col; local
307 devstats(int row, int _col, int dn) argument
345 stat1(int row, int o) argument
[all...]
H A Dicmp.c108 #define L(row, str) mvwprintw(wnd, row, 10, str)
109 #define R(row, str) mvwprintw(wnd, row, 45, str);
119 #define B(row, str) L(row, str); R(row, str)
191 #define DO(stat, row, col) \
192 mvwprintw(wnd, row, col, "%9lu", stats.stat)
204 #define DO2(type, row) D
[all...]
H A Dicmp6.c106 #define L(row, str) mvwprintw(wnd, row, 10, str)
107 #define R(row, str) mvwprintw(wnd, row, 45, str);
116 #define B(row, str) L(row, str); R(row, str)
188 #define DO(stat, row, col) \
189 mvwprintw(wnd, row, col, "%9lu", stats.stat)
199 #define DO2(type, row) D
[all...]
H A Dtcp.c114 #define L(row, str) mvwprintw(wnd, row, 13, str)
115 #define R(row, str) mvwprintw(wnd, row, 51, str);
236 #define DO(stat, row, col) \
237 mvwprintw(wnd, row, col, "%12lu", stats.stat)
238 #define L(row, stat) DO(stat, row, 0)
239 #define R(row, stat) DO(stat, row, 3
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/base/
H A Dwresize.c55 int row; local
74 for (row = 0; row <= tst->_maxy; ++row) {
75 tst->_line[row].text = &pline[tst->_pary + row].text[tst->_parx];
91 int col, row, size_x, size_y; local
148 for (row = 0; row <= ToLines; ++row) {
[all...]
H A Dlib_vline.c49 NCURSES_SIZE_T row, col; local
56 row = win->_cury;
58 end = row + n - 1;
68 while (end >= row) {
H A Dlib_instr.c49 int i = 0, row, col; local
57 getyx(win, row, col);
64 cchar_t *cell = &(win->_line[row].text[col]);
102 str[i++] = (char) CharOf(win->_line[row].text[col]);
/freebsd-10.0-release/contrib/ncurses/menu/
H A Dm_item_top.c44 | Function : int set_top_row(MENU *menu, int row)
46 | Description : Makes the specified row the top row in the menu
49 | E_BAD_ARGUMENT - not a menu pointer or invalid row
53 set_top_row(MENU * menu, int row) argument
57 T((T_CALLED("set_top_row(%p,%d)"), menu, row));
66 if ((row < 0) || (row > (menu->rows - menu->arows)))
72 if (row != menu->toprow)
77 item = menu->items[(menu->opt & O_ROWMAJOR) ? (row * men
[all...]
H A Dmenu.priv.h93 specified row as the top row of the window. If this is not possible,
94 the top row will be adjusted and the value is stored in the row argument.
96 #define Adjust_Current_Item(menu,row,item) \
97 { if ((item)->y < row) \
98 row = (item)->y;\
99 if ( (item)->y >= (row + (menu)->arows) )\
100 row = ( (item)->y < ((menu)->rows - row) )
[all...]
H A Dm_global.c68 0, /* Top row of menu */
386 int col = 0, row = 0; local
401 Last_in_Row = row * Number_Of_Columns + (Number_Of_Columns - 1);
416 (cycle ? menu->items[row * Number_Of_Columns] :
422 item->up = (row) ? menu->items[i - Number_Of_Columns] :
431 (cycle ? menu->items[(row + 1) < menu->rows ?
435 item->y = row;
438 row++;
449 item = menu->items[i = (col * Number_Of_Rows + row)];
451 Last_in_Column = (menu->cols - 1) * Number_Of_Rows + row;
[all...]
/freebsd-10.0-release/contrib/ncurses/ncurses/widechar/
H A Dlib_in_wch.c47 int row, col; local
53 getyx(win, row, col);
55 *wcval = win->_line[row].text[col];
H A Dlib_vline_set.c48 NCURSES_SIZE_T row, col; local
55 row = win->_cury;
57 end = row + n - 1;
67 while (end >= row) {
H A Dlib_in_wchnstr.c53 int row, col; local
56 getyx(win, row, col);
58 src = &(win->_line[row].text[col]);
H A Dlib_inwstr.c47 int row, col, inx; local
56 getyx(win, row, col);
58 text = win->_line[row].text;
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp504 UnwindPlan::RowSP row(new UnwindPlan::Row);
521 row->SetOffset (current_func_text_offset);
522 row->SetCFARegister (m_lldb_sp_regnum);
523 row->SetCFAOffset (m_wordsize);
527 row->SetRegisterInfo (m_lldb_sp_regnum, initial_regloc);
532 row->SetRegisterInfo (m_lldb_ip_regnum, initial_regloc);
534 unwind_plan.AppendRow (row);
538 *newrow = *row.get();
539 row.reset(newrow);
563 row
[all...]
/freebsd-10.0-release/contrib/dialog/
H A Dcolumns.c26 #define each(row, data) \
27 row = 0, data = target; \
28 row < num_rows; \
29 ++row, data = next_row(data, per_row)
96 int row; local
109 for (each(row, value)) {
124 for (each(row, value)) {
139 for (each(row, value)) {
167 int row; local
171 for (each(row, valu
[all...]
/freebsd-10.0-release/lib/libiconv_modules/MSKanji/
H A Dcitrus_mskanji.c286 _index_t col, row; local
331 row = ((_wc_t)wc >> 8) & 0xFF;
333 if (!_mskanji1(row) || !_mskanji2(col))
335 if ((ei->mode & MODE_JIS2004) == 0 || row < 0xF0) {
347 row -= offset;
348 if (row >= 0x5F)
349 row -= 0x40;
350 row = row * 2 + 0x21;
355 row
369 uint32_t col, row; local
[all...]
/freebsd-10.0-release/crypto/openssl/apps/
H A Dsrp.c177 static int update_index(CA_DB *db, BIO *bio, char **row) argument
190 irow[i]=row[i];
191 row[i]=NULL;
590 char **row = sk_OPENSSL_PSTRING_value(db->db->data, userindex); local
592 row[DB_srptype][0] = 'V';
598 char *row[DB_NUMBER] ; char *gNid; local
599 row[DB_srpverifier] = NULL;
600 row[DB_srpsalt] = NULL;
601 row[DB_srpinfo] = NULL;
602 if (!(gNid = srp_create_user(user,&(row[DB_srpverifie
637 char **row = sk_OPENSSL_PSTRING_value(db->db->data, userindex); local
[all...]
/freebsd-10.0-release/contrib/apr-util/dbd/
H A Dapr_dbd_sqlite2.c135 apr_dbd_row_t *row = *rowp; local
138 if (row == NULL) {
139 row = apr_palloc(pool, sizeof(apr_dbd_row_t));
140 *rowp = row;
141 row->res = res;
142 row->n = sequential ? 0 : rownum - 1;
146 ++row->n;
149 row->n = rownum - 1;
153 if (row->n >= res->ntuples) {
179 row
184 dbd_sqlite_get_entry(const apr_dbd_row_t * row, int n) argument
193 dbd_sqlite_datum_get(const apr_dbd_row_t *row, int n, apr_dbd_type_e type, void *data) argument
[all...]
H A Dapr_dbd_mysql.c83 MYSQL_ROW row; member in struct:apr_dbd_row_t
96 /** The row this bucket refers to */
97 const apr_dbd_row_t *row; member in struct:apr_bucket_lob
109 const apr_dbd_row_t *row, int col,
112 static apr_bucket *apr_bucket_lob_create(const apr_dbd_row_t *row, int col,
142 const apr_dbd_row_t *row = a->row; local
143 apr_dbd_results_t *res = row->res;
195 const apr_dbd_row_t *row, int col,
202 f->row
194 apr_bucket_lob_make(apr_bucket *b, const apr_dbd_row_t *row, int col, apr_off_t offset, apr_size_t len, apr_pool_t *p) argument
212 apr_bucket_lob_create(const apr_dbd_row_t *row, int col, apr_off_t offset, apr_size_t len, apr_pool_t *p, apr_bucket_alloc_t *list) argument
277 dbd_mysql_get_row(apr_pool_t *pool, apr_dbd_results_t *res, apr_dbd_row_t **row, int rownum) argument
364 dbd_mysql_get_entry(const apr_dbd_row_t *row, int n) argument
389 dbd_mysql_datum_get(const apr_dbd_row_t *row, int n, apr_dbd_type_e type, void *data) argument
[all...]
H A Dapr_dbd_pgsql.c232 apr_dbd_row_t *row = *rowp; local
235 if (row == NULL) {
236 row = apr_palloc(pool, sizeof(apr_dbd_row_t));
237 *rowp = row;
238 row->res = res;
240 row->n = 0;
244 row->n = --rownum;
247 return -1; /* invalid row */
253 ++row->n;
257 row
308 dbd_pgsql_get_entry(const apr_dbd_row_t *row, int n) argument
313 dbd_pgsql_datum_get(const apr_dbd_row_t *row, int n, apr_dbd_type_e type, void *data) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp442 UnwindPlan::RowSP row(cie_initial_row);
461 // required action is to create a new table row with a location
464 // values in the new row are initially identical to the current row.
465 unwind_plan.AppendRow(row);
467 *newrow = *row.get();
468 row.reset (newrow);
469 row->SlideOffset(extended_opcode * code_align);
483 row->SetRegisterInfo (reg_num, reg_location);
499 row
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/svn/
H A Dmergeinfo-cmd.c87 int row, col;
159 for (row = 0; row < ROWS; row++)
161 if (g[row][col] && ((int)strlen(g[row][col]) > col_width[col]))
162 col_width[col] = (int)strlen(g[row][col]);
176 /* Print the diagram, row by row */
177 for (row
85 int row, col; local
[all...]
/freebsd-10.0-release/sys/dev/sfxge/common/
H A Defx_sram.c174 __in size_t row,
178 size_t offset = row * FR_AZ_SRM_DBG_REG_STEP;
189 __in size_t row,
193 _NOTE(ARGUNUSED(row))
203 __in size_t row,
207 _NOTE(ARGUNUSED(row))
216 __in size_t row,
220 _NOTE(ARGUNUSED(row))
229 __in size_t row,
233 size_t offset = row * FR_AZ_SRM_DBG_REG_STE
173 efx_sram_byte_increment_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
188 efx_sram_all_the_same_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
202 efx_sram_bit_alternate_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
215 efx_sram_byte_alternate_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
228 efx_sram_byte_changing_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
249 efx_sram_bit_sweep_set( __in size_t row, __in boolean_t negate, __out efx_qword_t *eqp) argument
[all...]
/freebsd-10.0-release/sys/dev/nand/
H A Dnand_generic.c240 /* Set proper column and row cycles */
354 uint32_t row, uint32_t column)
361 if (nand_send_address(nand, row, column, -1))
380 uint32_t row; local
389 page_to_row(&chip->chip_geom, page, &row);
391 if (send_read_page(nand, NAND_CMD_READ, NAND_CMD_READ_END, row,
414 uint32_t row; local
425 page_to_row(&chip->chip_geom, page, &row);
429 if (send_read_page(nand, NAND_CMD_READ, NAND_CMD_READ_END, row,
444 send_start_program_page(device_t nand, uint32_t row, uint32_ argument
353 send_read_page(device_t nand, uint8_t start_command, uint8_t end_command, uint32_t row, uint32_t column) argument
477 uint32_t row; local
518 uint32_t row; local
557 uint32_t row; local
590 send_erase_block(device_t nand, uint32_t row, uint8_t second_command) argument
615 int row; local
651 int row; local
723 send_small_read_page(device_t nand, uint8_t start_command, uint32_t row, uint32_t column) argument
748 uint32_t row; local
788 uint32_t row; local
821 uint32_t row; local
865 uint32_t row; local
899 nand_send_address(device_t nand, int32_t row, int32_t col, int8_t id) argument
[all...]

Completed in 212 milliseconds

1234567