| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | checkpatch.py | 126 def GetWarningMsg(col, msg_type, fname, line, msg): argument 136 msg_type = col.Color(col.YELLOW, msg_type) 138 msg_type = col.Color(col.RED, msg_type) 140 msg_type = col.Color(col.MAGENTA, msg_type) 146 col = terminal.Color() 155 result.warnings, result.checks, col.Color(col.BLUE, fname))) 161 GetWarningMsg(col, item.get('type', '<unknown>'), 168 color = col.GREEN 170 color = col.YELLOW 172 color = col.RED [all …]
|
| H A D | series.py | 106 col = terminal.Color() 116 print(col.Color(col.GREEN, ' %s' % args[upto])) 120 email = col.Color(col.YELLOW, "<alias '%s' not found>" 188 col = terminal.Color() 197 print(col.Color(col.RED, str)) 200 print(col.Color(col.RED, str)) 203 print(col.Color(col.RED, str)) 222 col = terminal.Color() 239 print(col.Color(col.YELLOW, 'Skipping "%s"' % x))
|
| H A D | patman.py | 134 col = terminal.Color() variable 137 sys.exit(col.Color(col.RED, str)) 171 print(col.Color(col.RED, "Not sending emails due to errors/warnings")) 177 print(col.Color(col.RED, "Email would not be sent"))
|
| H A D | patman | 134 col = terminal.Color() variable 137 sys.exit(col.Color(col.RED, str)) 171 print(col.Color(col.RED, "Not sending emails due to errors/warnings")) 177 print(col.Color(col.RED, "Email would not be sent"))
|
| H A D | terminal.py | 55 col = Color() 56 text = col.Color(colour, text) 85 col = Color() 86 print(col.Color(line.colour, line.text), end='')
|
| /rk3399_rockchip-uboot/drivers/ram/rockchip/ |
| H A D | sdram_common.c | 70 printdec(cap_info->col); in sdram_print_ddr_info() 143 cap[0] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap() 147 cap[1] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap() 153 cap[2] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap() 155 cap[3] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap() 191 *p_os_reg2 |= SYS_REG_ENC_COL(cap_info->col, channel); in sdram_org_config() 200 *p_os_reg3 |= SYS_REG_ENC_CS1_COL(cap_info->col, channel); in sdram_org_config() 221 *p_os_reg2 |= SYS_REG_ENC_COL_V3(cap_info->col, channel); in sdram_org_config_v3() 242 *p_os_reg3 |= SYS_REG_ENC_CS1_COL_V3(cap_info->col, channel); in sdram_org_config_v3() 260 u32 col; in sdram_detect_col() local [all …]
|
| H A D | sdram_rv1108_pctl_phy.c | 452 u32 row, col, row_max, col_max, bank_max; in sdram_detect() local 463 col_max = ddr_sch.col; in sdram_detect() 467 for (col = col_max; col >= 10; col--) { in sdram_detect() 470 (1ul << (col + bw - 1ul))); in sdram_detect() 476 if (col <= 9) in sdram_detect() 478 params_priv->ddr_config_t.col = col; in sdram_detect() 499 col_max = ddr_sch.col; in sdram_detect() 545 ((params_priv->ddr_config_t.col - 9) & SYS_REG_COL_MASK) << in sdram_all_config() 583 printdec(params_priv->ddr_config_t.col); in sdram_all_config() 590 params_priv->ddr_config_t.col + in sdram_all_config()
|
| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | control.py | 60 col = terminal.Color() 73 print ' ', col.Color(col.YELLOW, commit.hash[:8], bright=False), 112 col = terminal.Color() 123 print col.Color(col.BLUE, 'Available architectures: %s\n' % 130 print col.Color(col.CYAN, '\nDownloading toolchains: %s' % 163 sys.exit(col.Color(col.RED, msg)) 165 sys.exit(col.Color(col.RED, "Range '%s' has no commits" % 168 print col.Color(col.YELLOW, msg) 174 sys.exit(col.Color(col.RED, str)) 195 sys.exit(col.Color(col.RED, 'No matching boards found'))
|
| H A D | builder.py | 273 self.col = terminal.Color() 406 col = terminal.Color() 429 line = '\r' + self.col.Color(self.col.GREEN, '%5d' % ok) 430 line += self.col.Color(self.col.YELLOW, '%5d' % self.warned) 431 line += self.col.Color(self.col.RED, '%5d' % self.fail) 780 str = self.col.Color(color, ' ' + target) 782 str = ' %s %s' % (self.col.Color(color, char), str) 791 color = self.col.RED if num > 0 else self.col.GREEN 794 return self.col.Color(color, str(num)) 855 tuple([indent, self.col.Color(self.col.YELLOW, fname)] + args)) [all …]
|
| H A D | toolchain.py | 319 col = terminal.Color() 320 print col.Color(col.BLUE, 'List of available toolchains (%d):' % 536 col = terminal.Color() 537 print col.Color(col.BLUE, "Downloading toolchain for arch '%s'" % arch) 552 print col.Color(col.GREEN, 'Unpacking to: %s' % dest), 560 print col.Color(col.GREEN, 'Testing') 567 print col.Color(col.RED, 'Warning, ambiguous toolchains: %s' %
|
| H A D | test.py | 167 col = self._col 168 expected_colour = col.GREEN if ok else col.RED 171 expect += ' ' + col.Color(expected_colour, plus) 174 expect += col.Color(expected_colour, ' %s' % board) 211 col = terminal.Color() 219 self.assertEqual(lines[5].colour, col.MAGENTA) 238 self.assertEqual(lines[14].colour, col.GREEN) 242 self.assertEqual(lines[15].colour, col.MAGENTA)
|
| /rk3399_rockchip-uboot/common/ |
| H A D | cli_readline.c | 471 int num2, col; in cread_line() local 480 col = strlen(prompt) + eol_num; in cread_line() 482 if (cmd_auto_complete(prompt, buf, &num2, &col)) { in cread_line() 483 col = num2 - num; in cread_line() 484 num += col; in cread_line() 485 eol_num += col; in cread_line() 554 int col; /* output column cnt */ in cli_readline_into_buffer() local 562 col = plen; in cli_readline_into_buffer() 595 while (col > plen) { in cli_readline_into_buffer() 597 --col; in cli_readline_into_buffer() [all …]
|
| H A D | lcd_console_rotation.c | 16 int col, i; in lcd_putc_xy90() local 24 for (col = 0; col < VIDEO_FONT_WIDTH; ++col) { in lcd_putc_xy90() 118 int i, col; in lcd_putc_xy270() local 126 for (col = 0; col < VIDEO_FONT_WIDTH; ++col) { in lcd_putc_xy270()
|
| H A D | lcd_console.c | 19 void lcd_set_col(short col) in lcd_set_col() argument 21 cons.curr_col = col; in lcd_set_col() 29 void lcd_position_cursor(unsigned col, unsigned row) in lcd_position_cursor() argument 31 cons.curr_col = min_t(short, col, cons.cols - 1); in lcd_position_cursor() 225 unsigned int col, row; in do_lcd_setcursor() local 230 col = simple_strtoul(argv[1], NULL, 10); in do_lcd_setcursor() 232 lcd_position_cursor(col, row); in do_lcd_setcursor()
|
| /rk3399_rockchip-uboot/drivers/input/ |
| H A D | key_matrix.c | 42 if (keys[j].col == keys[i].col) in has_ghosting() 68 key->col); in key_matrix_decode() 71 pos = key->row * config->num_cols + key->col; in key_matrix_decode() 124 int key_code, row, col; in create_keymap() local 128 col = (tmp >> 16) & 0xff; in create_keymap() 130 entry = row * config->num_cols + col; in create_keymap() 132 debug(" map %d, %d: pos=%d, keycode=%d\n", row, col, in create_keymap()
|
| H A D | cros_ec_keyb.c | 53 unsigned int row, col, bit, data; in check_for_keys() local 71 for (col = num_keys = bit = 0; col < priv->matrix.num_cols; in check_for_keys() 72 col++) { in check_for_keys() 80 key->col = col; in check_for_keys()
|
| /rk3399_rockchip-uboot/drivers/mtd/nand/raw/ |
| H A D | mxc_nand.c | 732 uint16_t col; local 747 col = host->col_addr >> 1; 751 nfc_word.word = readw(&spare_buf[col]); 753 nfc_word.word = readw(&main_buf[col]); 771 uint16_t col, ret; local 776 col = host->col_addr; 778 if (col < mtd->writesize && host->spare_only) 779 col += mtd->writesize; 781 if (col < mtd->writesize) { 783 (col >> 1)); [all …]
|
| /rk3399_rockchip-uboot/scripts/kconfig/ |
| H A D | gconf.c | 574 GtkTreeViewColumn *col; in on_show_name1_activate() local 577 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_NAME); in on_show_name1_activate() 578 if (col) in on_show_name1_activate() 579 gtk_tree_view_column_set_visible(col, show_name); in on_show_name1_activate() 585 GtkTreeViewColumn *col; in on_show_range1_activate() local 588 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_NO); in on_show_range1_activate() 589 if (col) in on_show_range1_activate() 590 gtk_tree_view_column_set_visible(col, show_range); in on_show_range1_activate() 591 col = gtk_tree_view_get_column(GTK_TREE_VIEW(tree2_w), COL_MOD); in on_show_range1_activate() 592 if (col) in on_show_range1_activate() [all …]
|
| /rk3399_rockchip-uboot/include/dt-bindings/input/ |
| H A D | input.h | 14 #define MATRIX_KEY(row, col, code) \ argument 15 ((((row) & 0xFF) << 24) | (((col) & 0xFF) << 16) | ((code) & 0xFFFF))
|
| /rk3399_rockchip-uboot/arch/arm/cpu/arm1136/mx35/ |
| H A D | mx35_sdram.c | 41 u32 row, u32 col, u32 dsize, u32 refresh) in mx3_setup_sdram_bank() argument 62 if (row < 11 || row > 14 || col < 8 || col > 10) in mx3_setup_sdram_bank() 64 ctlval = (row - 11) << 24 | (col - 8) << 20 | (dsize << 16); in mx3_setup_sdram_bank()
|
| /rk3399_rockchip-uboot/lib/efi_loader/ |
| H A D | efi_gop.c | 132 u32 bpix, col, row; local 146 col = video_get_xsize(vdev); 155 col = panel_info.vl_col; 202 gopobj->info.width = col; 205 gopobj->info.pixels_per_scanline = col;
|
| /rk3399_rockchip-uboot/include/ |
| H A D | lcd_console.h | 48 void lcd_set_col(short col); 67 void lcd_position_cursor(unsigned col, unsigned row);
|
| /rk3399_rockchip-uboot/board/tqc/tqm834x/ |
| H A D | tqm834x.c | 259 long col; in get_ddr_bank_size() member 281 set_cs_config(cs, CSCONFIG_EN | conf[i].col | conf[i].row); in get_ddr_bank_size() 291 conf[i].col, in get_ddr_bank_size() 305 conf[detected].row, conf[detected].col, conf[detected].size >> 20, base); in get_ddr_bank_size() 309 conf[detected].col); in get_ddr_bank_size()
|
| /rk3399_rockchip-uboot/drivers/video/ |
| H A D | vidconsole-uclass.c | 222 void vidconsole_position_cursor(struct udevice *dev, unsigned col, unsigned row) in vidconsole_position_cursor() argument 228 priv->xcur_frac = VID_TO_POS(min_t(short, col, vid_priv->xsize - 1)); in vidconsole_position_cursor() 235 unsigned int col, row; in do_video_setcursor() local 243 col = simple_strtoul(argv[1], NULL, 10); in do_video_setcursor() 245 vidconsole_position_cursor(dev, col, row); in do_video_setcursor()
|
| H A D | console_rotate.c | 91 int i, col; in console_putc_xy_1() local 101 for (col = 0; col < VIDEO_FONT_HEIGHT; col++) { in console_putc_xy_1() 347 int i, col; in console_putc_xy_3() local 357 for (col = 0; col < VIDEO_FONT_HEIGHT; col++) { in console_putc_xy_3()
|