| /OK3568_Linux_fs/kernel/lib/mpi/ |
| H A D | mpih-mul.c | 348 mpi_ptr_t vp, mpi_size_t vsize, in mpihelp_mul_karatsuba_case() argument 353 if (!ctx->tspace || ctx->tspace_size < vsize) { in mpihelp_mul_karatsuba_case() 356 ctx->tspace = mpi_alloc_limb_space(2 * vsize); in mpihelp_mul_karatsuba_case() 359 ctx->tspace_size = vsize; in mpihelp_mul_karatsuba_case() 362 MPN_MUL_N_RECURSE(prodp, up, vp, vsize, ctx->tspace); in mpihelp_mul_karatsuba_case() 364 prodp += vsize; in mpihelp_mul_karatsuba_case() 365 up += vsize; in mpihelp_mul_karatsuba_case() 366 usize -= vsize; in mpihelp_mul_karatsuba_case() 367 if (usize >= vsize) { in mpihelp_mul_karatsuba_case() 368 if (!ctx->tp || ctx->tp_size < vsize) { in mpihelp_mul_karatsuba_case() [all …]
|
| H A D | mpi-mul.c | 18 mpi_size_t usize, vsize, wsize; in mpi_mul() local 30 vsize = u->nlimbs; in mpi_mul() 37 vsize = v->nlimbs; in mpi_mul() 45 wsize = usize + vsize; in mpi_mul() 65 vp = tmp_limb = mpi_alloc_limb_space(vsize); in mpi_mul() 67 MPN_COPY(vp, wp, vsize); in mpi_mul() 71 if (!vsize) in mpi_mul() 74 mpihelp_mul(wp, up, usize, vp, vsize, &cy); in mpi_mul()
|
| H A D | mpi-cmp.c | 47 mpi_size_t vsize; in do_mpi_cmp() local 56 vsize = v->nlimbs; in do_mpi_cmp() 69 if (usize != vsize && !usign && !vsign) in do_mpi_cmp() 70 return usize - vsize; in do_mpi_cmp() 71 if (usize != vsize && usign && vsign) in do_mpi_cmp() 72 return vsize + usize; in do_mpi_cmp()
|
| H A D | mpi-add.c | 70 mpi_size_t usize, vsize, wsize; in mpi_add() local 76 vsize = u->nlimbs; in mpi_add() 86 vsize = v->nlimbs; in mpi_add() 97 if (!vsize) { /* simple */ in mpi_add() 103 if (usize != vsize) { in mpi_add() 104 mpihelp_sub(wp, up, usize, vp, vsize); in mpi_add() 122 mpi_limb_t cy = mpihelp_add(wp, up, usize, vp, vsize); in mpi_add()
|
| /OK3568_Linux_fs/kernel/fs/squashfs/ |
| H A D | xattr.c | 94 le32_to_cpu(val.vsize)); in squashfs_listxattr() 115 int err, vsize; in squashfs_xattr_get() local 171 vsize = le32_to_cpu(val.vsize); in squashfs_xattr_get() 173 if (vsize > buffer_size) { in squashfs_xattr_get() 178 &offset, vsize); in squashfs_xattr_get() 191 le32_to_cpu(val.vsize)); in squashfs_xattr_get() 195 err = count ? vsize : -ENODATA; in squashfs_xattr_get()
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/davinci/ |
| H A D | vpif.c | 68 .vsize = 525, 85 .vsize = 625, 102 .vsize = 750, 119 .vsize = 750, 139 .vsize = 1125, 159 .vsize = 1125, 176 .vsize = 1125, 198 .vsize = 525, 218 .vsize = 625, 309 value = (config->vsize & vpifregs[config_channel_id].len_mask); in vpif_set_mode_info()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/arm/display/komeda/ |
| H A D | komeda_pipeline.h | 245 u16 hsize, vsize; member 256 struct malidp_range hsize, vsize; member 279 struct malidp_range hsize, vsize; member 283 u16 hsize, vsize; member 291 u16 hsize, vsize; member 309 struct malidp_range hsize, vsize; member 314 u16 hsize, vsize; member 330 u16 hsize, vsize; member 528 u16 *hsize, u16 *vsize);
|
| H A D | komeda_pipeline_state.c | 364 st->vsize = kfb->aligned_h; in komeda_layer_validate() 371 st->vsize = dflow->in_h; in komeda_layer_validate() 420 st->vsize = dflow->out_h; in komeda_wb_layer_validate() 461 if (!in_range(&scaler->vsize, vsize_in) || in komeda_scaler_check_cfg() 462 !in_range(&scaler->vsize, vsize_out)) { in komeda_scaler_check_cfg() 583 if (!in_range(&splitter->vsize, dflow->in_h)) { in komeda_splitter_validate() 600 st->vsize = dflow->in_h; in komeda_splitter_validate() 657 u16 *hsize, u16 *vsize) in pipeline_composition_size() argument 663 if (vsize) in pipeline_composition_size() 664 *vsize = m->vdisplay; in pipeline_composition_size() [all …]
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/ddc/ |
| H A D | interpret_edid.c | 135 if ((m->features.hsize == 16 && m->features.vsize == 9) || in encode_aspect_ratio() 136 (m->features.hsize == 16 && m->features.vsize == 10) || in encode_aspect_ratio() 137 (m->features.hsize == 4 && m->features.vsize == 3) || in encode_aspect_ratio() 138 (m->features.hsize == 5 && m->features.vsize == 4)) { in encode_aspect_ratio() 144 p.target_aspect = (float) m->features.hsize / m->features.vsize; in encode_aspect_ratio() 149 m->features.hsize = m->features.vsize = 0; in encode_aspect_ratio() 152 (m->features.vsize * 10 == p.real_vsize)) { in encode_aspect_ratio() 154 m->features.hsize = m->features.vsize = 0; in encode_aspect_ratio() 159 m->features.vsize = (p.real_vsize + 5) / 10; in encode_aspect_ratio() 163 m->features.hsize, m->features.vsize); in encode_aspect_ratio() [all …]
|
| H A D | print_edid.c | 212 if (disp->hsize && disp->vsize) { in print_display() 215 xf86ErrorF("vert.: %i\n", disp->vsize); in print_display() 217 else if (v->revision >= 4 && (disp->hsize || disp->vsize)) { in print_display() 221 if (disp->vsize) in print_display() 223 100.0 / (float) (disp->vsize + 99)); in print_display() 300 i, t[i].hsize, t[i].vsize, t[i].refresh, t[i].id); in print_std_timings() 388 p->m->features.hsize, p->m->features.vsize); in handle_detailed_print() 479 det_mon->section.std_t[j].vsize, in handle_detailed_print()
|
| H A D | xf86DDC.h | 55 FindDMTMode(int hsize, int vsize, int refresh, Bool rb); 93 ddc_quirk_t quirks, int hsize, int vsize);
|
| /OK3568_Linux_fs/external/xserver/hw/xfree86/modes/ |
| H A D | xf86EdidModes.c | 428 FindDMTMode(int hsize, int vsize, int refresh, Bool rb) in FindDMTMode() argument 440 ret->VDisplay == vsize && refresh == ModeRefresh(ret)) in FindDMTMode() 470 int i, hsize, vsize, refresh; in DDCModesFromStandardTiming() local 475 vsize = timing[i].vsize; in DDCModesFromStandardTiming() 480 ((hsize == 1360 && vsize == 765) || in DDCModesFromStandardTiming() 481 (hsize == 1368 && vsize == 769))) { in DDCModesFromStandardTiming() 483 vsize = 768; in DDCModesFromStandardTiming() 488 if (p->HDisplay == hsize && p->VDisplay == vsize && in DDCModesFromStandardTiming() 496 if (refresh == 60 && hsize == 1366 && vsize == 768) { in DDCModesFromStandardTiming() 502 else if (hsize && vsize && refresh) { in DDCModesFromStandardTiming() [all …]
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/algos/aldch/ |
| H A D | rk_aiq_ldch_generate_mesh.cpp | 107 unsigned short hpic, vpic, hsize, vsize, hstep, vstep = 0; in read_mesh_from_file() local 113 fread(&vsize, sizeof(unsigned short), 1, ofp); in read_mesh_from_file() 117 lut_size = hsize * vsize * sizeof(uint16_t); in read_mesh_from_file() 118 LOGW_ALDCH("lut info: [%d-%d-%d-%d-%d-%d]", hpic, vpic, hsize, vsize, hstep, vstep); in read_mesh_from_file() 134 ldchCtx->lut_v_size = vsize; in read_mesh_from_file()
|
| H A D | rk_aiq_algo_aldch_v21_itf.cpp | 160 uint16_t hpic, vpic, hsize, vsize, hstep, vstep; in update_custom_lut_from_external_buffer() local 167 vsize = *addr++; in update_custom_lut_from_external_buffer() 171 lut_size = hsize * vsize * sizeof(uint16_t); in update_custom_lut_from_external_buffer() 172 LOGD_ALDCH("lut info: [%d-%d-%d-%d-%d-%d]", hpic, vpic, hsize, vsize, hstep, vstep); in update_custom_lut_from_external_buffer() 185 ldchCtx->lut_v_size = vsize; in update_custom_lut_from_external_buffer()
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/cyttsp5/ |
| H A D | cyttsp5_platform.c | 39 .vsize = ARRAY_SIZE(cyttsp4_ver_pid00), 49 .vsize = ARRAY_SIZE(cyttsp4_ver_pid01), 59 .vsize = ARRAY_SIZE(cyttsp4_ver), 67 .vsize = 0,
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/algos/acac/ |
| H A D | rk_aiq_types_acac_hw.h | 53 uint32_t vsize; member 84 uint32_t vsize; member
|
| /OK3568_Linux_fs/kernel/drivers/misc/genwqe/ |
| H A D | card_dev.c | 392 unsigned long vsize = vma->vm_end - vma->vm_start; in genwqe_vma_close() local 401 dma_map = __genwqe_search_mapping(cfile, vma->vm_start, vsize, in genwqe_vma_close() 407 vsize); in genwqe_vma_close() 438 unsigned long pfn, vsize = vma->vm_end - vma->vm_start; in genwqe_mmap() local 443 if (vsize == 0) in genwqe_mmap() 446 if (get_order(vsize) > MAX_ORDER) in genwqe_mmap() 455 dma_map->size = vsize; in genwqe_mmap() 456 dma_map->nr_pages = DIV_ROUND_UP(vsize, PAGE_SIZE); in genwqe_mmap() 457 dma_map->k_vaddr = __genwqe_alloc_consistent(cd, vsize, in genwqe_mmap() 464 if (capable(CAP_SYS_ADMIN) && (vsize > sizeof(dma_addr_t))) in genwqe_mmap() [all …]
|
| /OK3568_Linux_fs/kernel/fs/proc/ |
| H A D | task_nommu.c | 87 unsigned long vsize = 0; in task_vsize() local 92 vsize += vma->vm_end - vma->vm_start; in task_vsize() 95 return vsize; in task_vsize()
|
| /OK3568_Linux_fs/kernel/drivers/soc/aspeed/ |
| H A D | aspeed-p2a-ctrl.c | 102 unsigned long vsize; in aspeed_p2a_mmap() local 110 vsize = vma->vm_end - vma->vm_start; in aspeed_p2a_mmap() 121 vsize, prot)) in aspeed_p2a_mmap()
|
| /OK3568_Linux_fs/u-boot/drivers/video/drm/ |
| H A D | rockchip_vop.c | 175 …u16 vsize = vdisplay * (conn_state->overscan.top_margin + conn_state->overscan.bottom_margin) / 20… in vop_post_config() local 180 vsize = round_down(vsize, 2); in vop_post_config() 189 vact_end = vact_st + vsize; in vop_post_config() 193 val = scl_cal_scale2(vdisplay, vsize) << 16; in vop_post_config() 200 POST_VERTICAL_SCALEDOWN_EN(vdisplay != vsize)); in vop_post_config() 203 u16 vact_end_f1 = vact_st_f1 + vsize; in vop_post_config()
|
| /OK3568_Linux_fs/kernel/drivers/video/backlight/ |
| H A D | vgg2432a4.c | 170 ili9320_write(lcd, ILI9320_VERT_END, cfg->vsize - 1); in vgg2432a4_lcd_init() 173 ILI9320_DRIVER2_NL(((cfg->vsize - 240) / 8) + 0x1D)); in vgg2432a4_lcd_init()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/arm/display/komeda/d71/ |
| H A D | d71_component.c | 279 malidp_write32(reg, BLK_IN_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_layer_update() 367 line_sz = st->vsize - st->afbc_crop_t - st->afbc_crop_b; in d71_layer_validate() 479 malidp_write32(reg, BLK_IN_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_wb_layer_update() 594 HV_SIZE(cin->hsize, cin->vsize)); in compiz_enable_input() 621 malidp_write32(reg, BLK_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_compiz_update() 688 set_range(&compiz->vsize, 64, d71->max_vsize); in d71_compiz_init() 858 set_range(&scaler->vsize, 4, 4096); in d71_scaler_init() 917 malidp_write32(reg, BLK_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_splitter_update() 967 set_range(&splitter->vsize, 4, d71->max_vsize); in d71_splitter_init() 1057 malidp_write32(reg, BLK_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_improc_update()
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/include/algos/asd/ |
| H A D | rk_aiq_types_asd_algo.h | 10 unsigned int vsize; member
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/xilinx/ |
| H A D | xilinx-vtc.h | 29 unsigned int vsize; member
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/linux/ |
| H A D | mali_memory_manager.c | 431 mali_allocation->vsize = args->vsize; in _mali_ukk_mem_allocate() 455 mali_allocation->mali_vma_node.vm_node.size = args->vsize; in _mali_ukk_mem_allocate() 652 mali_allocation->vsize = args->size; in _mali_ukk_mem_bind() 820 mali_allocation->vsize = args->target_size; in _mali_ukk_mem_cow() 825 mali_allocation->mali_vma_node.vm_node.size = mali_allocation->vsize; in _mali_ukk_mem_cow()
|