/linux-4.4.14/drivers/gpu/drm/omapdrm/ |
D | omap_fbdev.c | 103 struct drm_fb_helper_surface_size *sizes) in omap_fbdev_create() argument 115 sizes->surface_bpp = 32; in omap_fbdev_create() 116 sizes->surface_depth = 24; in omap_fbdev_create() 118 DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width, in omap_fbdev_create() 119 sizes->surface_height, sizes->surface_bpp, in omap_fbdev_create() 120 sizes->fb_width, sizes->fb_height); in omap_fbdev_create() 122 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in omap_fbdev_create() 123 sizes->surface_depth); in omap_fbdev_create() 125 mode_cmd.width = sizes->surface_width; in omap_fbdev_create() 126 mode_cmd.height = sizes->surface_height; in omap_fbdev_create() [all …]
|
/linux-4.4.14/drivers/gpu/drm/exynos/ |
D | exynos_drm_fbdev.c | 78 struct drm_fb_helper_surface_size *sizes, in exynos_drm_fbdev_update() argument 98 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in exynos_drm_fbdev_update() 121 struct drm_fb_helper_surface_size *sizes) in exynos_drm_fbdev_create() argument 132 sizes->surface_width, sizes->surface_height, in exynos_drm_fbdev_create() 133 sizes->surface_bpp); in exynos_drm_fbdev_create() 135 mode_cmd.width = sizes->surface_width; in exynos_drm_fbdev_create() 136 mode_cmd.height = sizes->surface_height; in exynos_drm_fbdev_create() 137 mode_cmd.pitches[0] = sizes->surface_width * (sizes->surface_bpp >> 3); in exynos_drm_fbdev_create() 138 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in exynos_drm_fbdev_create() 139 sizes->surface_depth); in exynos_drm_fbdev_create() [all …]
|
/linux-4.4.14/drivers/gpu/drm/msm/ |
D | msm_fbdev.c | 81 struct drm_fb_helper_surface_size *sizes) in msm_fbdev_create() argument 91 DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width, in msm_fbdev_create() 92 sizes->surface_height, sizes->surface_bpp, in msm_fbdev_create() 93 sizes->fb_width, sizes->fb_height); in msm_fbdev_create() 95 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in msm_fbdev_create() 96 sizes->surface_depth); in msm_fbdev_create() 98 mode_cmd.width = sizes->surface_width; in msm_fbdev_create() 99 mode_cmd.height = sizes->surface_height; in msm_fbdev_create() 102 mode_cmd.width, sizes->surface_bpp); in msm_fbdev_create() 161 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in msm_fbdev_create()
|
D | NOTES | 77 the downstream android fbdev driver), bitfield sizes, etc. My current
|
/linux-4.4.14/drivers/gpu/drm/armada/ |
D | armada_fbdev.c | 36 struct drm_fb_helper_surface_size *sizes) in armada_fb_create() argument 47 mode.width = sizes->surface_width; in armada_fb_create() 48 mode.height = sizes->surface_height; in armada_fb_create() 49 mode.pitches[0] = armada_pitch(mode.width, sizes->surface_bpp); in armada_fb_create() 50 mode.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in armada_fb_create() 51 sizes->surface_depth); in armada_fb_create() 100 drm_fb_helper_fill_var(info, fbh, sizes->fb_width, sizes->fb_height); in armada_fb_create() 114 struct drm_fb_helper_surface_size *sizes) in armada_fb_probe() argument 119 ret = armada_fb_create(fbh, sizes); in armada_fb_probe()
|
/linux-4.4.14/drivers/gpu/drm/rockchip/ |
D | rockchip_drm_fbdev.c | 51 struct drm_fb_helper_surface_size *sizes) in rockchip_drm_fbdev_create() argument 64 bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8); in rockchip_drm_fbdev_create() 66 mode_cmd.width = sizes->surface_width; in rockchip_drm_fbdev_create() 67 mode_cmd.height = sizes->surface_height; in rockchip_drm_fbdev_create() 68 mode_cmd.pitches[0] = sizes->surface_width * bytes_per_pixel; in rockchip_drm_fbdev_create() 69 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in rockchip_drm_fbdev_create() 70 sizes->surface_depth); in rockchip_drm_fbdev_create() 101 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in rockchip_drm_fbdev_create()
|
/linux-4.4.14/arch/s390/boot/compressed/ |
D | Makefile | 9 targets += misc.o piggy.o sizes.h head.o 27 sed-sizes := -e 's/^\([0-9a-fA-F]*\) . \(__bss_start\|_end\)$$/\#define SZ\2 0x\1/p' 30 cmd_sizes = $(NM) $< | sed -n $(sed-sizes) > $@ 32 $(obj)/sizes.h: vmlinux 33 $(call if_changed,sizes) 36 $(obj)/head.o: $(obj)/sizes.h 39 $(obj)/misc.o: $(obj)/sizes.h
|
D | .gitignore | 1 sizes.h
|
/linux-4.4.14/drivers/gpu/drm/bochs/ |
D | bochs_fbdev.c | 55 struct drm_fb_helper_surface_size *sizes) in bochsfb_create() argument 66 if (sizes->surface_bpp != 32) in bochsfb_create() 69 mode_cmd.width = sizes->surface_width; in bochsfb_create() 70 mode_cmd.height = sizes->surface_height; in bochsfb_create() 71 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7) / 8); in bochsfb_create() 72 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in bochsfb_create() 73 sizes->surface_depth); in bochsfb_create() 131 drm_fb_helper_fill_var(info, &bochs->fb.helper, sizes->fb_width, in bochsfb_create() 132 sizes->fb_height); in bochsfb_create()
|
/linux-4.4.14/drivers/gpu/drm/ |
D | drm_fb_cma_helper.c | 236 struct drm_fb_helper_surface_size *sizes) in drm_fbdev_cma_create() argument 250 sizes->surface_width, sizes->surface_height, in drm_fbdev_cma_create() 251 sizes->surface_bpp); in drm_fbdev_cma_create() 253 bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8); in drm_fbdev_cma_create() 255 mode_cmd.width = sizes->surface_width; in drm_fbdev_cma_create() 256 mode_cmd.height = sizes->surface_height; in drm_fbdev_cma_create() 257 mode_cmd.pitches[0] = sizes->surface_width * bytes_per_pixel; in drm_fbdev_cma_create() 258 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in drm_fbdev_cma_create() 259 sizes->surface_depth); in drm_fbdev_cma_create() 287 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in drm_fbdev_cma_create()
|
D | drm_fb_helper.c | 1344 struct drm_fb_helper_surface_size sizes; in drm_fb_helper_single_fb_probe() local 1347 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size)); in drm_fb_helper_single_fb_probe() 1348 sizes.surface_depth = 24; in drm_fb_helper_single_fb_probe() 1349 sizes.surface_bpp = 32; in drm_fb_helper_single_fb_probe() 1350 sizes.fb_width = (unsigned)-1; in drm_fb_helper_single_fb_probe() 1351 sizes.fb_height = (unsigned)-1; in drm_fb_helper_single_fb_probe() 1355 if (preferred_bpp != sizes.surface_bpp) in drm_fb_helper_single_fb_probe() 1356 sizes.surface_depth = sizes.surface_bpp = preferred_bpp; in drm_fb_helper_single_fb_probe() 1368 sizes.surface_depth = sizes.surface_bpp = 8; in drm_fb_helper_single_fb_probe() 1371 sizes.surface_depth = 15; in drm_fb_helper_single_fb_probe() [all …]
|
/linux-4.4.14/drivers/gpu/drm/i915/ |
D | intel_fbdev.c | 118 struct drm_fb_helper_surface_size *sizes) in intelfb_alloc() argument 130 if (sizes->surface_bpp == 24) in intelfb_alloc() 131 sizes->surface_bpp = 32; in intelfb_alloc() 133 mode_cmd.width = sizes->surface_width; in intelfb_alloc() 134 mode_cmd.height = sizes->surface_height; in intelfb_alloc() 137 DIV_ROUND_UP(sizes->surface_bpp, 8), 64); in intelfb_alloc() 138 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in intelfb_alloc() 139 sizes->surface_depth); in intelfb_alloc() 183 struct drm_fb_helper_surface_size *sizes) in intelfb_create() argument 199 (sizes->fb_width > intel_fb->base.width || in intelfb_create() [all …]
|
/linux-4.4.14/drivers/gpu/drm/radeon/ |
D | radeon_fb.c | 190 struct drm_fb_helper_surface_size *sizes) in radeonfb_create() argument 203 mode_cmd.width = sizes->surface_width; in radeonfb_create() 204 mode_cmd.height = sizes->surface_height; in radeonfb_create() 207 if ((sizes->surface_bpp == 24) && ASIC_IS_AVIVO(rdev)) in radeonfb_create() 208 sizes->surface_bpp = 32; in radeonfb_create() 210 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in radeonfb_create() 211 sizes->surface_depth); in radeonfb_create() 257 drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height); in radeonfb_create()
|
/linux-4.4.14/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_fb.c | 173 struct drm_fb_helper_surface_size *sizes) in amdgpufb_create() argument 185 mode_cmd.width = sizes->surface_width; in amdgpufb_create() 186 mode_cmd.height = sizes->surface_height; in amdgpufb_create() 188 if (sizes->surface_bpp == 24) in amdgpufb_create() 189 sizes->surface_bpp = 32; in amdgpufb_create() 191 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in amdgpufb_create() 192 sizes->surface_depth); in amdgpufb_create() 238 drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height); in amdgpufb_create()
|
/linux-4.4.14/drivers/gpu/drm/mgag200/ |
D | mgag200_fb.c | 159 struct drm_fb_helper_surface_size *sizes) in mgag200fb_create() argument 173 mode_cmd.width = sizes->surface_width; in mgag200fb_create() 174 mode_cmd.height = sizes->surface_height; in mgag200fb_create() 175 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7) / 8); in mgag200fb_create() 177 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in mgag200fb_create() 178 sizes->surface_depth); in mgag200fb_create() 221 drm_fb_helper_fill_var(info, &mfbdev->helper, sizes->fb_width, in mgag200fb_create() 222 sizes->fb_height); in mgag200fb_create()
|
/linux-4.4.14/drivers/gpu/drm/gma500/ |
D | framebuffer.c | 338 struct drm_fb_helper_surface_size *sizes) in psbfb_create() argument 353 mode_cmd.width = sizes->surface_width; in psbfb_create() 354 mode_cmd.height = sizes->surface_height; in psbfb_create() 355 bpp = sizes->surface_bpp; in psbfb_create() 356 depth = sizes->surface_depth; in psbfb_create() 456 sizes->fb_width, sizes->fb_height); in psbfb_create() 530 struct drm_fb_helper_surface_size *sizes) in psbfb_probe() argument 538 bytespp = sizes->surface_bpp / 8; in psbfb_probe() 545 if (ALIGN(sizes->fb_width * bytespp, 64) * sizes->fb_height > in psbfb_probe() 547 sizes->surface_bpp = 16; in psbfb_probe() [all …]
|
/linux-4.4.14/drivers/gpu/drm/cirrus/ |
D | cirrus_fbdev.c | 164 struct drm_fb_helper_surface_size *sizes) in cirrusfb_create() argument 177 mode_cmd.width = sizes->surface_width; in cirrusfb_create() 178 mode_cmd.height = sizes->surface_height; in cirrusfb_create() 179 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7) / 8); in cirrusfb_create() 180 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in cirrusfb_create() 181 sizes->surface_depth); in cirrusfb_create() 224 drm_fb_helper_fill_var(info, &gfbdev->helper, sizes->fb_width, in cirrusfb_create() 225 sizes->fb_height); in cirrusfb_create()
|
/linux-4.4.14/Documentation/devicetree/bindings/usb/ |
D | gr-udc.txt | 21 - epobufsizes : Array of buffer sizes for OUT endpoints when they differ 24 each OUT endpoint of the core. Fewer entries overrides the default sizes 27 - epibufsizes : Array of buffer sizes for IN endpoints when they differ 30 each IN endpoint of the core. Fewer entries overrides the default sizes
|
/linux-4.4.14/drivers/gpu/drm/ast/ |
D | ast_fb.c | 187 struct drm_fb_helper_surface_size *sizes) in astfb_create() argument 199 mode_cmd.width = sizes->surface_width; in astfb_create() 200 mode_cmd.height = sizes->surface_height; in astfb_create() 201 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7)/8); in astfb_create() 203 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in astfb_create() 204 sizes->surface_depth); in astfb_create() 245 drm_fb_helper_fill_var(info, &afbdev->helper, sizes->fb_width, sizes->fb_height); in astfb_create()
|
/linux-4.4.14/drivers/gpu/drm/tegra/ |
D | fb.c | 198 struct drm_fb_helper_surface_size *sizes) in tegra_fbdev_probe() argument 212 bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8); in tegra_fbdev_probe() 214 cmd.width = sizes->surface_width; in tegra_fbdev_probe() 215 cmd.height = sizes->surface_height; in tegra_fbdev_probe() 216 cmd.pitches[0] = round_up(sizes->surface_width * bytes_per_pixel, in tegra_fbdev_probe() 218 cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in tegra_fbdev_probe() 219 sizes->surface_depth); in tegra_fbdev_probe()
|
/linux-4.4.14/drivers/gpu/drm/udl/ |
D | udl_fb.c | 473 struct drm_fb_helper_surface_size *sizes) in udlfb_create() argument 485 if (sizes->surface_bpp == 24) in udlfb_create() 486 sizes->surface_bpp = 32; in udlfb_create() 488 mode_cmd.width = sizes->surface_width; in udlfb_create() 489 mode_cmd.height = sizes->surface_height; in udlfb_create() 490 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7) / 8); in udlfb_create() 492 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in udlfb_create() 493 sizes->surface_depth); in udlfb_create() 532 drm_fb_helper_fill_var(info, &ufbdev->helper, sizes->fb_width, sizes->fb_height); in udlfb_create()
|
/linux-4.4.14/lib/ |
D | sg_split.c | 23 off_t skip, const size_t *sizes, in sg_calculate_split() argument 28 size_t size = sizes[0], len; in sg_calculate_split() 55 size = *(++sizes); in sg_calculate_split() 69 size = *(++sizes); in sg_calculate_split()
|
/linux-4.4.14/drivers/gpu/drm/qxl/ |
D | qxl_fb.c | 343 struct drm_fb_helper_surface_size *sizes) in qxlfb_create() argument 353 int bpp = sizes->surface_bpp; in qxlfb_create() 354 int depth = sizes->surface_depth; in qxlfb_create() 357 mode_cmd.width = sizes->surface_width; in qxlfb_create() 358 mode_cmd.height = sizes->surface_height; in qxlfb_create() 411 drm_fb_helper_fill_var(info, &qfbdev->helper, sizes->fb_width, in qxlfb_create() 412 sizes->fb_height); in qxlfb_create() 457 struct drm_fb_helper_surface_size *sizes) in qxl_fb_find_or_create_single() argument 465 ret = qxlfb_create(qfbdev, sizes); in qxl_fb_find_or_create_single()
|
/linux-4.4.14/drivers/s390/block/ |
D | xpram.c | 66 static char *sizes[XPRAM_MAX_DEVS]; variable 69 module_param_array(sizes, charp, NULL, 0); 73 MODULE_PARM_DESC(sizes, "list of device (partition) sizes " \ 281 if (sizes[i]) { in xpram_setup_sizes() 282 size = simple_strtoull(sizes[i], &sizes_end, 0); in xpram_setup_sizes()
|
/linux-4.4.14/drivers/gpu/drm/nouveau/ |
D | nouveau_fbcon.c | 333 struct drm_fb_helper_surface_size *sizes) in nouveau_fbcon_create() argument 348 mode_cmd.width = sizes->surface_width; in nouveau_fbcon_create() 349 mode_cmd.height = sizes->surface_height; in nouveau_fbcon_create() 351 mode_cmd.pitches[0] = mode_cmd.width * (sizes->surface_bpp >> 3); in nouveau_fbcon_create() 354 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in nouveau_fbcon_create() 355 sizes->surface_depth); in nouveau_fbcon_create() 425 drm_fb_helper_fill_var(info, &fbcon->helper, sizes->fb_width, sizes->fb_height); in nouveau_fbcon_create()
|
/linux-4.4.14/arch/sh/kernel/cpu/sh4/ |
D | probe.c | 23 static unsigned long sizes[16] = { in cpu_probe() local 206 size = sizes[(cvr >> 20) & 0xf]; in cpu_probe() 214 size = sizes[(cvr >> 16) & 0xf]; in cpu_probe()
|
/linux-4.4.14/drivers/tty/ |
D | mips_ejtag_fdc.c | 220 unsigned int *sizes, in mips_ejtag_fdc_encode() argument 228 const char *end = ptr + *(sizes++); in mips_ejtag_fdc_encode() 423 unsigned int sizes[2] = { 0 }; in mips_ejtag_fdc_put_chan() local 431 sizes[0] = min_t(unsigned int, in mips_ejtag_fdc_put_chan() 435 sizes[1] = dport->xmit_cnt - sizes[0]; in mips_ejtag_fdc_put_chan() 436 word = mips_ejtag_fdc_encode(ptrs, sizes, 1 + !!sizes[1]); in mips_ejtag_fdc_put_chan() 440 min_t(int, word.bytes, sizes[0]), ptrs[0], in mips_ejtag_fdc_put_chan() 441 max_t(int, 0, word.bytes - sizes[0]), ptrs[1]); in mips_ejtag_fdc_put_chan() 467 if (sizes[0] && word.bytes) { in mips_ejtag_fdc_put_chan()
|
/linux-4.4.14/drivers/media/usb/em28xx/ |
D | em28xx-vbi.c | 36 unsigned int sizes[], void *alloc_ctxs[]) in vbi_queue_setup() argument 56 sizes[0] = size; in vbi_queue_setup()
|
/linux-4.4.14/drivers/crypto/ux500/ |
D | Kconfig | 15 AES-ECB, CBC and CTR with keys sizes of 128, 192 and 256 bit sizes.
|
/linux-4.4.14/drivers/media/usb/au0828/ |
D | au0828-vbi.c | 35 unsigned int sizes[], void *alloc_ctxs[]) in vbi_queue_setup() argument 48 sizes[0] = size; in vbi_queue_setup()
|
D | au0828-video.c | 642 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 654 sizes[0] = size; in queue_setup()
|
/linux-4.4.14/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_surface.c | 233 src_size = srf->sizes; in vmw_surface_define_encode() 267 const struct drm_vmw_size *cur_size = &srf->sizes[i]; in vmw_surface_dma_encode() 637 kfree(srf->sizes); in vmw_user_surface_free() 767 srf->sizes = kmalloc(srf->num_sizes * sizeof(*srf->sizes), GFP_KERNEL); in vmw_surface_define_ioctl() 768 if (unlikely(srf->sizes == NULL)) { in vmw_surface_define_ioctl() 774 if (unlikely(srf->sizes == NULL)) { in vmw_surface_define_ioctl() 782 ret = copy_from_user(srf->sizes, user_sizes, in vmw_surface_define_ioctl() 783 srf->num_sizes * sizeof(*srf->sizes)); in vmw_surface_define_ioctl() 789 srf->base_size = *srf->sizes; in vmw_surface_define_ioctl() 795 cur_size = srf->sizes; in vmw_surface_define_ioctl() [all …]
|
/linux-4.4.14/drivers/media/platform/marvell-ccic/ |
D | mcam-core.c | 1053 unsigned int *num_planes, unsigned int sizes[], in mcam_vb_queue_setup() argument 1062 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : cam->pix_format.sizeimage; in mcam_vb_queue_setup() 1496 struct v4l2_frmsizeenum *sizes) in mcam_vidioc_enum_framesizes() argument 1501 .index = sizes->index, in mcam_vidioc_enum_framesizes() 1506 f = mcam_find_format(sizes->pixel_format); in mcam_vidioc_enum_framesizes() 1507 if (f->pixelformat != sizes->pixel_format) in mcam_vidioc_enum_framesizes() 1515 sizes->type = V4L2_FRMSIZE_TYPE_DISCRETE; in mcam_vidioc_enum_framesizes() 1516 sizes->discrete.width = fse.min_width; in mcam_vidioc_enum_framesizes() 1517 sizes->discrete.height = fse.min_height; in mcam_vidioc_enum_framesizes() 1520 sizes->type = V4L2_FRMSIZE_TYPE_CONTINUOUS; in mcam_vidioc_enum_framesizes() [all …]
|
/linux-4.4.14/mm/ |
D | zsmalloc.c | 1093 int sizes[2]; in __zs_map_object() local 1104 sizes[0] = PAGE_SIZE - off; in __zs_map_object() 1105 sizes[1] = size - sizes[0]; in __zs_map_object() 1109 memcpy(buf, addr + off, sizes[0]); in __zs_map_object() 1112 memcpy(buf + sizes[0], addr, sizes[1]); in __zs_map_object() 1121 int sizes[2]; in __zs_unmap_object() local 1136 sizes[0] = PAGE_SIZE - off; in __zs_unmap_object() 1137 sizes[1] = size - sizes[0]; in __zs_unmap_object() 1141 memcpy(addr + off, buf, sizes[0]); in __zs_unmap_object() 1144 memcpy(addr, buf + sizes[0], sizes[1]); in __zs_unmap_object()
|
D | vmalloc.c | 2384 const size_t *sizes, int nr_vms, in pcpu_get_vm_areas() argument 2399 end = start + sizes[area]; in pcpu_get_vm_areas() 2403 BUG_ON(!IS_ALIGNED(sizes[area], align)); in pcpu_get_vm_areas() 2411 unsigned long end2 = start2 + sizes[area2]; in pcpu_get_vm_areas() 2420 last_end = offsets[last_area] + sizes[last_area]; in pcpu_get_vm_areas() 2444 end = start + sizes[area]; in pcpu_get_vm_areas() 2501 end = start + sizes[area]; in pcpu_get_vm_areas() 2510 va->va_end = va->va_start + sizes[area]; in pcpu_get_vm_areas()
|
/linux-4.4.14/drivers/gpu/drm/virtio/ |
D | virtgpu_fb.c | 223 struct drm_fb_helper_surface_size *sizes) in virtio_gpufb_create() argument 236 mode_cmd.width = sizes->surface_width; in virtio_gpufb_create() 237 mode_cmd.height = sizes->surface_height; in virtio_gpufb_create() 345 sizes->fb_width, sizes->fb_height); in virtio_gpufb_create()
|
/linux-4.4.14/include/linux/ |
D | vmalloc.h | 165 const size_t *sizes, int nr_vms, 172 const size_t *sizes, int nr_vms, in pcpu_get_vm_areas() argument
|
/linux-4.4.14/drivers/media/pci/cx88/ |
D | cx88-vbi.c | 112 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 118 sizes[0] = VBI_LINE_NTSC_COUNT * VBI_LINE_LENGTH * 2; in queue_setup() 120 sizes[0] = VBI_LINE_PAL_COUNT * VBI_LINE_LENGTH * 2; in queue_setup()
|
D | cx88-blackbird.c | 642 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 649 sizes[0] = dev->ts_packet_size * dev->ts_packet_count; in queue_setup()
|
D | cx88-video.c | 434 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 440 sizes[0] = (dev->fmt->depth * core->width * core->height) >> 3; in queue_setup()
|
D | cx88-dvb.c | 87 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 94 sizes[0] = dev->ts_packet_size * dev->ts_packet_count; in queue_setup()
|
/linux-4.4.14/sound/isa/gus/ |
D | interwave.c | 329 static void snd_interwave_bank_sizes(struct snd_gus_card *gus, int *sizes) in snd_interwave_bank_sizes() argument 336 sizes[idx] = 0; in snd_interwave_bank_sizes() 355 sizes[idx]++; in snd_interwave_bank_sizes() 360 sizes[0], sizes[1], sizes[2], sizes[3]); in snd_interwave_bank_sizes()
|
/linux-4.4.14/drivers/media/platform/ |
D | via-camera.c | 1138 struct v4l2_frmsizeenum *sizes) in viacam_enum_framesizes() argument 1140 if (sizes->index != 0) in viacam_enum_framesizes() 1142 sizes->type = V4L2_FRMSIZE_TYPE_CONTINUOUS; in viacam_enum_framesizes() 1143 sizes->stepwise.min_width = QCIF_WIDTH; in viacam_enum_framesizes() 1144 sizes->stepwise.min_height = QCIF_HEIGHT; in viacam_enum_framesizes() 1145 sizes->stepwise.max_width = VGA_WIDTH; in viacam_enum_framesizes() 1146 sizes->stepwise.max_height = VGA_HEIGHT; in viacam_enum_framesizes() 1147 sizes->stepwise.step_width = sizes->stepwise.step_height = 1; in viacam_enum_framesizes()
|
D | mx2_emmaprp.c | 694 unsigned int sizes[], void *alloc_ctxs[]) in emmaprp_queue_setup() argument 712 sizes[0] = size; in emmaprp_queue_setup()
|
D | vim2m.c | 715 unsigned int sizes[], void *alloc_ctxs[]) in vim2m_queue_setup() argument 737 sizes[0] = size; in vim2m_queue_setup()
|
D | m2m-deinterlace.c | 803 unsigned int sizes[], void *alloc_ctxs[]) in deinterlace_queue_setup() argument 822 sizes[0] = size; in deinterlace_queue_setup()
|
D | sh_veu.c | 870 unsigned int sizes[], void *alloc_ctxs[]) in sh_veu_queue_setup() argument 904 sizes[0] = size; in sh_veu_queue_setup()
|
D | sh_vou.c | 248 unsigned int sizes[], void *alloc_ctxs[]) in sh_vou_queue_setup() argument 260 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : pix->height * bytes_per_line; in sh_vou_queue_setup()
|
D | rcar_jpu.c | 1020 unsigned int sizes[], void *alloc_ctxs[]) in jpu_queue_setup() argument 1039 sizes[i] = fmt ? f_size : q_size; in jpu_queue_setup()
|
/linux-4.4.14/arch/x86/kernel/cpu/ |
D | perf_event_intel_pt.c | 460 topa->size += sizes(order); in topa_insert_pages() 484 sizes(topa->table[i].size), in pt_topa_dump() 534 base += sizes(buf->cur->table[topa_idx].size); in pt_update_head() 563 return sizes(buf->cur->table[buf->cur_idx].size); in pt_buffer_region_size() 593 buf->output_off == sizes(TOPA_ENTRY(buf->cur, buf->cur_idx)->size)) { in pt_handle_status() 687 sizes(TOPA_ENTRY(buf->cur, buf->cur_idx)->size)) in pt_buffer_reset_markers() 791 buf->output_off = head & (sizes(buf->cur->table[buf->cur_idx].size) - 1); in pt_buffer_reset_offsets()
|
D | intel_pt.h | 30 static inline unsigned int sizes(unsigned int tsz) in sizes() function
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | ethernet.txt | 23 is used for components that can have configurable receive fifo sizes, 27 is used for components that can have configurable fifo sizes.
|
D | smsc-lan91c111.txt | 10 - reg-io-width : Mask of sizes (in bytes) of the IO accesses that
|
D | davicom-dm9000.txt | 5 - reg : physical addresses and sizes of registers, must contain 2 entries:
|
/linux-4.4.14/drivers/media/pci/saa7134/ |
D | saa7134-vbi.c | 143 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 157 sizes[0] = size; in queue_setup()
|
D | saa7134-ts.c | 121 unsigned int sizes[], void *alloc_ctxs[]) in saa7134_ts_queue_setup() argument 133 sizes[0] = size; in saa7134_ts_queue_setup()
|
D | saa7134.h | 825 unsigned int sizes[], void *alloc_ctxs[]);
|
/linux-4.4.14/Documentation/ |
D | logo.txt | 8 scale down to smaller sizes and are better for letterheads or whatever
|
D | dell_rbu.txt | 22 using the driver breaks the image in to packets of fixed sizes and the driver
|
D | xz.txt | 70 In userspace, LZMA2 is typically used with dictionary sizes of several
|
D | static-keys.txt | 247 However, we have not yet implemented optimal no-op sizes (they are currently
|
/linux-4.4.14/drivers/media/platform/vivid/ |
D | vivid-vbi-out.c | 32 unsigned sizes[], void *alloc_ctxs[]) in vbi_out_queue_setup() argument 43 sizes[0] = size; in vbi_out_queue_setup()
|
D | vivid-vid-out.c | 36 unsigned sizes[], void *alloc_ctxs[]) in vid_out_queue_setup() argument 82 sizes[0] = mp->plane_fmt[0].sizeimage; in vid_out_queue_setup() 83 if (sizes[0] < size) in vid_out_queue_setup() 86 sizes[p] = mp->plane_fmt[p].sizeimage; in vid_out_queue_setup() 87 if (sizes[p] < dev->bytesperline_out[p] * h) in vid_out_queue_setup() 92 sizes[p] = p ? dev->bytesperline_out[p] * h : size; in vid_out_queue_setup() 107 dprintk(dev, 1, "%s: size[%u]=%u\n", __func__, p, sizes[p]); in vid_out_queue_setup()
|
D | vivid-vbi-cap.c | 142 unsigned sizes[], void *alloc_ctxs[]) in vbi_cap_queue_setup() argument 153 sizes[0] = size; in vbi_cap_queue_setup()
|
D | vivid-sdr-cap.c | 218 unsigned sizes[], void *alloc_ctxs[]) in sdr_cap_queue_setup() argument 221 sizes[0] = SDR_CAP_SAMPLES_PER_BUF * 2; in sdr_cap_queue_setup()
|
D | vivid-vid-cap.c | 100 unsigned sizes[], void *alloc_ctxs[]) in vid_cap_queue_setup() argument 143 sizes[p] = mp->plane_fmt[p].sizeimage; in vid_cap_queue_setup() 144 if (sizes[p] < tpg_g_line_width(&dev->tpg, p) * h + in vid_cap_queue_setup() 150 sizes[p] = tpg_g_line_width(&dev->tpg, p) * h + in vid_cap_queue_setup() 166 dprintk(dev, 1, "%s: size[%u]=%u\n", __func__, p, sizes[p]); in vid_cap_queue_setup()
|
/linux-4.4.14/drivers/media/pci/cx23885/ |
D | cx23885-vbi.c | 126 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 134 sizes[0] = lines * VBI_LINE_LENGTH * 2; in queue_setup()
|
D | cx23885-video.c | 320 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 325 sizes[0] = (dev->fmt->depth * dev->width * dev->height) >> 3; in queue_setup()
|
D | cx23885-417.c | 1143 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 1150 sizes[0] = mpeglinesize * mpeglines; in queue_setup()
|
/linux-4.4.14/drivers/usb/gadget/function/ |
D | uvc_queue.c | 46 unsigned int sizes[], void *alloc_ctxs[]) in uvc_queue_setup() argument 56 sizes[0] = video->imagesize; in uvc_queue_setup()
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-class-scsi_tape | 45 variable length block sizes. 76 variable length block sizes.
|
D | sysfs-class-mtd | 81 For devices that have variable eraseblock sizes, this
|
/linux-4.4.14/Documentation/video4linux/ |
D | README.cpia2 | 21 - Image formats: VGA, QVGA, CIF, QCIF, and a number of sizes in between. 22 VGA and QVGA are the native image sizes for the VGA camera. CIF is done 23 in the coprocessor by scaling QVGA. All other sizes are done by clipping.
|
D | soc-camera.txt | 111 VIDIOC_S_CROP: sets location and sizes of the sensor window. Unit is one sensor 112 pixel. Changing sensor window sizes preserves any scaling factors, therefore 113 user window sizes change as well.
|
D | cpia2_overview.txt | 5 STV0672, which is capable of up to 30 frames per second (fps) in frame sizes
|
D | v4l2-pci-skeleton.c | 168 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 190 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : skel->format.sizeimage; in queue_setup()
|
D | Zoran | 13 6. Concerning buffer sizes, quality, output size etc. 316 the quality/buffersize during capture (see 'Concerning buffer sizes, quality, 368 6. Concerning buffer sizes, quality, output size etc. 385 importance of buffer sizes: 388 > at 18:00 Monday) driver I get that output sizes for 10 sec:
|
/linux-4.4.14/arch/arm/include/asm/ |
D | Kbuild | 32 generic-y += sizes.h
|
/linux-4.4.14/arch/sh/include/asm/ |
D | Kbuild | 32 generic-y += sizes.h
|
/linux-4.4.14/scripts/kconfig/ |
D | qconf.cc | 1291 QList<int> sizes = configSettings->readSizes("/split", &ok); in ConfigSearchWindow() local 1293 split->setSizes(sizes); in ConfigSearchWindow() 1307 configSettings->writeSizes("/split", split->sizes()); in saveSettings() 1513 QList<int> sizes = configSettings->readSizes("/split1", &ok); in ConfigMainWindow() local 1515 split1->setSizes(sizes); in ConfigMainWindow() 1517 sizes = configSettings->readSizes("/split2", &ok); in ConfigMainWindow() 1519 split2->setSizes(sizes); in ConfigMainWindow() 1790 configSettings->writeSizes("/split1", split1->sizes()); in saveSettings() 1791 configSettings->writeSizes("/split2", split2->sizes()); in saveSettings()
|
/linux-4.4.14/Documentation/x86/ |
D | tlb.txt | 23 instructions have separate TLBs, as do different page sizes. 30 sizes of the flush will vary greatly depending on the workload as
|
/linux-4.4.14/Documentation/w1/masters/ |
D | ds2490 | 30 a write buffer and a read buffer (along with sizes) as arguments. 52 should match reads and writes as well as data sizes. Reads and
|
/linux-4.4.14/drivers/lightnvm/ |
D | Kconfig | 41 cost-based garbage collection. It is optimized for 4K IO sizes.
|
/linux-4.4.14/Documentation/spi/ |
D | spi-sc18is602 | 34 sizes to access a device, can not be used directly to read data from EEPROM.
|
/linux-4.4.14/crypto/ |
D | Kconfig | 808 The AES specifies three key sizes: 128, 192 and 256 bits 830 The AES specifies three key sizes: 128, 192 and 256 bits 852 The AES specifies three key sizes: 128, 192 and 256 bits 882 The AES specifies three key sizes: 128, 192 and 256 bits 911 The AES specifies three key sizes: 128, 192 and 256 bits 1005 The Camellia specifies three key sizes: 128, 192 and 256 bits. 1024 The Camellia specifies three key sizes: 128, 192 and 256 bits. 1046 The Camellia specifies three key sizes: 128, 192 and 256 bits. 1069 The Camellia specifies three key sizes: 128, 192 and 256 bits. 1085 The Camellia specifies three key sizes: 128, 192 and 256 bits. [all …]
|
/linux-4.4.14/Documentation/virtual/kvm/ |
D | review-checklist.txt | 30 (all variables and sizes naturally aligned on 64-bit; use specific types
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | fsl,ssi.txt | 36 playback and capture to use different sample sizes and 39 together. This would still allow different sample sizes,
|
/linux-4.4.14/drivers/media/usb/uvc/ |
D | uvc_queue.c | 74 unsigned int sizes[], void *alloc_ctxs[]) in uvc_queue_setup() argument 86 sizes[0] = fmt ? fmt->fmt.pix.sizeimage in uvc_queue_setup()
|
/linux-4.4.14/Documentation/filesystems/cifs/ |
D | TODO | 101 and when signing is disabled to request larger read sizes (larger than 102 negotiated size) and send larger write sizes to modern servers.
|
/linux-4.4.14/arch/arm64/include/asm/ |
D | Kbuild | 45 generic-y += sizes.h
|
/linux-4.4.14/arch/mips/kvm/ |
D | 00README.txt | 17 Note that due to cache aliasing issues, 4K page sizes are NOT supported.
|
/linux-4.4.14/Documentation/devicetree/bindings/input/touchscreen/ |
D | edt-ft5x06.txt | 4 There are 3 variants of the chip for various touch panel sizes
|
/linux-4.4.14/drivers/media/platform/soc_camera/ |
D | mx3_camera.c | 190 unsigned int sizes[], void *alloc_ctxs[]) in mx3_videobuf_setup() argument 221 sizes[0] = max_t(u32, fmt->fmt.pix.sizeimage, ret); in mx3_videobuf_setup() 224 sizes[0] = icd->sizeimage; in mx3_videobuf_setup() 237 sizes[0] * *count + mx3_cam->buf_total > MAX_VIDEO_MEM * 1024 * 1024) in mx3_videobuf_setup() 239 sizes[0]; in mx3_videobuf_setup()
|
D | sh_mobile_ceu_camera.c | 215 unsigned int sizes[], void *alloc_ctxs[]) in sh_mobile_ceu_videobuf_setup() argument 244 sizes[0] = max_t(u32, fmt->fmt.pix.sizeimage, ret); in sh_mobile_ceu_videobuf_setup() 247 sizes[0] = icd->sizeimage; in sh_mobile_ceu_videobuf_setup() 260 size_t size = PAGE_ALIGN(sizes[0]) * *count; in sh_mobile_ceu_videobuf_setup() 264 PAGE_ALIGN(sizes[0]); in sh_mobile_ceu_videobuf_setup() 269 dev_dbg(icd->parent, "count=%d, size=%u\n", *count, sizes[0]); in sh_mobile_ceu_videobuf_setup()
|
D | mx2_camera.c | 474 unsigned int sizes[], void *alloc_ctxs[]) in mx2_videobuf_setup() argument 481 dev_dbg(icd->parent, "count=%d, size=%d\n", *count, sizes[0]); in mx2_videobuf_setup() 489 sizes[0] = icd->sizeimage; in mx2_videobuf_setup() 494 sizes[0] * *count > MAX_VIDEO_MEM * 1024 * 1024) in mx2_videobuf_setup() 495 *count = (MAX_VIDEO_MEM * 1024 * 1024) / sizes[0]; in mx2_videobuf_setup()
|
D | rcar_vin.c | 533 unsigned int sizes[], void *alloc_ctxs[]) in rcar_vin_videobuf_setup() argument 564 sizes[0] = max_t(u32, fmt->fmt.pix.sizeimage, ret); in rcar_vin_videobuf_setup() 567 sizes[0] = icd->sizeimage; in rcar_vin_videobuf_setup() 587 dev_dbg(icd->parent, "count=%d, size=%u\n", *count, sizes[0]); in rcar_vin_videobuf_setup()
|
D | atmel-isi.c | 250 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 266 sizes[0] = size; in queue_setup()
|
/linux-4.4.14/arch/hexagon/include/asm/ |
D | Kbuild | 48 generic-y += sizes.h
|
/linux-4.4.14/include/media/ |
D | v4l2-common.h | 182 const struct v4l2_frmsize_discrete *sizes; member
|
D | videobuf2-core.h | 349 unsigned int sizes[], void *alloc_ctxs[]);
|
/linux-4.4.14/drivers/media/pci/tw68/ |
D | tw68-video.c | 381 unsigned int sizes[], void *alloc_ctxs[]) in tw68_queue_setup() argument 387 sizes[0] = (dev->fmt->depth * dev->width * dev->height) >> 3; in tw68_queue_setup() 394 if (fmt && fmt->fmt.pix.sizeimage < sizes[0]) in tw68_queue_setup() 399 tot_bufs = tw68_buffer_count(sizes[0], tot_bufs); in tw68_queue_setup()
|
/linux-4.4.14/Documentation/filesystems/ |
D | hfsplus.txt | 7 blocks, 255-character unicode filenames, and file sizes of 2^63 bytes.
|
D | affs.txt | 27 All of the above filesystems allow block sizes from 512 to 32K bytes. 28 Supported block sizes are: 512, 1024, 2048 and 4096 bytes. Larger blocks 63 bs=blksize Sets the blocksize to blksize. Valid block sizes are 512,
|
D | ceph.txt | 61 subdirectories, and a summation of all nested file sizes. This makes 110 the summation of file sizes over all files nested beneath that
|
D | cramfs.txt | 19 File sizes are limited to less than 16MB.
|
D | xfs.txt | 8 variable block sizes, is extent based, and makes extensive use of 144 Valid sizes for version 1 and version 2 logs are 16384 (16k) 145 and 32768 (32k). Valid sizes for version 2 logs also
|
D | omfs.txt | 8 block sizes from 2k to 8k, with hash-based directories. This
|
D | files.txt | 22 array of file pointers, the sizes of the sets and the array
|
D | logfs.txt | 181 Tables sizes are chosen to limit the number of indirect blocks with a 197 directory sizes of up to a million, bucket overflows should be
|
D | squashfs.txt | 7 minimise data overhead. Block sizes greater than 4K are supported up to a 48 inodes have different sizes).
|
D | ntfs.txt | 252 components and their sizes in sectors, i.e. multiples of 512-byte blocks. 254 For NT4 fault tolerant volumes you can obtain the sizes using fdisk. So for 305 Assuming you know all your devices and their sizes things are easy.
|
D | f2fs.txt | 325 consists of a set of sections. By default, section and zone sizes are set to one 326 segment size identically, but users can easily modify the sizes by mkfs.
|
/linux-4.4.14/drivers/media/platform/exynos4-is/ |
D | fimc-isp-video.c | 44 unsigned int sizes[], void *allocators[]) in isp_video_capture_queue_setup() argument 72 sizes[i] = max(size, pixm->plane_fmt[i].sizeimage); in isp_video_capture_queue_setup() 74 sizes[i] = size; in isp_video_capture_queue_setup()
|
D | fimc-m2m.c | 181 unsigned int sizes[], void *allocators[]) in fimc_queue_setup() argument 199 sizes[i] = f->payload[i]; in fimc_queue_setup()
|
D | fimc-capture.c | 343 unsigned int sizes[], void *allocators[]) in queue_setup() argument 370 sizes[i] = max(size, pixm->plane_fmt[i].sizeimage); in queue_setup() 372 sizes[i] = frame->payload[i]; in queue_setup() 374 sizes[i] = max_t(u32, size, frame->payload[i]); in queue_setup()
|
D | fimc-lite.c | 360 unsigned int sizes[], void *allocators[]) in queue_setup() argument 386 sizes[i] = max(size, pixm->plane_fmt[i].sizeimage); in queue_setup() 388 sizes[i] = size; in queue_setup()
|
/linux-4.4.14/arch/unicore32/include/asm/ |
D | Kbuild | 49 generic-y += sizes.h
|
/linux-4.4.14/arch/arm/ |
D | Kconfig-nommu | 9 Say Y to manually set the base addresses and sizes.
|
/linux-4.4.14/drivers/staging/media/omap4iss/ |
D | iss_video.c | 292 unsigned int sizes[], void *alloc_ctxs[]) in iss_video_queue_setup() argument 300 sizes[0] = vfh->format.fmt.pix.sizeimage; in iss_video_queue_setup() 301 if (sizes[0] == 0) in iss_video_queue_setup() 306 *count = min(*count, video->capture_mem / PAGE_ALIGN(sizes[0])); in iss_video_queue_setup()
|
/linux-4.4.14/arch/h8300/include/asm/ |
D | Kbuild | 58 generic-y += sizes.h
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/omap/ |
D | crossbar.txt | 17 register is assumed to be of same size. Valid sizes are 1, 2, 4.
|
/linux-4.4.14/Documentation/vm/ |
D | balance | 32 been running production machines of varying memory sizes, and seems to be 39 zone. The good part is, while balancing, we do not need to look at sizes
|
D | hugetlbpage.txt | 5 support 4K and 2M (1G if architecturally supported) page sizes, ia64 6 architecture supports multiple page sizes 4K, 8K, 64K, 256K, 1M, 4M, 16M, 74 Some platforms support multiple huge page sizes. To allocate huge pages 80 When multiple huge page sizes are supported, /proc/sys/vm/nr_hugepages 279 page sizes, the pagesize option can be used to specify the huge page size and
|
D | split_page_table_lock | 39 Hugetlb can support several page sizes. We use split lock only for PMD
|
D | slub.txt | 67 sizes). This has a higher liklihood of resulting in slab allocation errors 134 large object sizes into one high order page. Setting command line 291 Additionally, in this mode slabinfo does not dynamically scale sizes (G/M/K)
|
D | numa | 82 a default zonelist order based on the sizes of the various zone types relative
|
D | transhuge.txt | 9 that supports the automatic promotion and demotion of page sizes and 296 memory in regular page sizes and with regular pte/pmd mappings).
|
/linux-4.4.14/arch/x86/crypto/ |
D | crct10dif-pcl-asm_64.S | 86 # for sizes less than 128, we can't fold 64B at a time...
|
/linux-4.4.14/Documentation/devicetree/bindings/media/ |
D | samsung-fimc.txt | 58 - samsung,pix-limits: an array of maximum supported image sizes in pixels, for 73 - samsung,min-pix-sizes: an array specyfing minimum image size in pixels at
|
/linux-4.4.14/Documentation/filesystems/pohmelfs/ |
D | network_protocol.txt | 124 @size - incorporates all embedded command sizes including theirs header sizes.
|
/linux-4.4.14/include/drm/ |
D | drm_fb_helper.h | 95 struct drm_fb_helper_surface_size *sizes);
|
/linux-4.4.14/arch/frv/mm/ |
D | tlb-flush.S | 28 # sizes corresponding to TPXR.LMAX
|
/linux-4.4.14/drivers/media/usb/s2255/ |
D | s2255drv.c | 665 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 671 sizes[0] = vc->width * vc->height * (vc->fmt->depth >> 3); in queue_setup() 1407 const struct v4l2_frmsize_discrete *sizes; in vidioc_enum_frameintervals() local 1420 sizes = is_ntsc ? ntsc_sizes : pal_sizes; in vidioc_enum_frameintervals() 1421 for (i = 0; i < NUM_SIZE_ENUMS; i++, sizes++) in vidioc_enum_frameintervals() 1422 if (fe->width == sizes->width && in vidioc_enum_frameintervals() 1423 fe->height == sizes->height) in vidioc_enum_frameintervals()
|
/linux-4.4.14/fs/squashfs/ |
D | Kconfig | 10 Block sizes greater than 4K are supported up to a maximum of 1 Mbytes 179 smaller block sizes).
|
/linux-4.4.14/Documentation/powerpc/ |
D | pci_iov_resource_on_powernv.txt | 162 discover the BAR sizes and assign addresses for them. For VF devices, 164 discover sizes and assign addresses. The BARs in the VF's config space 184 they are different sizes, the entire window has to be small enough that 200 and different segment sizes. If we have VFs that each have a 1MB BAR
|
/linux-4.4.14/drivers/media/platform/omap3isp/ |
D | ispvideo.c | 325 unsigned int sizes[], void *alloc_ctxs[]) in isp_video_queue_setup() argument 332 sizes[0] = vfh->format.fmt.pix.sizeimage; in isp_video_queue_setup() 333 if (sizes[0] == 0) in isp_video_queue_setup() 338 *count = min(*count, video->capture_mem / PAGE_ALIGN(sizes[0])); in isp_video_queue_setup()
|
/linux-4.4.14/Documentation/device-mapper/ |
D | dm-crypt.txt | 25 You can only use key sizes that are valid for the selected cipher
|
D | cache.txt | 61 using block sizes of 256KB - 1024KB. The block size must be between 64 67 So large block sizes are bad because they waste cache space. And small 68 block sizes are bad because they increase the amount of metadata (both
|
/linux-4.4.14/drivers/media/usb/airspy/ |
D | airspy.c | 492 unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[]) in airspy_queue_setup() argument 502 sizes[0] = PAGE_ALIGN(s->buffersize); in airspy_queue_setup() 504 dev_dbg(s->dev, "nbuffers=%d sizes[0]=%d\n", *nbuffers, sizes[0]); in airspy_queue_setup()
|
/linux-4.4.14/drivers/media/pci/netup_unidvb/ |
D | netup_unidvb_core.c | 283 unsigned int sizes[], in netup_unidvb_queue_setup() argument 293 sizes[0] = PAGE_ALIGN(NETUP_DMA_PACKETS_COUNT * 188); in netup_unidvb_queue_setup() 295 __func__, *nbuffers, sizes[0]); in netup_unidvb_queue_setup()
|
/linux-4.4.14/drivers/media/platform/xilinx/ |
D | xilinx-dma.c | 314 unsigned int sizes[], void *alloc_ctxs[]) in xvip_dma_queue_setup() argument 325 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : dma->format.sizeimage; in xvip_dma_queue_setup()
|
/linux-4.4.14/drivers/media/pci/dt3155/ |
D | dt3155.c | 136 unsigned int sizes[], void *alloc_ctxs[]) in dt3155_queue_setup() argument 148 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : size; in dt3155_queue_setup()
|
/linux-4.4.14/drivers/media/usb/stk1160/ |
D | stk1160-v4l.c | 669 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 686 sizes[0] = size; in queue_setup()
|
/linux-4.4.14/drivers/media/usb/usbtv/ |
D | usbtv-video.c | 603 unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[]) in usbtv_queue_setup() argument 614 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : size; in usbtv_queue_setup()
|
/linux-4.4.14/Documentation/accounting/ |
D | taskstats.txt | 50 receive buffer sizes. 169 - increase the receive buffer sizes for the netlink sockets opened by
|
/linux-4.4.14/Documentation/sound/alsa/ |
D | hdspm.txt | 61 buffer-sizes -- 64,128,256,512,1024,2048,8192 Samples 110 control-panel, but buffer-sizes are controlled with ALSA from
|
D | compress_offload.txt | 81 borrowed from the ALSA PCM API. However, only sizes in bytes can be 115 sizes, the number of bytes required to synchronize, etc, and can be
|
/linux-4.4.14/drivers/media/pci/solo6x10/ |
D | solo6x10-v4l2.c | 318 unsigned int sizes[], void *alloc_ctxs[]) in solo_queue_setup() argument 322 sizes[0] = solo_image_size(solo_dev); in solo_queue_setup()
|
D | solo6x10-v4l2-enc.c | 668 unsigned int *num_planes, unsigned int sizes[], in solo_enc_queue_setup() argument 673 sizes[0] = FRAME_BUF_SIZE; in solo_enc_queue_setup()
|
/linux-4.4.14/kernel/ |
D | audit.c | 973 u32 sizes[2]; in audit_receive_msg() local 980 memcpy(sizes, bufp, 2 * sizeof(u32)); in audit_receive_msg() 983 old = audit_unpack_string(&bufp, &msglen, sizes[0]); in audit_receive_msg() 988 new = audit_unpack_string(&bufp, &msglen, sizes[1]); in audit_receive_msg()
|
/linux-4.4.14/arch/arm/crypto/ |
D | Kconfig | 84 The AES specifies three key sizes: 128, 192 and 256 bits
|
/linux-4.4.14/drivers/media/v4l2-core/ |
D | v4l2-common.c | 385 for (i = 0, size = probe->sizes; i < probe->num_sizes; i++, size++) { in v4l2_find_nearest_format()
|
/linux-4.4.14/drivers/media/usb/msi2500/ |
D | msi2500.c | 621 unsigned int *nplanes, unsigned int sizes[], in msi2500_queue_setup() argument 631 sizes[0] = PAGE_ALIGN(dev->buffersize); in msi2500_queue_setup() 632 dev_dbg(dev->dev, "nbuffers=%d sizes[0]=%d\n", *nbuffers, sizes[0]); in msi2500_queue_setup()
|
/linux-4.4.14/Documentation/s390/ |
D | DASD | 26 sizes, under VM and on the bare hardware (LPAR), using internal disks
|
/linux-4.4.14/drivers/input/touchscreen/ |
D | sur40.c | 649 unsigned int sizes[], void *alloc_ctxs[]) in sur40_queue_setup() argument 661 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : sur40_video_format.sizeimage; in sur40_queue_setup()
|
/linux-4.4.14/drivers/media/platform/s5p-tv/ |
D | mixer_video.c | 885 unsigned int *nbuffers, unsigned int *nplanes, unsigned int sizes[], in queue_setup() argument 905 sizes[i] = planes[i].sizeimage; in queue_setup() 906 mxr_dbg(mdev, "size[%d] = %08x\n", i, sizes[i]); in queue_setup()
|
/linux-4.4.14/drivers/atm/ |
D | Kconfig | 71 The default settings for the burst sizes are suitable for most PCI 75 The burst sizes can be set independently in the send (TX) and 78 Note that enabling many different burst sizes in the same direction
|
/linux-4.4.14/fs/xfs/ |
D | Kconfig | 11 variable block sizes, is extent based, and makes extensive use of
|
/linux-4.4.14/arch/arm/nwfpe/ |
D | ChangeLog | 47 FPA11*. Unfortunately FPA11 and user_fp are of different sizes;
|
/linux-4.4.14/drivers/media/usb/pwc/ |
D | pwc-if.c | 577 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 590 sizes[0] = PAGE_ALIGN(pwc_image_sizes[size][0] * in queue_setup()
|
D | philips.txt | 33 contains decompression routines that allow you to use higher image sizes and 208 64 0x40 Show viewport and image sizes Off
|
/linux-4.4.14/drivers/media/platform/exynos-gsc/ |
D | gsc-m2m.c | 217 unsigned int sizes[], void *allocators[]) in gsc_m2m_queue_setup() argument 232 sizes[i] = frame->payload[i]; in gsc_m2m_queue_setup()
|
/linux-4.4.14/drivers/media/platform/s5p-g2d/ |
D | g2d.c | 106 unsigned int sizes[], void *alloc_ctxs[]) in g2d_queue_setup() argument 114 sizes[0] = f->size; in g2d_queue_setup()
|
/linux-4.4.14/drivers/media/platform/s3c-camif/ |
D | camif-capture.c | 440 unsigned int sizes[], void *allocators[]) in queue_setup() argument 466 sizes[0] = max(size, pix->sizeimage); in queue_setup() 468 sizes[0] = size; in queue_setup() 471 pr_debug("size: %u\n", sizes[0]); in queue_setup()
|
/linux-4.4.14/Documentation/networking/ |
D | radiotap-headers.txt | 50 breakdown of all the argument sizes
|
D | spider_net.txt | 185 the TX queue is appropriately serviced for large packet sizes. 187 For packet sizes greater than about 1KBytes, the kernel can fill
|
D | packet_mmap.txt | 310 a pool of pre-determined sizes. This pool of memory is maintained by the slab 315 predetermined sizes that kmalloc uses can be checked in the "size-<bytes>" 741 sizes by doing it's own memory management. It is based on blocks where polling
|
D | lapb-module.txt | 88 consequently larger window sizes, the default is standard LAPB operation.
|
/linux-4.4.14/Documentation/ide/ |
D | ChangeLog.ide-cd.1994-2004 | 18 * 2.03 Jan 10, 1995 -- Rewrite block read routines to handle block sizes 266 * 4.61 Jan 22, 2004 - support hardware sector sizes other than 2kB,
|
D | ChangeLog.ide-tape.1995-2002 | 107 * use of some block sizes during a restore procedure. 109 * continuous view of the media - any mix of block sizes
|
/linux-4.4.14/drivers/media/pci/cx25821/ |
D | cx25821-video.c | 146 unsigned int sizes[], void *alloc_ctxs[]) in cx25821_queue_setup() argument 156 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : size; in cx25821_queue_setup()
|
/linux-4.4.14/sound/soc/codecs/ |
D | wm_adsp.c | 1067 int ret, offset, type, sizes; in wm_adsp_load() local 1126 sizes = sizeof(*adsp1_sizes); in wm_adsp_load() 1138 sizes = sizeof(*adsp2_sizes); in wm_adsp_load() 1153 sizes + sizeof(*footer)) { in wm_adsp_load()
|
/linux-4.4.14/drivers/staging/android/ion/ |
D | ion.c | 684 size_t sizes[ION_NUM_HEAP_IDS] = {0}; in ion_debug_client_show() local 696 sizes[id] += handle->buffer->size; in ion_debug_client_show() 704 seq_printf(s, "%16.16s: %16zu\n", names[i], sizes[i]); in ion_debug_client_show()
|
/linux-4.4.14/arch/tile/ |
D | Kconfig | 66 # Support for additional huge page sizes besides HPAGE_SIZE. 68 # hypervisor. TILEPro in any case does not support page sizes
|
/linux-4.4.14/drivers/media/platform/blackfin/ |
D | bfin_capture.c | 207 unsigned int sizes[], void *alloc_ctxs[]) in bcap_queue_setup() argument 219 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : bcap_dev->fmt.sizeimage; in bcap_queue_setup()
|
/linux-4.4.14/drivers/media/platform/ti-vpe/ |
D | vpe.c | 1801 unsigned int sizes[], void *alloc_ctxs[]) in vpe_queue_setup() argument 1812 sizes[i] = q_data->sizeimage[i]; in vpe_queue_setup() 1817 sizes[VPE_LUMA]); in vpe_queue_setup() 1819 vpe_dbg(ctx->dev, " and %d\n", sizes[VPE_CHROMA]); in vpe_queue_setup()
|
/linux-4.4.14/drivers/media/pci/sta2x11/ |
D | sta2x11_vip.c | 270 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 278 sizes[0] = vip->format.sizeimage; in queue_setup()
|
/linux-4.4.14/drivers/media/usb/hackrf/ |
D | hackrf.c | 763 unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[]) in hackrf_queue_setup() argument 773 sizes[0] = PAGE_ALIGN(dev->buffersize); in hackrf_queue_setup() 775 dev_dbg(dev->dev, "nbuffers=%d sizes[0]=%d\n", *nbuffers, sizes[0]); in hackrf_queue_setup()
|
/linux-4.4.14/drivers/media/dvb-frontends/ |
D | rtl2832_sdr.c | 494 unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[]) in rtl2832_sdr_queue_setup() argument 505 sizes[0] = PAGE_ALIGN(dev->buffersize); in rtl2832_sdr_queue_setup() 506 dev_dbg(&pdev->dev, "nbuffers=%d sizes[0]=%d\n", *nbuffers, sizes[0]); in rtl2832_sdr_queue_setup()
|
/linux-4.4.14/Documentation/power/powercap/ |
D | powercap.txt | 169 limits and 2 attributes representing the sizes of the time windows. Such that,
|
/linux-4.4.14/Documentation/input/ |
D | ntrig.txt | 59 to logical sizes is used to adjust the size based filter parameters.
|
/linux-4.4.14/drivers/crypto/ |
D | Kconfig | 134 for all AES key sizes. 136 key sizes and XTS mode is hardware accelerated for 256 and
|
/linux-4.4.14/drivers/media/usb/go7007/ |
D | go7007-v4l2.c | 374 unsigned int sizes[], void *alloc_ctxs[]) in go7007_queue_setup() argument 376 sizes[0] = GO7007_BUF_SIZE; in go7007_queue_setup()
|
/linux-4.4.14/arch/m68k/math-emu/ |
D | fp_scan.S | 476 | data sizes corresponding to the operand formats
|
/linux-4.4.14/Documentation/locking/ |
D | mutex-design.txt | 149 for the largest lock in the kernel. Larger structure sizes mean more
|
/linux-4.4.14/fs/befs/ |
D | ChangeLog | 245 sizes (such as cdroms) on linux 2.4.10 and up. 314 This fixed the problmem with wrong file sizes from du and others.
|
/linux-4.4.14/drivers/media/platform/vsp1/ |
D | vsp1_video.c | 792 unsigned int sizes[], void *alloc_ctxs[]) in vsp1_video_queue_setup() argument 815 sizes[i] = format->plane_fmt[i].sizeimage; in vsp1_video_queue_setup()
|
/linux-4.4.14/Documentation/arm/ |
D | vlocks.txt | 151 different sizes, similarly to many other architectures. Note that
|
/linux-4.4.14/drivers/media/platform/davinci/ |
D | vpif_display.c | 114 unsigned int sizes[], void *alloc_ctxs[]) in vpif_buffer_queue_setup() argument 127 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : common->fmt.fmt.pix.sizeimage; in vpif_buffer_queue_setup()
|
D | vpbe_display.c | 233 unsigned int sizes[], void *alloc_ctxs[]) in vpbe_buffer_queue_setup() argument 251 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : layer->pix_fmt.sizeimage; in vpbe_buffer_queue_setup()
|
D | vpif_capture.c | 119 unsigned int sizes[], void *alloc_ctxs[]) in vpif_buffer_queue_setup() argument 136 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : common->fmt.fmt.pix.sizeimage; in vpif_buffer_queue_setup()
|
/linux-4.4.14/drivers/staging/media/davinci_vpfe/ |
D | vpfe_video.c | 1083 unsigned int sizes[], void *alloc_ctxs[]) in vpfe_buffer_queue_setup() argument 1097 sizes[0] = size; in vpfe_buffer_queue_setup()
|
/linux-4.4.14/drivers/media/platform/sti/bdisp/ |
D | bdisp-v4l2.c | 443 unsigned int sizes[], void *allocators[]) in bdisp_queue_setup() argument 463 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : frame->sizeimage; in bdisp_queue_setup()
|
/linux-4.4.14/drivers/media/pci/cobalt/ |
D | cobalt-v4l2.c | 48 unsigned int sizes[], void *alloc_ctxs[]) in cobalt_queue_setup() argument 64 sizes[0] = size; in cobalt_queue_setup()
|
/linux-4.4.14/tools/perf/Documentation/ |
D | intel-pt.txt | 459 buffer sizes are limited to powers of 2 up to 4MiB (MAX_ORDER). In order to 460 provide other sizes, and in particular an arbitrarily large size, multiple 550 have memory limits imposed upon them. That affects what buffer sizes they can
|
/linux-4.4.14/arch/m68k/fpsp040/ |
D | fpsp.h | 322 | fsave sizes and formats
|
/linux-4.4.14/Documentation/devicetree/bindings/arm/ |
D | cpus.txt | 53 registers sizes.
|
/linux-4.4.14/drivers/media/platform/am437x/ |
D | am437x-vpfe.c | 1913 unsigned int sizes[], void *alloc_ctxs[]) in vpfe_queue_setup() argument 1925 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : vpfe->fmt.fmt.pix.sizeimage; in vpfe_queue_setup() 1929 "nbuffers=%d, size=%u\n", *nbuffers, sizes[0]); in vpfe_queue_setup()
|
/linux-4.4.14/Documentation/prctl/ |
D | seccomp_filter.txt | 38 path (avoiding pathological sizes or selecting which of the multiplexed
|
/linux-4.4.14/drivers/iommu/ |
D | Kconfig | 30 sizes at both stage-1 and stage-2, as well as address spaces
|