| /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 …]
|
| H A D | ssd0323.c | 61 int32_t col; member 81 s->framebuffer[s->col + s->row * 64] = data; in OBJECT_DECLARE_SIMPLE_TYPE() 86 s->col++; in OBJECT_DECLARE_SIMPLE_TYPE() 88 if (s->col > s->col_end) { in OBJECT_DECLARE_SIMPLE_TYPE() 89 s->col = s->col_start; in OBJECT_DECLARE_SIMPLE_TYPE() 92 s->col++; in OBJECT_DECLARE_SIMPLE_TYPE() 93 if (s->col > s->col_end) { in OBJECT_DECLARE_SIMPLE_TYPE() 95 s->col = s->col_start; in OBJECT_DECLARE_SIMPLE_TYPE() 115 s->col = s->col_start = s->cmd_data[0] % 64; in OBJECT_DECLARE_SIMPLE_TYPE() 306 if (s->col < 0 || s->col >= 64) { in ssd0323_post_load() [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/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>
|
| H A D | Overview.vue | 10 <b-col class="mb-3"> 12 </b-col> 13 <b-col class="mb-3"> 15 </b-col> 18 <b-col class="mb-3"> 20 </b-col> 21 <b-col class="mb-3"> 23 </b-col> 28 <b-col class="mb-3"> 30 </b-col> [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 …]
|
| H A D | test.py | 172 col = self._col 173 expected_colour = (col.GREEN if outcome == OUTCOME_OK else 174 col.YELLOW if outcome == OUTCOME_WARN else col.RED) 177 expect += ' ' + col.Color(expected_colour, plus) 180 expect += col.Color(expected_colour, ' %s' % board) 222 col = terminal.Color() 233 self.assertEqual(lines[5].colour, col.MAGENTA) 251 expect += ' ' + col.Color(col.GREEN, '') 253 expect += col.Color(col.GREEN, ' %s' % 'board2') 254 expect += ' ' + col.Color(col.YELLOW, 'w+') [all …]
|
| /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/u-boot/drivers/video/ |
| 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 | 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() 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 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()
|
| /openbmc/u-boot/include/ |
| H A D | video_osd.h | 83 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/u-boot/common/ |
| H A D | cli_readline.c | 474 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/qemu/tests/tcg/plugins/ |
| H A D | syscall.c | 100 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/u-boot/drivers/input/ |
| H A D | key_matrix.c | 41 if (keys[j].col == keys[i].col) in has_ghosting() 67 key->col); in key_matrix_decode() 70 pos = key->row * config->num_cols + key->col; in key_matrix_decode() 123 int key_code, row, col; in create_keymap() local 127 col = (tmp >> 16) & 0xff; in create_keymap() 129 entry = row * config->num_cols + col; in create_keymap() 131 debug(" map %d, %d: pos=%d, keycode=%d\n", row, col, in create_keymap()
|
| /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/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 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/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/ |
| 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 …]
|
| /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/webui-vue/src/views/SecurityAndAccess/Certificates/ |
| H A D | ModalGenerateCsr.vue | 17 <b-col lg="9"> 19 <b-col lg="6"> 42 </b-col> 43 <b-col lg="6"> 66 </b-col> 69 <b-col lg="6"> 85 </b-col> 86 <b-col lg="6"> 102 </b-col> 105 <b-col lg="6"> [all …]
|
| /openbmc/openbmc/poky/bitbake/lib/prserv/ |
| H A D | db.py | 209 col = {} 210 col["name"] = row["name"] 211 col["type"] = row["type"] 212 col["notnull"] = row["notnull"] 213 col["dflt_value"] = row["dflt_value"] 214 col["pk"] = row["pk"] 215 metainfo["col_info"].append(col) 246 col = {} 247 col["version"] = row["version"] 248 col["pkgarch"] = row["pkgarch"] [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"> 74 </b-col> 75 <b-col md="9" lg="8" xl="9"> 77 <b-col> 96 </b-col> 99 <b-col sm="6" xl="4"> 120 </b-col> 121 <b-col sm="6" xl="4"> [all …]
|