/third_party/python/Tools/scripts/ |
H A D | byext.py | 84 cols = sorted(columns) 89 for col in cols: 106 cols.insert(0, "ext") 109 for col in cols: 115 for col in cols:
|
/foundation/multimedia/image_framework/frameworks/innerkitsimpl/test/unittest/heif_hw_decode/unittest/ |
H A D | heif_hw_decoder_test.cpp | 63 .cols = 0, in HWTEST_F() 82 .cols = 0, in HWTEST_F() 102 .cols = 0, in HWTEST_F() 123 .cols = 1, in HWTEST_F() 144 .cols = 1, in HWTEST_F() 165 .cols = 1, in HWTEST_F()
|
/third_party/curl/src/ |
H A D | tool_cb_prg.c | 254 int cols = 0; in progressbarinit() local 259 cols = ts.ts_cols; in progressbarinit() 263 cols = ts.ws_col; in progressbarinit() 275 cols = (int) in progressbarinit() 280 if(cols > 20) in progressbarinit() 281 bar->width = cols; in progressbarinit()
|
/third_party/alsa-utils/alsamixer/ |
H A D | device_name.c | 40 int rows, cols, max, i; in dup_current_name() local 44 dynamic_field_info(fields[1], &rows, &cols, &max); in dup_current_name() 45 s = ccalloc(1, cols + 1); in dup_current_name() 46 memcpy(s, field_buffer(fields[1], 0), cols); in dup_current_name()
|
H A D | widget.c | 44 void widget_init(struct widget *widget, int lines_, int cols, int y, int x, in widget_init() argument 52 x = (screen_cols - cols) / 2; in widget_init() 55 widget->window = newwin(lines_, cols, y, x); in widget_init() 70 lines_ - 2, cols - 2, 1, 1); in widget_init()
|
/third_party/astc-encoder/Test/ |
H A D | astc_test_image_dl.py | 99 cols = 6 108 montage = Image.new('RGB', (width * cols, height * rows)) 112 col = i % cols 113 row = i // cols
|
/third_party/toybox/toys/pending/ |
H A D | more.c | 91 unsigned rows = 24, cols = 80, row = 0, col = 0; in more_main() local 126 terminal_size(&cols, &rows); in more_main() 145 terminal_size(&cols, &rows); in more_main() 152 if (col == cols) putchar(ch = '\n'); in more_main()
|
/kernel/linux/linux-6.6/drivers/s390/char/ |
H A D | raw3270.c | 41 int model, rows, cols; member 123 x = max_t(int, 0, rp->view->cols + x); in raw3270_buffer_address() 126 addr = (y * rp->view->cols) + x; in raw3270_buffer_address() 456 rp->cols = diag8c_data.width; in raw3270_size_device_vm() 473 rp->cols = 80; in raw3270_size_device_vm() 478 rp->cols = 80; in raw3270_size_device_vm() 483 rp->cols = 80; in raw3270_size_device_vm() 488 rp->cols = 132; in raw3270_size_device_vm() 504 rp->cols = 80; in raw3270_size_device() 509 rp->cols in raw3270_size_device() [all...] |
H A D | con3270.c | 201 static int tty3270_input_size(int cols) in tty3270_input_size() argument 203 return cols * 2 - 11; in tty3270_input_size() 228 tp->view.cols * 2 - TTY3270_STATUS_AREA_SIZE - 2); in tty3270_add_prompt() 236 if (count < tp->view.cols * 2 - 11) in tty3270_add_prompt() 347 if (line->len < tp->view.cols) in tty3270_required_length() 362 if (line->len < tp->view.cols) in tty3270_add_reset_attributes() 690 len = tty3270_input_size(tp->view.cols) - 6 - rrq->rescnt; in tty3270_read_tasklet() 756 raw3270_request_set_data(rrq, tp->input, tty3270_input_size(tp->view.cols)); in tty3270_issue_read() 891 unsigned int cols, int *allocated_out) in tty3270_alloc_screen() 901 screen[lines].cells = kcalloc(cols, sizeo in tty3270_alloc_screen() 890 tty3270_alloc_screen(struct tty3270 *tp, unsigned int rows, unsigned int cols, int *allocated_out) tty3270_alloc_screen() argument 915 tty3270_alloc_recall(int cols) tty3270_alloc_recall() argument [all...] |
/third_party/ffmpeg/libavcodec/ |
H A D | flashsv2enc.c | 106 int rows, cols; member 149 memset(blocks, 0, s->cols * s->rows * sizeof(*blocks)); in init_blocks() 150 for (col = 0; col < s->cols; col++) { in init_blocks() 152 b = blocks + (col + row * s->cols); in init_blocks() 153 b->width = (col < s->cols - 1) ? in init_blocks() 187 s->cols = (s->image_width + s->block_width - 1) / s->block_width; in update_block_dimensions() 188 if (s->rows * s->cols > s->blocks_size / sizeof(Block)) { in update_block_dimensions() 189 s->frame_blocks = av_realloc_array(s->frame_blocks, s->rows, s->cols * sizeof(Block)); in update_block_dimensions() 190 s->key_blocks = av_realloc_array(s->key_blocks, s->cols, s->rows * sizeof(Block)); in update_block_dimensions() 195 s->blocks_size = s->rows * s->cols * sizeo in update_block_dimensions() [all...] |
/kernel/linux/linux-5.10/drivers/s390/char/ |
H A D | tty3270.c | 147 if (count > tp->view.cols * 2 - 11) in tty3270_update_prompt() 148 count = tp->view.cols * 2 - 11; in tty3270_update_prompt() 152 if (count < tp->view.cols * 2 - 11) { in tty3270_update_prompt() 155 off = tp->view.cols * tp->view.rows - 9; in tty3270_update_prompt() 174 sizeof(blueprint) + tp->view.cols * 2 - 9); in tty3270_create_prompt() 181 offset = tp->view.cols * (tp->view.rows - 2); in tty3270_create_prompt() 183 offset = tp->view.cols * tp->view.rows - 9; in tty3270_create_prompt() 187 tp->input = alloc_string(&tp->freemem, tp->view.cols * 2 - 9 + 6); in tty3270_create_prompt() 220 offset = tp->view.cols * tp->view.rows - 9; in tty3270_create_status() 234 tp->view.cols * n in tty3270_update_string() 805 tty3270_alloc_screen(unsigned int rows, unsigned int cols) tty3270_alloc_screen() argument 887 tty3270_resize(struct raw3270_view *view, int model, int rows, int cols) tty3270_resize() argument [all...] |
/kernel/linux/linux-5.10/arch/arm/mach-s3c/ |
H A D | setup-keypad-s3c64xx.c | 13 void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols) in samsung_keypad_cfg_gpio() argument 19 s3c_gpio_cfgrange_nopull(S3C64XX_GPL(0), cols, S3C_GPIO_SFN(3)); in samsung_keypad_cfg_gpio()
|
/kernel/linux/linux-6.6/arch/arm/mach-s3c/ |
H A D | setup-keypad-s3c64xx.c | 13 void samsung_keypad_cfg_gpio(unsigned int rows, unsigned int cols) in samsung_keypad_cfg_gpio() argument 19 s3c_gpio_cfgrange_nopull(S3C64XX_GPL(0), cols, S3C_GPIO_SFN(3)); in samsung_keypad_cfg_gpio()
|
/kernel/linux/linux-5.10/include/linux/input/ |
H A D | samsung-keypad.h | 21 * @cols: number of keypad col supported. 32 unsigned int cols; member 36 void (*cfg_gpio)(unsigned int rows, unsigned int cols);
|
/kernel/linux/linux-6.6/include/linux/input/ |
H A D | samsung-keypad.h | 21 * @cols: number of keypad col supported. 32 unsigned int cols; member 36 void (*cfg_gpio)(unsigned int rows, unsigned int cols);
|
/third_party/libsnd/src/ |
H A D | mat5.c | 68 int rows, cols ; member 263 int type, flags1, flags2, rows, cols ; in mat5_read_header() local 321 psf_binheader_readf (psf, "44", &rows, &cols) ; in mat5_read_header() 322 psf_log_printf (psf, " Rows : %d Cols : %d\n", rows, cols) ; in mat5_read_header() 324 if (rows != 1 || cols != 1) in mat5_read_header() 420 psf_binheader_readf (psf, "44", &rows, &cols) ; in mat5_read_header() 421 psf_log_printf (psf, " Rows : %X Cols : %d\n", rows, cols) ; in mat5_read_header() 458 if (rows == 0 && cols == 0) in mat5_read_header() 464 psf->sf.frames = cols ; in mat5_read_header()
|
/kernel/linux/linux-5.10/arch/mips/bcm63xx/ |
H A D | cpu.c | 258 unsigned int cols = 0, rows = 0, is_32bits = 0, banks = 0; in detect_memory_size() local 272 cols = (val & SDRAM_CFG_COL_MASK) >> SDRAM_CFG_COL_SHIFT; in detect_memory_size() 280 cols = (val & MEMC_CFG_COL_MASK) >> MEMC_CFG_COL_SHIFT; in detect_memory_size() 289 cols += 8; in detect_memory_size() 291 return 1 << (cols + rows + (is_32bits + 1) + banks); in detect_memory_size()
|
/kernel/linux/linux-6.6/arch/mips/bcm63xx/ |
H A D | cpu.c | 258 unsigned int cols = 0, rows = 0, is_32bits = 0, banks = 0; in detect_memory_size() local 272 cols = (val & SDRAM_CFG_COL_MASK) >> SDRAM_CFG_COL_SHIFT; in detect_memory_size() 280 cols = (val & MEMC_CFG_COL_MASK) >> MEMC_CFG_COL_SHIFT; in detect_memory_size() 289 cols += 8; in detect_memory_size() 291 return 1 << (cols + rows + (is_32bits + 1) + banks); in detect_memory_size()
|
/kernel/linux/linux-6.6/drivers/input/keyboard/ |
H A D | cros_ec_keyb.c | 36 * @cols: Number of columns in the keypad 51 unsigned int cols; member 156 for (col1 = 0; col1 < ckdev->cols; col1++) { in cros_ec_keyb_has_ghosting() 158 for (col2 = col1 + 1; col2 < ckdev->cols; col2++) { in cros_ec_keyb_has_ghosting() 195 for (col = 0; col < ckdev->cols; col++) { in cros_ec_keyb_process() 266 if (ckdev->ec->event_size != ckdev->cols) { in cros_ec_keyb_work() 321 for (col = 0; col < ckdev->cols; col++) { in cros_ec_keyb_compute_valid_keys() 598 err = matrix_keypad_parse_properties(dev, &ckdev->rows, &ckdev->cols); in cros_ec_keyb_register_matrix() 602 ckdev->valid_keys = devm_kzalloc(dev, ckdev->cols, GFP_KERNEL); in cros_ec_keyb_register_matrix() 606 ckdev->old_kb_state = devm_kzalloc(dev, ckdev->cols, GFP_KERNE in cros_ec_keyb_register_matrix() [all...] |
/foundation/arkui/ui_lite/interfaces/kits/layout/ |
H A D | grid_layout.h | 76 * @param cols Indicates the number of columns to set. 80 void SetCols(const uint16_t& cols) in SetCols() argument 82 cols_ = cols; in SetCols()
|
/kernel/linux/linux-5.10/tools/lib/subcmd/ |
H A D | help.c | 118 int cols = 1, rows; in pretty_print_string_list() local 128 cols = max_cols / space; in pretty_print_string_list() 129 rows = (cmds->cnt + cols - 1) / cols; in pretty_print_string_list() 134 for (j = 0; j < cols; j++) { in pretty_print_string_list() 140 if (j == cols-1 || n + rows >= cmds->cnt) in pretty_print_string_list()
|
/kernel/linux/linux-6.6/tools/lib/subcmd/ |
H A D | help.c | 130 int cols = 1, rows; in pretty_print_string_list() local 140 cols = max_cols / space; in pretty_print_string_list() 141 rows = (cmds->cnt + cols - 1) / cols; in pretty_print_string_list() 146 for (j = 0; j < cols; j++) { in pretty_print_string_list() 152 if (j == cols-1 || n + rows >= cmds->cnt) in pretty_print_string_list()
|
/third_party/ltp/lib/ |
H A D | tst_timer_test.c | 58 unsigned int cols) in bucket_len() 60 return 1.00 * bucket * cols / max_bucket; in bucket_len() 80 unsigned int cols = 80; in frequency_plot() local 86 unsigned int plot_line_len = cols - line_header_len; in frequency_plot() 110 print_line('-', cols); in frequency_plot() 142 print_line('-', cols); in frequency_plot() 57 bucket_len(unsigned int bucket, unsigned int max_bucket, unsigned int cols) bucket_len() argument
|
/kernel/linux/linux-5.10/drivers/usb/misc/sisusbvga/ |
H A D | sisusb_con.c | 202 int cols, rows; in sisusbcon_init() local 237 cols = 80; in sisusbcon_init() 257 c->vc_cols = cols; in sisusbcon_init() 260 vc_resize(c, cols, rows); in sisusbcon_init() 424 int i, length, cols; in sisusbcon_clear() local 442 cols = sisusb->sisusb_num_columns; in sisusbcon_clear() 444 if (width > cols) in sisusbcon_clear() 445 width = cols; in sisusbcon_clear() 449 sisusbcon_memsetw(dest, eattr, height * cols * 2); in sisusbcon_clear() 453 for (i = height; i > 0; i--, dest += cols) in sisusbcon_clear() 770 int cols = sisusb->sisusb_num_columns; sisusbcon_scroll_area() local [all...] |
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | matrix_utils.h | 157 unsigned int cols = mat1.columns(); 158 Matrix result(std::vector<T>(rows() * cols), rows(), cols); 160 for (unsigned int j = 0; j < cols; j++) 366 const auto cols = gl::iSquareRoot<Size>(); 373 for (unsigned int i = 0; i < cols; ++i) 375 const auto pos = i * cols + (i % cols);
|