Searched refs:row (Results 151 - 175 of 181) sorted by relevance

12345678

/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp1131 UnwindPlan::RowSP row(new UnwindPlan::Row);
1135 row->GetCFAValue().SetIsRegisterPlusOffset(dwarf_sp_mips, 0);
1138 row->SetRegisterLocationToRegister(dwarf_pc_mips, dwarf_ra_mips, can_replace);
1140 unwind_plan.AppendRow(row);
/freebsd-current/crypto/openssl/test/
H A Dsslapitest.c7107 OPENSSL_STRING *row = OPENSSL_zalloc(sizeof(row) * (DB_NUMBER + 1)); local
7113 if (!TEST_ptr(dummy) || !TEST_ptr(row))
7116 gNid = SRP_create_verifier_ex(userid, password, &row[DB_srpsalt],
7117 &row[DB_srpverifier], NULL, NULL, libctx, NULL);
7133 row[DB_srpid] = OPENSSL_strdup(userid);
7134 row[DB_srptype] = OPENSSL_strdup("V");
7135 row[DB_srpgN] = OPENSSL_strdup(gNid);
7137 if (!TEST_ptr(row[DB_srpid])
7138 || !TEST_ptr(row[DB_srptyp
[all...]
/freebsd-current/crypto/openssh/
H A Dsession.c1908 (r = sshpkt_get_u32(ssh, &s->row)) != 0 ||
1913 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
1933 (r = sshpkt_get_u32(ssh, &s->row)) != 0 ||
1965 pty_change_window_size(s->ptyfd, s->row, s->col, s->xpixel, s->ypixel);
/freebsd-current/contrib/kyua/store/
H A Dschema_v3.sql51 -- this table, the only "valid" row is the one with the highest
H A Dschema_v1.sql50 -- records. When extracting data from this table, the only "valid" row is
H A Dschema_v2.sql51 -- this table, the only "valid" row is the one with the highest
H A Dmigrate_v1_v2.sql138 -- We construct the contents by writing a row for every metadata property of
/freebsd-current/contrib/ofed/opensm/opensm/
H A Dosm_mesh.c395 * with row and col removed in poly. caller must free poly
397 static int sub_determinant(lash_t *p_lash, int n, int l, int row, int col, argument
425 if (i == row)
/freebsd-current/contrib/bmake/unit-tests/
H A Dvarmod-edge.mk205 # modifier for (',' missing)", having two spaces in a row.
/freebsd-current/sys/dev/syscons/
H A Dsyscons.c3223 int row; local
3298 vidd_read_hw_cursor(sc->adp, &col, &row);
3339 if (row >= scp->ysize)
3340 row = scp->ysize - 1;
3342 scp->ypos = row;
3343 scp->cursor_pos = scp->cursor_oldpos = row * scp->xsize + col;
/freebsd-current/sys/dev/qlnx/qlnxe/
H A Decore_dbg_fw_funcs.c3687 u32 row, i, offset = 0; local
3697 for (row = 0; row < VFC_CAM_NUM_ROWS; row++, offset += VFC_CAM_RESP_DWORDS) {
3699 SET_VAR_FIELD(cam_cmd, VFC_CAM_CMD, ROW, row);
3724 u32 row, i, offset = 0; local
3734 for (row = ram_defs->base_row; row < ram_defs->base_row + ram_defs->num_rows; row++, offset += VFC_RAM_RESP_DWORDS) {
3739 SET_VAR_FIELD(ram_addr, VFC_RAM_ADDR, ROW, row);
[all...]
/freebsd-current/sys/dev/igc/
H A Dif_igc.c2704 int i, j, row = 0; local
2711 j = 0; ++row;
2712 printf("\n0x00%x0 ",row);
/freebsd-current/sys/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300.h321 #define INI_RA(iniarray, row, column) (((iniarray)->ia_array)[(row) * ((iniarray)->ia_columns) + (column)])
/freebsd-current/sys/dev/ocs_fc/
H A Docs_utils.c170 uint32_t row = idx / array->elems_per_row; local
172 entry = ((uint8_t*)array->array_rows[row]) + (offset * array->size);
1991 * the root row always allocated. This gives five rows of 256 x sizeof(void*),
1997 * @brief Allocate a new sparse vector row.
2003 * A new sparse vector row is allocated.
2005 * @param rowcount Number of elements in a row.
2007 * @return Returns the pointer to a row.
2017 * @brief Delete row recursively.
2023 * @param a Pointer to the row.
2024 * @param n Number of elements in the row
[all...]
/freebsd-current/sys/dev/mlx4/mlx4_en/
H A Dmlx4_en_netdev.c2513 int row = 0; local
2518 while(row < len){
2519 printf("0x%04x\t\t",row);
2522 row++;
/freebsd-current/stand/common/
H A Dgfx_fb.c991 struct text_pixel *row; local
1002 row = &screen_buffer[p.tp_row * state->tg_tp.tp_col];
1005 row[p.tp_col].c = c;
1006 row[p.tp_col].a = *a;
/freebsd-current/contrib/ee/
H A Dee.c1003 int row; /* vertical position on screen */ local
1008 row = vertical;
1014 wmove(text_win, row, 0);
1025 wmove(text_win, row, column);
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c87 * row-based matchfinder. Unless the cdict is reloaded, we will use
220 /* Returns true if the strategy supports using a row based matchfinder */
225 /* Returns true if the strategy and useRowMatchFinder mode indicate that we will use the row based matchfinder
233 /* Returns row matchfinder usage given an initial mode and cParams */
241 if (mode != ZSTD_ps_auto) return mode; /* if requested enabled, but no SIMD, we still will use row matchfinder */
265 * We do not allocate a chaintable if we are using ZSTD_fast, or are using the row-based matchfinder.
1422 /* chain table size should be 0 for fast or row-hash strategies */
1522 /* Pick bigger of not using and using row-based matchfinder for greedy and lazy strategies */
1584 /* Pick bigger of not using and using row-based matchfinder for greedy and lazy strategies */
1729 /* disable chain table allocation for fast or row
6276 int row; local
[all...]
/freebsd-current/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c4236 int row = compressionLevel; local
4238 if (compressionLevel == 0) row = ZSTD_CLEVEL_DEFAULT; /* 0 == default */
4239 if (compressionLevel < 0) row = 0; /* entry 0 is baseline for fast mode */
4240 if (compressionLevel > ZSTD_MAX_CLEVEL) row = ZSTD_MAX_CLEVEL;
4241 { ZSTD_compressionParameters cp = ZSTD_defaultCParameters[tableID][row];
/freebsd-current/contrib/bsnmp/tests/
H A Dcatch.hpp6135 void printSummaryRow(std::string const& label, std::vector<SummaryColumn> const& cols, std::size_t row);
8629 std::string row, padding;
8635 row += padding + col;
8644 return row;
9485 auto row =
9489 os << row << std::endl;
16349 std::string row = rss.str();
16351 while (oldRow.size() < row.size())
16353 while (oldRow.size() > row.size())
16354 row
[all...]
/freebsd-current/sys/contrib/openzfs/module/zfs/
H A Dvdev_draid.c64 * First, let's define a "row" in the configuration to be a 16M chunk from
113 * l | group 4 | group 5..| | row 3
115 * c | ..group 5 | group 6.. | | row 4
117 * 1 |..group 6 | group 7 | | row 5
121 * l | group 8 | group 9..| | row 6
123 * c | ..group 9 | group 10.. | | row 7
125 * 2 |..group 10 | group 11 | | row 8
128 * This layout has several advantages over requiring that each row contain
142 * Each row is used to generate a permutation map for a different number
427 * once in every row, an
949 uint64_t row = (*perm * ((groupwidth * ngroups) / ndisks)) + local
[all...]
H A Dspa.c1228 * Each sets the entire row at a time.
1247 zio_taskq_info_t row[ZIO_TASKQ_TYPES] = {{0}}; local
1252 * Parse out each element from the string and fill `row`. The entire
1253 * row has to be set at once, so any errors are flagged by just
1286 row[q].zti_mode = ZTI_NMODES;
1340 row[q] = zti;
1346 row[q] = zti;
1352 row[q] = zti;
1366 row[q] = zti;
1375 if (row[
[all...]
/freebsd-current/stand/i386/btx/btx/
H A Dbtx.S93 .set SCR_COL,0x50 # Columns per row
909 movb $SCR_COL,%al # Columns per row
910 mulb %dh # * row position
917 cmpb $SCR_COL,%dl # Beyond row?
920 incb %dh # Bump row
/freebsd-current/sys/contrib/openzfs/cmd/zpool/
H A Dzpool_main.c4493 * ...or a dashed named-row line like:
4502 * @name: Print a dashed named-row line starting
11247 print_wait_status_row(wait_data_t *wd, zpool_handle_t *zhp, int row) argument
11276 row % (term_height-1) == 0);
11277 if (!wd->wd_scripted && (row == 0 || reprint_header)) {
11377 for (int row = 0; ; row++) {
11389 print_wait_status_row(wd, zhp, row);
/freebsd-current/sys/dev/e1000/
H A Dif_em.c4837 int i, j, row = 0; local
4848 j = 0; ++row;
4849 printf("\n0x00%x0 ",row);

Completed in 793 milliseconds

12345678