| /linux/lib/crypto/mpi/ |
| H A D | mpih-mul.c | 323 mpi_ptr_t vp, mpi_size_t vsize, in mpihelp_mul_karatsuba_case() argument 328 if (!ctx->tspace || ctx->tspace_size < vsize) { in mpihelp_mul_karatsuba_case() 331 ctx->tspace = mpi_alloc_limb_space(2 * vsize); in mpihelp_mul_karatsuba_case() 334 ctx->tspace_size = vsize; in mpihelp_mul_karatsuba_case() 337 MPN_MUL_N_RECURSE(prodp, up, vp, vsize, ctx->tspace); in mpihelp_mul_karatsuba_case() 339 prodp += vsize; in mpihelp_mul_karatsuba_case() 340 up += vsize; in mpihelp_mul_karatsuba_case() 341 usize -= vsize; in mpihelp_mul_karatsuba_case() 342 if (usize >= vsize) { in mpihelp_mul_karatsuba_case() 343 if (!ctx->tp || ctx->tp_size < vsize) { in mpihelp_mul_karatsuba_case() [all …]
|
| H A D | mpi-mul.c | 20 mpi_size_t usize, vsize, wsize; in mpi_mul() local 33 vsize = u->nlimbs; in mpi_mul() 40 vsize = v->nlimbs; in mpi_mul() 48 wsize = usize + vsize; in mpi_mul() 74 vp = tmp_limb = mpi_alloc_limb_space(vsize); in mpi_mul() 78 MPN_COPY(vp, wp, vsize); in mpi_mul() 82 if (!vsize) in mpi_mul() 85 err = mpihelp_mul(wp, up, usize, vp, vsize, &cy); in mpi_mul()
|
| H A D | mpi-cmp.c | 52 mpi_size_t usize, vsize; in mpi_cmp() local 58 vsize = v->nlimbs; in mpi_cmp() 63 if (usize != vsize && !u->sign && !v->sign) in mpi_cmp() 64 return usize - vsize; in mpi_cmp() 65 if (usize != vsize && u->sign && v->sign) in mpi_cmp() 66 return vsize - usize; in mpi_cmp()
|
| H A D | mpi-add.c | 21 mpi_size_t usize, vsize, wsize; in mpi_add() local 28 vsize = u->nlimbs; in mpi_add() 40 vsize = v->nlimbs; in mpi_add() 53 if (!vsize) { /* simple */ in mpi_add() 59 if (usize != vsize) { in mpi_add() 60 mpihelp_sub(wp, up, usize, vp, vsize); in mpi_add() 78 mpi_limb_t cy = mpihelp_add(wp, up, usize, vp, vsize); in mpi_add()
|
| H A D | mpi-internal.h | 173 mpi_ptr_t vp, mpi_size_t vsize, mpi_limb_t *_result); 180 mpi_ptr_t vp, mpi_size_t vsize,
|
| /linux/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()
|
| H A D | squashfs_fs.h | 437 __le32 vsize; member
|
| /linux/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);
|
| /linux/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_PAGE_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 …]
|
| /linux/fs/proc/ |
| H A D | task_nommu.c | 85 unsigned long vsize = 0; in task_vsize() local 89 vsize += vma->vm_end - vma->vm_start; in task_vsize() 91 return vsize; in task_vsize()
|
| H A D | array.c | 468 unsigned long vsize, eip, esp, wchan = 0; in do_task_stat() local 486 vsize = eip = esp = 0; in do_task_stat() 490 vsize = task_vsize(mm); in do_task_stat() 606 seq_put_decimal_ull(m, " ", vsize); in do_task_stat()
|
| /linux/drivers/media/platform/xilinx/ |
| H A D | xilinx-vtc.h | 29 unsigned int vsize; member
|
| /linux/drivers/platform/x86/intel/pmt/ |
| H A D | class.c | 115 unsigned long vsize = vma->vm_end - vma->vm_start; in intel_pmt_mmap() local 125 if (vsize > psize) { in intel_pmt_mmap() 132 vsize, vma->vm_page_prot)) in intel_pmt_mmap()
|
| /linux/drivers/gpu/drm/arm/display/komeda/d71/ |
| H A D | d71_component.c | 281 malidp_write32(reg, BLK_IN_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_layer_update() 369 line_sz = st->vsize - st->afbc_crop_t - st->afbc_crop_b; in d71_layer_validate() 481 malidp_write32(reg, BLK_IN_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_wb_layer_update() 596 HV_SIZE(cin->hsize, cin->vsize)); in compiz_enable_input() 623 malidp_write32(reg, BLK_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_compiz_update() 690 set_range(&compiz->vsize, 64, d71->max_vsize); in d71_compiz_init() 860 set_range(&scaler->vsize, 4, 4096); in d71_scaler_init() 919 malidp_write32(reg, BLK_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_splitter_update() 969 set_range(&splitter->vsize, 4, d71->max_vsize); in d71_splitter_init() 1059 malidp_write32(reg, BLK_SIZE, HV_SIZE(st->hsize, st->vsize)); in d71_improc_update()
|
| /linux/kernel/ |
| H A D | acct.c | 563 unsigned long vsize = 0; in acct_collect() local 572 vsize += vma->vm_end - vma->vm_start; in acct_collect() 578 pacct->ac_mem = vsize / 1024; in acct_collect()
|
| /linux/fs/resctrl/ |
| H A D | pseudo_lock.c | 1001 unsigned long vsize = vma_desc_size(desc); in pseudo_lock_dev_mmap_prepare() local 1052 if (vsize > psize) { in pseudo_lock_dev_mmap_prepare() 1057 memset(plr->kmem + off, 0, vsize); in pseudo_lock_dev_mmap_prepare()
|
| /linux/include/video/ |
| H A D | ili9320.h | 179 unsigned short vsize; member
|
| /linux/drivers/video/backlight/ |
| H A D | ili9320.c | 210 if (cfg->hsize <= 0 || cfg->vsize <= 0 || cfg->reset == NULL) { in ili9320_probe_spi()
|
| /linux/drivers/gpu/drm/rockchip/ |
| H A D | rockchip_drm_vop2.c | 1565 u16 vsize = vdisplay * (top_margin + bottom_margin) / 200; in vop2_post_config() local 1571 vsize = rounddown(vsize, 2); in vop2_post_config() 1579 vact_end = vact_st + vsize; in vop2_post_config() 1583 val = scl_cal_scale2(vdisplay, vsize) << 16; in vop2_post_config() 1590 if (vdisplay != vsize) in vop2_post_config() 1596 u16 vact_end_f1 = vact_st_f1 + vsize; in vop2_post_config()
|
| /linux/drivers/staging/media/av7110/ |
| H A D | av7110_av.c | 355 int hsize, vsize; in get_video_format() local 370 vsize = ((p[1] & 0x0F) << 8) | (p[2]); in get_video_format() 374 dprintk(2, "playback %dx%d fr=%d\n", hsize, vsize, sw); in get_video_format()
|
| /linux/drivers/media/platform/ti/davinci/ |
| H A D | vpif.h | 622 u16 vsize; /* Vertical size of the image */ member
|
| /linux/drivers/dma/xilinx/ |
| H A D | xilinx_dma.c | 240 u32 vsize; member 1452 vdma_desc_write(chan, XILINX_DMA_REG_VSIZE, last->hw.vsize); in xilinx_vdma_start_transfer() 2081 hw->vsize = xt->numf; in xilinx_vdma_dma_prep_interleaved()
|
| /linux/Documentation/filesystems/ |
| H A D | proc.rst | 347 vsize virtual memory size
|