Home
last modified time | relevance | path

Searched refs:col (Results 1 – 25 of 360) sorted by relevance

12345678910>>...15

/openbmc/qemu/hw/display/
H A Dcirrus_vga_rop2.h50 unsigned int col; in glue() local
72 col = cirrus_src(s, src1addr + pattern_x); in glue()
75 col = cirrus_src16(s, src1addr + pattern_x); in glue()
80 col = cirrus_src(s, src2addr) | in glue()
86 col = cirrus_src32(s, src1addr + pattern_x); in glue()
89 PUTPIXEL(s, addr, col); in glue()
108 unsigned int col; in glue() local
121 col = s->cirrus_blt_bgcol; in glue()
124 col = s->cirrus_blt_fgcol; in glue()
138 PUTPIXEL(s, addr, col); in glue()
[all …]
/openbmc/qemu/target/arm/tcg/
H A Dsme_helper.c819 intptr_t row, col, oprsz = simd_oprsz(desc) / 4; in DO_ST() local
827 for (col = 0; col < oprsz; ) { in DO_ST()
828 uint64_t pb = pm[col >> 4]; in DO_ST()
831 zda[tile_vslice_index(row) + H4(col)] += zn[H4(col)]; in DO_ST()
834 } while (++col & 15); in DO_ST()
845 intptr_t row, col, oprsz = simd_oprsz(desc) / 8; in HELPER() local
851 for (col = 0; col < oprsz; ++col) { in HELPER()
852 if (pm[H1(col)] & 1) { in HELPER()
853 zda[tile_vslice_index(row) + col] += zn[col]; in HELPER()
863 intptr_t row, col, oprsz = simd_oprsz(desc) / 4; in HELPER() local
[all …]
/openbmc/linux/tools/testing/selftests/bpf/progs/
H A Diters.c399 int sum, row, col; in iter_nested_iters() local
404 bpf_for( col, 0, ARRAY_SIZE(arr2d[0])) { in iter_nested_iters()
405 arr2d[row][col] = row * col; in iter_nested_iters()
414 bpf_for(col, 0, ARRAY_SIZE(arr2d[0])) { in iter_nested_iters()
415 arr2d_col_sums[col] = 0; in iter_nested_iters()
420 bpf_for(col, 0, ARRAY_SIZE(arr2d[0])) { in iter_nested_iters()
421 sum += arr2d[row][col]; in iter_nested_iters()
422 arr2d_row_sums[row] += arr2d[row][col]; in iter_nested_iters()
423 arr2d_col_sums[col] += arr2d[row][col]; in iter_nested_iters()
431 bpf_for(col, 0, ARRAY_SIZE(arr2d[0])) { in iter_nested_iters()
[all …]
/openbmc/u-boot/tools/patman/
H A Dcheckpatch.py125 def GetWarningMsg(col, msg_type, fname, line, msg): argument
135 msg_type = col.Color(col.YELLOW, msg_type)
137 msg_type = col.Color(col.RED, msg_type)
139 msg_type = col.Color(col.MAGENTA, msg_type)
145 col = terminal.Color()
154 result.warnings, result.checks, col.Color(col.BLUE, fname)))
160 GetWarningMsg(col, item.get('type', '<unknown>'),
167 color = col.GREEN
169 color = col.YELLOW
171 color = col.RED
[all …]
H A Dseries.py105 col = terminal.Color()
115 print(col.Color(col.GREEN, ' %s' % args[upto]))
119 email = col.Color(col.YELLOW, "<alias '%s' not found>"
187 col = terminal.Color()
196 print(col.Color(col.RED, str))
199 print(col.Color(col.RED, str))
202 print(col.Color(col.RED, str))
222 col = terminal.Color()
239 print(col.Color(col.YELLOW, 'Skipping "%s"' % x))
/openbmc/linux/drivers/input/keyboard/
H A Domap-keypad.c72 int col = 0; in omap_kp_scan_keypad() local
79 for (col = 0; col < omap_kp->cols; col++) { in omap_kp_scan_keypad()
80 omap_writew(~(1 << col) & 0xff, in omap_kp_scan_keypad()
85 state[col] = ~omap_readw(OMAP1_MPUIO_BASE + in omap_kp_scan_keypad()
98 int col, row; in omap_kp_tasklet() local
104 for (col = 0; col < omap_kp_data->cols; col++) { in omap_kp_tasklet()
105 changed = new_state[col] ^ keypad_state[col]; in omap_kp_tasklet()
106 key_down |= new_state[col]; in omap_kp_tasklet()
115 printk(KERN_INFO "omap-keypad: key %d-%d %s\n", col, in omap_kp_tasklet()
116 row, (new_state[col] & (1 << row)) ? in omap_kp_tasklet()
[all …]
H A Dmatrix_keypad.c48 int col, bool on) in __activate_col() argument
53 gpio_direction_output(pdata->col_gpios[col], level_on); in __activate_col()
55 gpio_set_value_cansleep(pdata->col_gpios[col], !level_on); in __activate_col()
57 gpio_direction_input(pdata->col_gpios[col]); in __activate_col()
62 int col, bool on) in activate_col() argument
64 __activate_col(pdata, col, on); in activate_col()
73 int col; in activate_all_cols() local
75 for (col = 0; col < pdata->num_col_gpios; col++) in activate_all_cols()
76 __activate_col(pdata, col, on); in activate_all_cols()
123 int row, col, code; in matrix_keypad_scan() local
[all …]
H A Dimx_keypad.c82 int col; in imx_keypad_scan_matrix() local
85 for (col = 0; col < MAX_MATRIX_KEY_COLS; col++) { in imx_keypad_scan_matrix()
86 if ((keypad->cols_en_mask & (1 << col)) == 0) in imx_keypad_scan_matrix()
114 reg_val &= ~(1 << (8 + col)); in imx_keypad_scan_matrix()
128 matrix_volatile_state[col] = (~reg_val) & keypad->rows_en_mask; in imx_keypad_scan_matrix()
148 int row, col; in imx_keypad_fire_events() local
150 for (col = 0; col < MAX_MATRIX_KEY_COLS; col++) { in imx_keypad_fire_events()
154 if ((keypad->cols_en_mask & (1 << col)) == 0) in imx_keypad_fire_events()
157 bits_changed = keypad->matrix_stable_state[col] ^ in imx_keypad_fire_events()
158 matrix_volatile_state[col]; in imx_keypad_fire_events()
[all …]
H A Dtwl4030_keypad.c150 static inline u16 twl4030_col_xlate(struct twl4030_keypad *kp, u8 col) in twl4030_col_xlate() argument
158 if (col == 0xFF) in twl4030_col_xlate()
161 return col & ((1 << kp->n_cols) - 1); in twl4030_col_xlate()
183 u16 col = key_state[i]; in twl4030_is_in_ghost_state() local
185 if ((col & check) && hweight16(col) > 1) in twl4030_is_in_ghost_state()
188 check |= col; in twl4030_is_in_ghost_state()
198 int col, row; in twl4030_kp_scan() local
221 for (col = 0; col < kp->n_cols + 1; col++) { in twl4030_kp_scan()
224 if (!(changed & (1 << col))) in twl4030_kp_scan()
227 dev_dbg(kp->dbg_dev, "key [%d:%d] %s\n", row, col, in twl4030_kp_scan()
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Dtable.js207 var col = tableData.columns[i];
208 if (col.displayable === false) {
212 header.prop("class", col.field_name);
215 if (col.help_text.length > 0) {
217 help_text.tooltip({title: col.help_text});
222 if (col.orderable) {
225 title.data('field-name', col.field_name);
226 title.attr('data-sort-field', col.field_name);
227 title.text(col.title);
236 if (col.field_name === tableParams.orderby ||
[all …]
/openbmc/u-boot/tools/buildman/
H A Dcontrol.py61 col = terminal.Color()
74 print ' ', col.Color(col.YELLOW, commit.hash[:8], bright=False),
86 print col.Color(col.YELLOW, warning)
138 col = terminal.Color()
149 print col.Color(col.BLUE, 'Available architectures: %s\n' %
156 print col.Color(col.CYAN, '\nDownloading toolchains: %s' %
189 sys.exit(col.Color(col.RED, msg))
191 sys.exit(col.Color(col.RED, "Range '%s' has no commits" %
194 print col.Color(col.YELLOW, msg)
200 sys.exit(col.Color(col.RED, str))
[all …]
/openbmc/linux/arch/mips/loongson64/
H A Dnuma.c53 static int __init compute_node_distance(int row, int col) in compute_node_distance() argument
57 int package_col = col * loongson_sysconf.cores_per_node / in compute_node_distance()
60 if (col == row) in compute_node_distance()
70 int row, col; in init_topology_matrix() local
73 for (col = 0; col < MAX_NUMNODES; col++) in init_topology_matrix()
74 __node_distances[row][col] = -1; in init_topology_matrix()
77 for_each_online_node(col) { in init_topology_matrix()
78 __node_distances[row][col] = in init_topology_matrix()
79 compute_node_distance(row, col); in init_topology_matrix()
/openbmc/u-boot/common/
H A Dcli_readline.c474 int num2, col; in cread_line() local
483 col = strlen(prompt) + eol_num; in cread_line()
485 if (cmd_auto_complete(prompt, buf, &num2, &col)) { in cread_line()
486 col = num2 - num; in cread_line()
487 num += col; in cread_line()
488 eol_num += col; in cread_line()
557 int col; /* output column cnt */ in cli_readline_into_buffer() local
565 col = plen; in cli_readline_into_buffer()
598 while (col > plen) { in cli_readline_into_buffer()
600 --col; in cli_readline_into_buffer()
[all …]
/openbmc/u-boot/drivers/video/
H A Dvidconsole-uclass.c175 static void set_cursor_position(struct vidconsole_priv *priv, int row, int col) in set_cursor_position() argument
182 if (col >= priv->cols) in set_cursor_position()
183 col = priv->cols - 1; in set_cursor_position()
187 VID_TO_POS(col * priv->x_charsize); in set_cursor_position()
198 int *row, int *col) in get_cursor_position() argument
201 *col = VID_TO_PIXEL(priv->xcur_frac - priv->xstart_frac) / in get_cursor_position()
232 int col = priv->col_saved; in vidconsole_escape_char() local
234 set_cursor_position(priv, row, col); in vidconsole_escape_char()
264 int row, col; in vidconsole_escape_char() local
273 s = parsenum(s, &col); in vidconsole_escape_char()
[all …]
H A Dvideo_osd-uclass.c18 int video_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf, in video_osd_set_mem() argument
23 return ops->set_mem(dev, col, row, buf, buflen, count); in video_osd_set_mem()
26 int video_osd_set_size(struct udevice *dev, uint col, uint row) in video_osd_set_size() argument
30 return ops->set_size(dev, col, row); in video_osd_set_size()
33 int video_osd_print(struct udevice *dev, uint col, uint row, ulong color, in video_osd_print() argument
38 return ops->print(dev, col, row, color, text); in video_osd_print()
H A Dsandbox_osd.c41 int sandbox_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf, in sandbox_osd_set_mem() argument
49 pos = 2 * (row * priv->width + col); in sandbox_osd_set_mem()
60 int _sandbox_osd_set_size(struct udevice *dev, uint col, uint row) in _sandbox_osd_set_size() argument
66 priv->width = col; in _sandbox_osd_set_size()
84 int sandbox_osd_set_size(struct udevice *dev, uint col, uint row) in sandbox_osd_set_size() argument
86 return _sandbox_osd_set_size(dev, col, row); in sandbox_osd_set_size()
89 int sandbox_osd_print(struct udevice *dev, uint col, uint row, ulong color, in sandbox_osd_print() argument
97 if (col >= priv->width || row >= priv->height) in sandbox_osd_print()
121 pos = row * priv->width + col; in sandbox_osd_print()
/openbmc/webui-vue/src/views/Overview/
H A DOverviewNetwork.vue8 <b-col sm="6">
13 </b-col>
14 <b-col sm="6">
21 </b-col>
24 <b-col>
31 </b-col>
32 <b-col>
45 </b-col>
/openbmc/linux/drivers/tty/vt/
H A Dvc_screen.c251 unsigned int nr, row, col, maxcol = vc->vc_cols; in vcs_read_buf_uni() local
260 col = pos % maxcol; in vcs_read_buf_uni()
261 nr = maxcol - col; in vcs_read_buf_uni()
265 vc_uniscr_copy_line(vc, con_buf, viewed, row, col, nr); in vcs_read_buf_uni()
269 col = 0; in vcs_read_buf_uni()
280 unsigned int col, maxcol = vc->vc_cols; in vcs_read_buf_noattr() local
283 col = pos % maxcol; in vcs_read_buf_noattr()
284 pos += maxcol - col; in vcs_read_buf_noattr()
288 if (++col == maxcol) { in vcs_read_buf_noattr()
290 col = 0; in vcs_read_buf_noattr()
[all …]
/openbmc/u-boot/drivers/mtd/nand/raw/
H A Dmxc_nand.c731 uint16_t col; local
746 col = host->col_addr >> 1;
750 nfc_word.word = readw(&spare_buf[col]);
752 nfc_word.word = readw(&main_buf[col]);
770 uint16_t col, ret; local
775 col = host->col_addr;
777 if (col < mtd->writesize && host->spare_only)
778 col += mtd->writesize;
780 if (col < mtd->writesize) {
782 (col >> 1));
[all …]
/openbmc/qemu/tests/tcg/plugins/
H A Dsyscall.c100 for (guint col = 0; col < 16; col++) { in hexdump() local
101 if (index + col < data->len) { in hexdump()
102 g_string_append_printf(out, "%02x ", data->data[index + col]); in hexdump()
110 for (guint col = 0; col < 16; col++) { in hexdump() local
111 if (index + col >= data->len) { in hexdump()
115 if (g_ascii_isgraph(data->data[index + col])) { in hexdump()
116 g_string_append_printf(out, "%c", data->data[index + col]); in hexdump()
/openbmc/webui-vue/src/views/SecurityAndAccess/Certificates/
H A DModalGenerateCsr.vue16 <b-col lg="9">
18 <b-col lg="6">
41 </b-col>
42 <b-col lg="6">
65 </b-col>
68 <b-col lg="6">
84 </b-col>
85 <b-col lg="6">
101 </b-col>
104 <b-col lg="6">
[all …]
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-extended/hplip/hplip/
H A D0001-Drop-using-register-storage-classifier.patch81 - register uint32_t col;
83 + uint32_t col;
108 - register JDIMENSION col;
113 + JDIMENSION col;
125 - register JDIMENSION col;
130 + JDIMENSION col;
142 - register JDIMENSION col;
147 + JDIMENSION col;
157 - register JDIMENSION col;
160 + JDIMENSION col;
[all …]
/openbmc/u-boot/include/
H A Dvideo_osd.h83 int (*set_mem)(struct udevice *dev, uint col, uint row, u8 *buf,
95 int (*set_size)(struct udevice *dev, uint col, uint row);
113 int (*print)(struct udevice *dev, uint col, uint row, ulong color,
160 int video_osd_set_mem(struct udevice *dev, uint col, uint row, u8 *buf,
172 int video_osd_set_size(struct udevice *dev, uint col, uint row);
189 int video_osd_print(struct udevice *dev, uint col, uint row, ulong color,
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/
H A Dwidgets.py178 for col in self.columns:
179 if col['title'] == title:
180 col['hidden'] = hidden
187 for col in self.columns:
188 if col['title'] == title:
189 col['hideable'] = hideable
338 for col in self.columns:
339 field = col['field_name']
341 field = col['static_data_name']
346 (self.__class__.__name__, col)
[all …]
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/
H A Dbootstrap.min.css5col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-l…

12345678910>>...15