Searched refs:row (Results 101 - 125 of 158) sorted by relevance

1234567

/linux-master/drivers/usb/typec/ucsi/
H A Ducsi_ccg.c973 ccg_cmd_write_flash_row(struct ucsi_ccg *uc, u16 row, argument
997 /* writing of data to the desired flash row */
1002 put_unaligned_le16(row, &p[2]);
1007 if (row == 510)
1014 dev_err(uc->dev, "write flash row failed ret=%d\n", ret);
1162 int err, row, len, line_sz, line_cnt = 0; local
1239 * rrrr is row number to flash (4 char)
1269 row = get_unaligned_be16(wr_buf);
1277 err = ccg_cmd_write_flash_row(uc, row, wr_buf + 4,
1286 dev_info(dev, "total %d row flashe
[all...]
/linux-master/drivers/gpu/drm/i915/
H A Di915_vma.c973 unsigned int column, row; local
980 for (row = 0; row < height; row++) {
1086 unsigned int row; local
1094 for (row = 0; row < height; row++) {
H A Di915_irq.c174 * it is likely the same row is more likely to go bad again.
181 u32 error_status, row, bank, subbank; local
213 row = GEN7_PARITY_ERROR_ROW(error_status);
221 parity_event[1] = kasprintf(GFP_KERNEL, "ROW=%d", row);
232 slice, row, bank, subbank);
/linux-master/fs/ubifs/
H A Ddebug.h286 int row, int col);
/linux-master/drivers/media/platform/nvidia/tegra-vde/
H A Dh264.c190 unsigned int row,
195 trace_vde_setup_iram_entry(table, row, value1, value2);
197 iram_tables[0x20 * table + row * 2 + 0] = value1;
198 iram_tables[0x20 * table + row * 2 + 1] = value2;
188 tegra_vde_setup_iram_entry(struct tegra_vde *vde, unsigned int table, unsigned int row, u32 value1, u32 value2) argument
/linux-master/drivers/edac/
H A Dskx_common.h170 int row; member in struct:decoded_addr
H A Dskx_base.c557 r->row = skx_bits(r->rank_address, dimm->rowbits, skx_close_row);
563 r->row = skx_bits(r->rank_address, dimm->rowbits, skx_open_row);
571 r->row &= (1u << dimm->rowbits) - 1;
573 edac_dbg(2, "0x%llx: row=0x%x col=0x%x bank_addr=%d bank_group=%d\n",
574 r->addr, r->row, r->column, r->bank_address,
/linux-master/drivers/input/keyboard/
H A Dtegra-kbc.c26 /* Maximum row/column supported by Tegra KBC yet is 16x8 */
33 /* KBC row scan time and delay for beginning the row scan. */
160 unsigned int row = (val >> 3) & 0x0f; local
162 MATRIX_SCAN_CODE(row, col, KBC_ROW_SHIFT);
179 * any 2 of the 3 keys share a row, and any 2 of them share a column.
189 * Find 2 keys such that one key is in the same row
194 u8 row = scancodes[j] >> KBC_ROW_SHIFT; local
198 if (row == curr_row)
459 "pin_cfg[%d]: invalid row numbe
[all...]
H A Dadp5588-keys.c537 int row = (key_val - 1) / ADP5588_COLS_MAX; local
539 int code = MATRIX_SCAN_CODE(row, col, kpad->row_shift);
543 key_val, row, col, kpad->keycode[code]);
/linux-master/drivers/cxl/core/
H A Dtrace.h418 __field(u32, row)
443 __entry->row = get_unaligned_le24(rec->row);
451 "bank_group=%u bank=%u row=%u column=%u cor_mask=%s " \
459 __entry->row, __entry->column,
/linux-master/drivers/gpu/drm/tegra/
H A Dhub.c352 unsigned int ratio, row, column; local
355 for (row = 0; row <= 15; row++) {
357 unsigned int index = (ratio << 6) + (row << 2) + column;
/linux-master/lib/zstd/compress/
H A Dzstd_lazy.c758 /* Constants for row-based hash */
759 #define ZSTD_ROW_HASH_TAG_OFFSET 16 /* byte offset of hashes in the match state's tagTable from the beginning of a row */
762 #define ZSTD_ROW_HASH_MAX_ENTRIES 64 /* absolute maximum number of entries per row, for all configurations */
823 * Returns the next index to insert at within a tagTable row, and updates the "head"
824 * value to reflect the update. Essentially cycles backwards from [0, {entries per row})
841 * Performs prefetching for the hashTable and tagTable at a given row.
854 assert(ZSTD_isAligned(hashTable + relRow, 64)); /* prefetched hash row always 64-byte aligned */
874 U32 const row = (hash >> ZSTD_ROW_HASH_TAG_BITS) << rowLog; local
875 ZSTD_row_prefetch(hashTable, tagTable, row, rowLog);
894 U32 const row local
920 U32* const row = hashTable + relRow; local
1186 U32* const row = hashTable + relRow; local
[all...]
/linux-master/drivers/net/ethernet/sfc/
H A Dmae.c1833 * it in the appropriate bits of @row. @value must be big-endian; we
1837 __le32 *row, size_t row_bits,
1859 row[wn] |= cpu_to_le32(v & 0xffffffff);
1861 row[wn + 1] |= cpu_to_le32(v >> 32);
1867 __le32 *row, size_t row_bits, bool value)
1873 return efx_mae_table_populate(field, row, row_bits, &v, 1);
1877 __le32 *row, size_t row_bits, __be32 value)
1885 return efx_mae_table_populate(field, row, row_bits, &v, sizeof(v));
1889 __le32 *row, size_t row_bits, u32 value)
1897 return efx_mae_table_populate(field, row, row_bit
1836 efx_mae_table_populate(struct efx_tc_table_field_fmt field, __le32 *row, size_t row_bits, void *value, size_t value_size) argument
1866 efx_mae_table_populate_bool(struct efx_tc_table_field_fmt field, __le32 *row, size_t row_bits, bool value) argument
1876 efx_mae_table_populate_ipv4(struct efx_tc_table_field_fmt field, __le32 *row, size_t row_bits, __be32 value) argument
1888 efx_mae_table_populate_u24(struct efx_tc_table_field_fmt field, __le32 *row, size_t row_bits, u32 value) argument
[all...]
/linux-master/drivers/net/can/peak_canfd/
H A Dpeak_canfd.c159 static int pucan_set_std_filter(struct peak_canfd_priv *priv, u8 row, u32 mask) argument
167 * row while the lowest 5 bits select the bit in that row.
174 /* select the row */
175 cmd->idx = row;
177 /* set/unset bits in the row */
/linux-master/arch/x86/kernel/
H A Duprobes.c46 #define W(row, b0, b1, b2, b3, b4, b5, b6, b7, b8, b9, ba, bb, bc, bd, be, bf)\
51 << (row % 32))
/linux-master/tools/power/pm-graph/
H A Dsleepgraph.py1875 'row': 0, 'color': color, 'order': count}
1990 'par': parent, 'length': length, 'row': 0, 'id': devid, 'drv': drv }
2229 self.row = 0
2747 self.scaleH = scaleheight # timescale (top) row height
2748 self.rowH = rowheight # device row height
2783 item.row = -1
2788 row = 1
2789 # try to pack each row with as many ranges as possible
2791 if(row not in rowdata):
2792 rowdata[row]
[all...]
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_engine_types.h75 u32 row[GEN_MAX_GSLICES][I915_MAX_SUBSLICES]; member in struct:intel_instdone
/linux-master/tools/perf/ui/browsers/
H A Dannotate.c89 static void annotate_browser__write(struct ui_browser *browser, void *entry, int row) argument
94 const bool is_current_entry = ui_browser__is_current_entry(browser, row);
96 .first_line = row == 0,
/linux-master/net/sched/
H A Dsch_htb.c78 struct rb_root row; member in union:htb_prio::__anon3044
172 /* time of nearest event per level (row) */
355 * htb_add_class_to_row - add class to its row
360 * The class is added to row at priorities marked in mask.
370 htb_add_to_id_tree(&q->hlevel[cl->level].hprio[prio].row, cl, prio);
387 * htb_remove_class_from_row - removes class from its row
392 * The class is removed from row at priorities marked in mask.
409 htb_safe_rb_erase(cl->node + prio, &hprio->row);
410 if (!hprio->row.rb_node)
823 BUG_ON(!hprio->row
[all...]
/linux-master/drivers/input/misc/
H A Diqs7222.c1493 enum iqs7222_reg_grp_id reg_grp, int row)
1497 return iqs7222->cycle_setup[row];
1503 return iqs7222->btn_setup[row];
1506 return iqs7222->chan_setup[row];
1512 return iqs7222->sldr_setup[row];
1518 return iqs7222->gpio_setup[row];
1492 iqs7222_setup(struct iqs7222_private *iqs7222, enum iqs7222_reg_grp_id reg_grp, int row) argument
/linux-master/drivers/net/ethernet/mellanox/mlxsw/
H A Dspectrum_acl_erp.c377 unsigned int row; local
380 row = erp->index / erp_core->num_erp_banks;
381 *p_erpt_index = erp_table->base_index + row * entry_size;
573 /* Initially, allocate a single eRP row. Expand later as needed */
591 * only a single eRP row is currently allocated.
/linux-master/sound/soc/codecs/
H A Dcs42l42-sdw.c401 cs42l42->sclk, params->col, params->row);
/linux-master/drivers/soundwire/
H A Dgeneric_bandwidth_allocation.c320 bus->params.row = sdw_rows[r];
/linux-master/arch/mips/pci/
H A Dpci-octeon.c604 mem_access.s.row = 0; /* Relax Order on write. */
/linux-master/mm/kasan/
H A Dkasan.h361 void kasan_metadata_fetch_row(char *buffer, void *row);

Completed in 470 milliseconds

1234567