HomeSort by: relevance | last modified time | path
    Searched refs:row (Results 1 - 25 of 403) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/sys/external/gpl2/dts/dist/include/dt-bindings/input/
input.h 17 #define MATRIX_KEY(row, col, code) \
18 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
  /src/external/bsd/zstd/dist/tests/cli-tests/compression/
row-match-finder.sh 5 # Test --[no-]row-match-finder
6 zstd file -7f --row-match-finder
7 zstd file -7f --no-row-match-finder
  /src/games/rogue/
throw.c 68 short dir, row, col; local
95 row = rogue.row; col = rogue.col;
106 monster = get_thrown_at_monster(weapon, d, &row, &col);
107 mvaddch(rogue.row, rogue.col, rogue.fchar);
110 if (rogue_can_see(row, col) && ((row != rogue.row) || (col != rogue.col))){
111 mvaddch(row, col, get_dungeon_char(row, col))
267 static short row, col; local
    [all...]
trap.c 78 trap_at(int row, int col)
83 if ((traps[i].trap_row == row) && (traps[i].trap_col == col)) {
91 trap_player(short row, short col)
95 if ((t = trap_at(row, col)) == NO_TRAP) {
98 dungeon[row][col] &= (~HIDDEN);
113 mvaddch(rogue.row, rogue.col, '^');
146 short row, col; local
168 row = get_rand((rooms[party_room].top_row+1),
173 } while (((dungeon[row][col] & (OBJECT|STAIRS|TRAP|TUNNEL)) ||
174 (dungeon[row][col] == NOTHING)) && (tries < 15))
190 short dir, row, col, d, t; local
232 short s, i, j, row, col, t; local
    [all...]
zap.c 71 short dir, d, row, col; local
102 row = rogue.row; col = rogue.col;
104 bounce((short)wand->which_kind, d, row, col, 0);
106 monster = get_zapped_monster(d, &row, &col);
121 get_zapped_monster(short dir, short *row, short *col)
126 orow = *row; ocol = *col;
127 get_dir_rc(dir, row, col, 0);
128 if (((*row == orow) && (*col == ocol)) ||
129 (dungeon[*row][*col] & (HORWALL | VERTWALL)) |
144 short row, col; local
210 short row, col; local
    [all...]
monster.c 150 short row, col; local
159 gr_row_col(&row, &col, (FLOOR | TUNNEL | STAIRS | OBJECT));
160 put_m_at(row, col, monster);
205 mv_1_monster(monster, rogue.row, rogue.col);
221 !mon_can_go(monster, rogue.row, rogue.col)) {
223 mv_1_monster(monster, rogue.row, rogue.col);
228 if (!(flew && mon_can_go(monster, rogue.row, rogue.col))) {
229 mv_1_monster(monster, rogue.row, rogue.col);
249 short row, col; local
253 row = col = 0
631 short row, col, i; local
685 short row, col; local
765 short i, row, col; local
795 short i, row, col; local
    [all...]
move.c 72 short row, col; local
77 row = rogue.row;
84 get_dir_rc(d, &row, &col, 1);
86 if (!can_move(rogue.row, rogue.col, row, col)) {
90 if (!(dungeon[row][col] & MONSTER)) {
106 if (dungeon[row][col] & MONSTER) {
107 rogue_hit(object_at(&level_monsters, row, col), 0);
111 if (dungeon[row][col] & DOOR)
183 short row, col; local
244 short i, j, i_end, j_end, row, col; local
    [all...]
spec_hit.c 231 short row, col; local
233 row = monster->row;
236 dungeon[row][col] &= ~MONSTER;
237 if (rogue_can_see(row, col)) {
238 mvaddch(row, col, get_dungeon_char(row, col));
249 short row, col, i, n; local
265 row = monster->row;
484 short row, col, dir; local
    [all...]
hit.c 305 short row, col; local
310 row = monster->row;
312 dungeon[row][col] &= ~MONSTER;
313 mvaddch(row, col, get_dungeon_char(row, col));
336 short row, col; local
353 row = rogue.row; col = rogue.col;
354 get_dir_rc(d, &row, &col, 0)
    [all...]
  /src/external/bsd/kyua-cli/dist/utils/text/
table_test.cpp 159 text::table_row row; local
160 row.push_back("First");
161 row.push_back("Second");
162 row.push_back("Third");
163 table.add_row(row);
166 text::table_row row; local
167 row.push_back("Fourth with some text");
168 row.push_back("Fifth with some more text");
169 row.push_back("Sixth foo");
170 table.add_row(row);
185 text::table_row row; local
190 text::table_row row; local
207 text::table_row row; local
212 text::table_row row; local
230 text::table_row row; local
235 text::table_row row; local
253 text::table_row row; local
260 text::table_row row; local
279 text::table_row row; local
286 text::table_row row; local
306 text::table_row row; local
313 text::table_row row; local
345 text::table_row row; local
351 text::table_row row; local
359 text::table_row row; local
365 text::table_row row; local
    [all...]
  /src/usr.bin/systat/
iostat.c 103 int row; local
109 row = 0;
110 wmove(wnd, row, 0); wclrtobot(wnd);
111 mvwaddstr(wnd, row++, INSET,
113 mvwaddstr(wnd, row++, 0, " CPU user|");
114 mvwaddstr(wnd, row++, 0, " nice|");
115 mvwaddstr(wnd, row++, 0, " system|");
116 mvwaddstr(wnd, row++, 0, " interrupt|");
117 mvwaddstr(wnd, row++, 0, " idle|");
119 row = numlabels(row + 1)
204 int row, col; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
aarch64-sve-sigunwind.exp 70 for {set row 0} {$row < 32} {incr row} {
71 set register_name "\$z${row}\.b\.u"
78 for {set row 0} {$row < 16} {incr row} {
79 set register_name "\$p${row}"
92 for {set row 0} {$row < 32} {incr row}
    [all...]
  /src/external/mit/isl/dist/
isl_mat.c 46 row_hash = isl_seq_get_hash(mat->row[i], mat->n_col);
63 mat->row = NULL;
67 mat->row = isl_calloc_array(ctx, isl_int *, n_row);
68 if (n_row && !mat->row)
73 mat->row[i] = mat->block.data + i * n_col;
96 isl_int **row; local
116 isl_seq_cpy(new_mat->row[i], mat->row[i], mat->n_col);
129 row = isl_realloc_array(mat->ctx, mat->row, isl_int *, n_row)
645 int row, col; local
764 int k, row, last; local
839 int row, col; local
1011 int row; local
1127 int row; local
    [all...]
isl_tab.c 313 * row{1,2} is the number of rows in tableau {1,2}
339 isl_seq_cpy(prod->row[n + i], mat1->row[i], off + d1);
340 isl_seq_clr(prod->row[n + i] + off + d1, d2);
341 isl_seq_cpy(prod->row[n + i] + off + d1 + d2,
342 mat1->row[i] + off + d1, col1 - d1);
343 isl_seq_clr(prod->row[n + i] + off + col1 + d1, col2 - d2);
348 isl_seq_cpy(prod->row[n + i], mat2->row[i], off);
349 isl_seq_clr(prod->row[n + i] + off, d1)
1266 int row, col; local
1326 int row, col; local
1347 int row, col; local
1380 int row, col; local
1456 int row, col; local
1515 int row, col; local
1816 isl_int *row; local
1957 int row, col; local
2088 isl_int *row; local
2113 int row; local
2531 int row; local
2556 int row = tab->var[i].index; local
2582 int row; local
2691 isl_int *row; local
3317 int row; local
3369 int row, col; local
3450 int row; local
3508 int row, col; local
3919 int row; local
4095 int row; local
    [all...]
basis_reduction_tab.c 19 struct isl_vec *row; member in struct:tab_lp
91 static void set_lp_obj(struct tab_lp *lp, isl_int *row, int dim);
95 static int add_lp_row(struct tab_lp *lp, isl_int *row, int dim);
96 static void get_alpha(struct tab_lp* lp, int row, GBR_type *alpha);
98 static int cut_lp_to_hyperplane(struct tab_lp *lp, isl_int *row);
107 #define GBR_lp_add_row(lp, row, dim) add_lp_row(lp, row, dim)
108 #define GBR_lp_get_alpha(lp, row, alpha) get_alpha(lp, row, alpha)
118 static struct isl_tab *gbr_tab(struct isl_tab *tab, struct isl_vec *row)
    [all...]
isl_mat_private.h 18 isl_int **row; member in struct:isl_mat
33 __isl_give isl_mat *isl_mat_sub_alloc6(isl_ctx *ctx, isl_int **row,
39 isl_stat isl_mat_sub_transform(isl_int **row, unsigned n_row,
46 __isl_give isl_mat *isl_mat_scale_down_row(__isl_take isl_mat *mat, int row,
49 __isl_give isl_vec *isl_mat_get_row(__isl_keep isl_mat *mat, unsigned row);
55 isl_stat isl_mat_row_gcd(__isl_keep isl_mat *mat, int row, isl_int *gcd);
64 __isl_give isl_mat *isl_mat_row_neg(__isl_take isl_mat *mat, int row);
66 int isl_mat_get_element(__isl_keep isl_mat *mat, int row, int col, isl_int *v);
68 int row, int col, isl_int v);
  /src/external/gpl3/gdb.old/dist/sim/testsuite/common/
bits-tst.c 9 int row,
13 return MASKED (val, row, col);
15 return MASKED8 (val, row, col);
17 return MASKED16 (val, row, col);
19 return MASKED32 (val, row, col);
21 return MASKED64 (val, row, col);
24 return EXTRACTED (val, row, col);
26 return EXTRACTED8 (val, row, col);
28 return EXTRACTED16 (val, row, col);
30 return EXTRACTED32 (val, row, col)
223 int row; local
258 int row; local
    [all...]
  /src/external/gpl3/gdb/dist/sim/testsuite/common/
bits-tst.c 10 int row,
14 return MASKED (val, row, col);
16 return MASKED8 (val, row, col);
18 return MASKED16 (val, row, col);
20 return MASKED32 (val, row, col);
22 return MASKED64 (val, row, col);
25 return EXTRACTED (val, row, col);
27 return EXTRACTED8 (val, row, col);
29 return EXTRACTED16 (val, row, col);
31 return EXTRACTED32 (val, row, col)
224 int row; local
259 int row; local
    [all...]
  /src/lib/libform/
internals.c 85 /* used in add_char for initial memory allocation for string in row */
97 _formi_hscroll_back(FIELD *field, _FORMI_FIELD_LINES *row, unsigned int amt);
99 _formi_hscroll_fwd(FIELD *field, _FORMI_FIELD_LINES *row, unsigned int amt);
114 add_tab(FORM *form, _FORMI_FIELD_LINES *row, unsigned int i, char c);
116 tab_size(_FORMI_FIELD_LINES *row, unsigned int i);
118 tab_fit_len(_FORMI_FIELD_LINES *row, unsigned int len);
126 copy_row(_FORMI_FIELD_LINES *row);
131 * Calculate the cursor y position to make the given row appear on the
167 * Delete the given row and add it to the free list of the given field.
213 * Duplicate the given row, return the pointer to the new copy o
470 _FORMI_FIELD_LINES *temp, *row; local
506 _FORMI_FIELD_LINES *saved_row, *row, *row_backup, *saved_cur_line; local
711 _FORMI_FIELD_LINES *row = *rowp; local
887 _FORMI_FIELD_LINES *row = *rowp; local
1050 _FORMI_FIELD_LINES *row, *last = NULL; local
1143 _FORMI_FIELD_LINES *row; local
1218 _FORMI_FIELD_LINES *row; local
1507 _FORMI_FIELD_LINES *row; local
1753 _FORMI_FIELD_LINES *row, *temp, *next_temp; local
2062 _FORMI_FIELD_LINES *row, *rs; local
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-sql/
sql-wrap.c 130 backsql_BindRowAsStrings_x( SQLHSTMT sth, BACKSQL_ROW_NTS *row, void *ctx )
134 if ( row == NULL ) {
142 rc = SQLNumResultCols( sth, &row->ncols );
159 "ncols=%d\n", (int)row->ncols );
162 row->col_names = (BerVarray)ber_memcalloc_x( row->ncols + 1,
164 if ( row->col_names == NULL ) {
168 row->col_prec = (UDWORD *)ber_memcalloc_x( row->ncols,
170 if ( row->col_prec == NULL )
    [all...]
  /src/external/bsd/libfido2/dist/src/
log.c 73 char row[XXDROW], xxd[XXDLEN]; local
79 snprintf(row, sizeof(row), "buf=%p, len=%zu", buf, count);
81 do_log(row, fmt, args);
83 *row = '\0';
91 strlcat(row, xxd, sizeof(row));
93 fido_log_debug("%s", row);
94 *row = '\0';
  /src/external/apache2/llvm/dist/llvm/utils/
llvm-original-di-preservation.py 77 row = []
81 row.append(" <tr>\n")
82 row.append(file)
83 row.append(llvm_pass)
84 row.append(x.instr)
85 row.append(x.fn_name)
86 row.append(x.bb_name)
87 row.append(x.action)
88 row.append(" </tr>\n")
90 for column in row
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/lib/
aarch64.exp 107 for {set row 0} {$row < $rows} {incr row} {
121 # If this isn't the last row, add a comma.
122 if {[expr $row + 1] < $rows} {
135 # will do the initialization row by row.
136 for {set row 0} {$row < $rows} {incr row} {
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/lib/
aarch64.exp 107 for {set row 0} {$row < $rows} {incr row} {
121 # If this isn't the last row, add a comma.
122 if {[expr $row + 1] < $rows} {
135 # will do the initialization row by row.
136 for {set row 0} {$row < $rows} {incr row} {
    [all...]
  /src/sys/arch/bebox/stand/boot/
video.c 43 #define ROW (VRAM_WIDTH / FONT_WIDTH)
62 int row; member in struct:screen
77 d->row = 0;
88 (d->col * VRAM_WIDTH * FONT_HEIGHT) + (d->row * FONT_WIDTH);
100 d->row++;
110 (d->col * VRAM_WIDTH * FONT_HEIGHT) + (d->row * FONT_WIDTH);
148 } while (d->row % 8);
152 d->row--;
153 if (d->row < 0) {
156 d->row += ROW; /* prev column *
    [all...]

Completed in 33 milliseconds

1 2 3 4 5 6 7 8 91011>>