| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aorb/ |
| H A D | orb_algos.cpp | 241 center.col += keypoints->col1; in get_trusted_four_points() 245 center.col = center.col / matched_keypoints->length; in get_trusted_four_points() 258 if (keypoints->col1 < center.col && in get_trusted_four_points() 260 subx = keypoints->col1 - center.col; in get_trusted_four_points() 266 src[0].col = keypoints->col1; in get_trusted_four_points() 268 dst[0].col = keypoints->col2; in get_trusted_four_points() 273 if (keypoints->col1 > center.col && in get_trusted_four_points() 275 subx = keypoints->col1 - center.col; in get_trusted_four_points() 281 src[1].col = keypoints->col1; in get_trusted_four_points() 283 dst[1].col = keypoints->col2; in get_trusted_four_points() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/ram/rockchip/ |
| H A D | sdram_common.c | 57 printdec(cap_info->col); in sdram_print_ddr_info() 130 cap[0] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap() 134 cap[1] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap() 140 cap[2] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap() 142 cap[3] = 1llu << (cap_info->bw + cap_info->col + in sdram_get_cs_cap() 178 *p_os_reg2 |= SYS_REG_ENC_COL(cap_info->col, channel); in sdram_org_config() 187 *p_os_reg3 |= SYS_REG_ENC_CS1_COL(cap_info->col, channel); in sdram_org_config() 208 *p_os_reg2 |= SYS_REG_ENC_COL_V3(cap_info->col, channel); in sdram_org_config_v3() 229 *p_os_reg3 |= SYS_REG_ENC_CS1_COL_V3(cap_info->col, channel); in sdram_org_config_v3() 247 u32 col; in sdram_detect_col() local [all …]
|
| /OK3568_Linux_fs/u-boot/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))
|
| /OK3568_Linux_fs/yocto/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 …]
|
| /OK3568_Linux_fs/kernel/drivers/input/keyboard/ |
| H A D | omap-keypad.c | 71 int col = 0; in omap_kp_scan_keypad() local 78 for (col = 0; col < omap_kp->cols; col++) { in omap_kp_scan_keypad() 79 omap_writew(~(1 << col) & 0xff, in omap_kp_scan_keypad() 84 state[col] = ~omap_readw(OMAP1_MPUIO_BASE + in omap_kp_scan_keypad() 97 int col, row; in omap_kp_tasklet() local 103 for (col = 0; col < omap_kp_data->cols; col++) { in omap_kp_tasklet() 104 changed = new_state[col] ^ keypad_state[col]; in omap_kp_tasklet() 105 key_down |= new_state[col]; in omap_kp_tasklet() 114 printk(KERN_INFO "omap-keypad: key %d-%d %s\n", col, in omap_kp_tasklet() 115 row, (new_state[col] & (1 << row)) ? in omap_kp_tasklet() [all …]
|
| H A D | matrix_keypad.c | 47 int col, bool on) in __activate_col() argument 52 gpio_direction_output(pdata->col_gpios[col], level_on); in __activate_col() 54 gpio_set_value_cansleep(pdata->col_gpios[col], !level_on); in __activate_col() 56 gpio_direction_input(pdata->col_gpios[col]); in __activate_col() 61 int col, bool on) in activate_col() argument 63 __activate_col(pdata, col, on); in activate_col() 72 int col; in activate_all_cols() local 74 for (col = 0; col < pdata->num_col_gpios; col++) in activate_all_cols() 75 __activate_col(pdata, col, on); in activate_all_cols() 122 int row, col, code; in matrix_keypad_scan() local [all …]
|
| H A D | imx_keypad.c | 81 int col; in imx_keypad_scan_matrix() local 84 for (col = 0; col < MAX_MATRIX_KEY_COLS; col++) { in imx_keypad_scan_matrix() 85 if ((keypad->cols_en_mask & (1 << col)) == 0) in imx_keypad_scan_matrix() 113 reg_val &= ~(1 << (8 + col)); in imx_keypad_scan_matrix() 127 matrix_volatile_state[col] = (~reg_val) & keypad->rows_en_mask; in imx_keypad_scan_matrix() 147 int row, col; in imx_keypad_fire_events() local 149 for (col = 0; col < MAX_MATRIX_KEY_COLS; col++) { in imx_keypad_fire_events() 153 if ((keypad->cols_en_mask & (1 << col)) == 0) in imx_keypad_fire_events() 156 bits_changed = keypad->matrix_stable_state[col] ^ in imx_keypad_fire_events() 157 matrix_volatile_state[col]; in imx_keypad_fire_events() [all …]
|
| H A D | twl4030_keypad.c | 150 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 …]
|
| H A D | samsung-keypad.c | 82 unsigned int col; in samsung_keypad_scan() local 85 for (col = 0; col < keypad->cols; col++) { in samsung_keypad_scan() 88 val &= ~(1 << col) << 8; in samsung_keypad_scan() 91 val &= ~(1 << col); in samsung_keypad_scan() 98 row_state[col] = ~val & ((1 << keypad->rows) - 1); in samsung_keypad_scan() 113 unsigned int col, row; in samsung_keypad_report() local 115 for (col = 0; col < keypad->cols; col++) { in samsung_keypad_report() 116 changed = row_state[col] ^ keypad->row_state[col]; in samsung_keypad_report() 117 key_down |= row_state[col]; in samsung_keypad_report() 125 pressed = row_state[col] & (1 << row); in samsung_keypad_report() [all …]
|
| H A D | clps711x-keypad.c | 37 int col, row; in clps711x_keypad_poll() local 39 for (col = 0; col < CLPS711X_KEYPAD_COL_COUNT; col++) { in clps711x_keypad_poll() 43 SYSCON1_KBDSCAN(8 + col)); in clps711x_keypad_poll() 57 if (test_bit(col, data->last_state) != state) { in clps711x_keypad_poll() 58 int code = MATRIX_SCAN_CODE(row, col, in clps711x_keypad_poll() 62 set_bit(col, data->last_state); in clps711x_keypad_poll() 66 clear_bit(col, data->last_state); in clps711x_keypad_poll()
|
| H A D | cros_ec_keyb.c | 160 int col, row; in cros_ec_keyb_process() local 174 for (col = 0; col < ckdev->cols; col++) { in cros_ec_keyb_process() 176 int pos = MATRIX_SCAN_CODE(row, col, ckdev->row_shift); in cros_ec_keyb_process() 179 new_state = kb_state[col] & (1 << row); in cros_ec_keyb_process() 180 old_state = ckdev->old_kb_state[col] & (1 << row); in cros_ec_keyb_process() 184 row, col, new_state); in cros_ec_keyb_process() 191 ckdev->old_kb_state[col] = kb_state[col]; in cros_ec_keyb_process() 293 int row, col; in cros_ec_keyb_compute_valid_keys() local 300 for (col = 0; col < ckdev->cols; col++) { in cros_ec_keyb_compute_valid_keys() 302 code = keymap[MATRIX_SCAN_CODE(row, col, row_shift)]; in cros_ec_keyb_compute_valid_keys() [all …]
|
| /OK3568_Linux_fs/u-boot/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'))
|
| /OK3568_Linux_fs/kernel/drivers/tty/vt/ |
| H A D | vc_screen.c | 251 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 …]
|
| /OK3568_Linux_fs/u-boot/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 …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/qvm/ |
| H A D | mat.hpp | 74 read_element_idx( int row, int col, this_matrix const & x ) in read_element_idx() 78 BOOST_QVM_ASSERT(col>=0); in read_element_idx() 79 BOOST_QVM_ASSERT(col<Cols); in read_element_idx() 80 return x.a[row][col]; in read_element_idx() 86 write_element_idx( int row, int col, this_matrix & x ) in write_element_idx() 90 BOOST_QVM_ASSERT(col>=0); in write_element_idx() 91 BOOST_QVM_ASSERT(col<Cols); in write_element_idx() 92 return x.a[row][col]; in write_element_idx()
|
| H A D | mat_traits_array.hpp | 67 read_element_idx( int row, int col, this_matrix const & x ) in read_element_idx() 71 BOOST_QVM_ASSERT(col>=0); in read_element_idx() 72 BOOST_QVM_ASSERT(col<Cols); in read_element_idx() 73 return x[row][col]; in read_element_idx() 79 write_element_idx( int row, int col, this_matrix & x ) in write_element_idx() 83 BOOST_QVM_ASSERT(col>=0); in write_element_idx() 84 BOOST_QVM_ASSERT(col<Cols); in write_element_idx() 85 return x[row][col]; in write_element_idx()
|
| /OK3568_Linux_fs/u-boot/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 …]
|
| /OK3568_Linux_fs/yocto/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 …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/ |
| H A D | widgets.py | 175 for col in self.columns: 176 if col['title'] == title: 177 col['hidden'] = hidden 184 for col in self.columns: 185 if col['title'] == title: 186 col['hideable'] = hideable 334 for col in self.columns: 335 field = col['field_name'] 337 field = col['static_data_name'] 342 (self.__class__.__name__, col) [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/qvm/detail/ |
| H A D | transp_impl.hpp | 90 read_element_idx( int row, int col, this_matrix const & x ) in read_element_idx() 94 BOOST_QVM_ASSERT(col>=0); in read_element_idx() 95 BOOST_QVM_ASSERT(col<cols); in read_element_idx() 96 …return mat_traits<OriginalMatrix>::read_element_idx(col,row,reinterpret_cast<OriginalMatrix const … in read_element_idx() 102 write_element_idx( int row, int col, this_matrix & x ) in write_element_idx() 106 BOOST_QVM_ASSERT(col>=0); in write_element_idx() 107 BOOST_QVM_ASSERT(col<cols); in write_element_idx() 108 …return mat_traits<OriginalMatrix>::write_element_idx(col,row,reinterpret_cast<OriginalMatrix &>(x)… in write_element_idx()
|
| /OK3568_Linux_fs/kernel/arch/mips/loongson64/ |
| H A D | numa.c | 70 static int __init compute_node_distance(int row, int col) in compute_node_distance() argument 74 int package_col = col * loongson_sysconf.cores_per_node / in compute_node_distance() 77 if (col == row) in compute_node_distance() 87 int row, col; in init_topology_matrix() local 90 for (col = 0; col < MAX_NUMNODES; col++) in init_topology_matrix() 91 __node_distances[row][col] = -1; in init_topology_matrix() 94 for_each_online_node(col) { in init_topology_matrix() 95 __node_distances[row][col] = in init_topology_matrix() 96 compute_node_distance(row, col); in init_topology_matrix()
|
| /OK3568_Linux_fs/kernel/sound/pci/cs46xx/ |
| H A D | dsp_spos.c | 549 int i, j, col; in cs46xx_dsp_proc_task_tree_read() local 557 for (col = 0,j = 0;j < ins->tasks[i].size; j++,col++) { in cs46xx_dsp_proc_task_tree_read() 559 if (col == 4) { in cs46xx_dsp_proc_task_tree_read() 561 col = 0; in cs46xx_dsp_proc_task_tree_read() 610 unsigned int i, col = 0; in cs46xx_dsp_proc_parameter_dump_read() local 614 for (i = 0;i < DSP_PARAMETER_BYTE_SIZE; i += sizeof(u32),col ++) { in cs46xx_dsp_proc_parameter_dump_read() 615 if (col == 4) { in cs46xx_dsp_proc_parameter_dump_read() 617 col = 0; in cs46xx_dsp_proc_parameter_dump_read() 621 col = 0; in cs46xx_dsp_proc_parameter_dump_read() 625 if (col == 0) { in cs46xx_dsp_proc_parameter_dump_read() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/sgi-ip27/ |
| H A D | ip27-memory.c | 161 nasid_t row, col; in init_topology_matrix() local 164 for (col = 0; col < MAX_NUMNODES; col++) in init_topology_matrix() 165 __node_distances[row][col] = -1; in init_topology_matrix() 168 for_each_online_node(col) { in init_topology_matrix() 169 __node_distances[row][col] = in init_topology_matrix() 170 compute_node_distance(row, col); in init_topology_matrix() 182 nasid_t row, col; in dump_topology() local 187 for_each_online_node(col) in dump_topology() 188 pr_cont("%02d ", col); in dump_topology() 192 for_each_online_node(col) in dump_topology() [all …]
|