/openbmc/qemu/hw/display/ |
H A D | cirrus_vga_rop2.h | 50 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 D | sme_helper.c | 819 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/openbmc/meta-openembedded/meta-oe/recipes-extended/hplip/hplip/ |
H A D | 0001-Drop-using-register-storage-classifier.patch | 81 - 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/openbmc/poky/bitbake/lib/toaster/toastergui/static/css/ |
H A D | bootstrap.min.css | 5 …col-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…
|
H A D | bootstrap.css | 1616 …col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, … 1622 .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, … 1625 .col-xs-12 { 1628 .col-xs-11 { 1631 .col-xs-10 { 1634 .col-xs-9 { 1637 .col-xs-8 { 1640 .col-xs-7 { 1643 .col-xs-6 { 1646 .col-xs-5 { [all …]
|
/openbmc/u-boot/tools/patman/ |
H A D | checkpatch.py | 125 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 D | series.py | 105 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 D | matrix_keypad.c | 48 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 D | omap-keypad.c | 72 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 D | imx_keypad.c | 82 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() 124 * 1s in matrix_volatile_state[col] means key pressures 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() [all …]
|
/openbmc/webui-vue/src/views/SecurityAndAccess/Certificates/ |
H A D | ModalGenerateCsr.vue | 16 <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/poky/bitbake/lib/toaster/toastergui/templates/ |
H A D | mrb_section.html | 27 <div class="col-md-12"> 38 <div class="col-md-12"> 49 <div class="col-md-3"> 89 <div class="col-md-5"> 97 <div class="col-md-4"> 106 <div data-role="build-status" class="col-md-4 col-md-offset-1 progress-info"> 116 <div class="col-md-4 progress-info"> 131 <div data-role="build-status" class="col-md-4 col-md-offset-1 progress-info"> 141 <div class="col-md-4 progress-info"> 155 <div class="col-md-5"> [all …]
|
H A D | command_line_builds.html | 18 <div class="col-md-12"> 21 <div class="col-md-6"> 25 <div class="col-md-6"> 44 <div class="col-md-6" style="padding-left: 20px;"> 47 <div class="col-md-3"> {{ form.eventlog_file}} </div> 50 <div class="col-md-6"> 61 <div class="col-md-8 "> 72 …<table class="table col-md-6 table-bordered table-hover" id="eventlog-table" style="border-collaps… 75 <th scope="col">Name</th> 76 <th scope="col">Size</th> [all …]
|
/openbmc/u-boot/tools/buildman/ |
H A D | control.py | 61 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/webui-vue/src/views/Overview/ |
H A D | OverviewNetwork.vue | 8 <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/u-boot/drivers/input/ |
H A D | key_matrix.c | 41 if (keys[j].col == keys[i].col) in has_ghosting() 66 debug(" valid=%d, row=%d, col=%d\n", key->valid, key->row, in key_matrix_decode() 67 key->col); in key_matrix_decode() 70 pos = key->row * config->num_cols + key->col; in key_matrix_decode() 74 /* Convert the (row, col) values into a keycode */ in key_matrix_decode() 94 * word per entry, with the row, col and keycode encoded in that word. 96 * We create a (row x col) size byte array with each entry containing the 97 * keycode for that (row, col). We also search for map_keycode and return 123 int key_code, row, col; in create_keymap() local 127 col = (tmp >> 16) & 0xff; in create_keymap() [all …]
|
/openbmc/webui-vue/src/views/SecurityAndAccess/Ldap/ |
H A D | Ldap.vue | 7 <b-col> 21 </b-col> 31 <b-col md="3" lg="4" xl="3"> 70 </b-col> 71 <b-col md="9" lg="8" xl="9"> 73 <b-col> 92 </b-col> 95 <b-col sm="6" xl="4"> 116 </b-col> 117 <b-col sm="6" xl="4"> [all …]
|
/openbmc/u-boot/drivers/mtd/nand/raw/ |
H A D | mxc_nand.c | 731 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 773 pr_debug("mxc_nand_read_word(col = %d)\n", host->col_addr); 775 col = host->col_addr; 777 if (col < mtd->writesize && host->spare_only) 778 col += mtd->writesize; 780 if (col < mtd->writesize) { [all …]
|
/openbmc/u-boot/drivers/video/ |
H A D | sandbox_osd.c | 41 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()
|
H A D | video_osd-uclass.c | 18 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 D | vidconsole-uclass.c | 173 * @col: new column 175 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() 195 * @col: column 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() [all …]
|
/openbmc/linux/arch/mips/loongson64/ |
H A D | numa.c | 53 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/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/ |
H A D | table.js | 207 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/webui-vue/src/views/Settings/Network/ |
H A D | NetworkInterfaceSettings.vue | 5 <b-col md="3"> 12 </b-col> 13 <b-col md="3"> 20 </b-col> 25 <b-col md="3"> 34 </b-col> 35 <b-col md="3"> 53 </b-col>
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/ |
H A D | widgets.py | 178 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 …]
|