/linux-4.1.27/drivers/gpu/drm/omapdrm/ |
D | omap_fbdev.c | 103 struct drm_fb_helper_surface_size *sizes) in omap_fbdev_create() argument 118 sizes->surface_bpp = 32; in omap_fbdev_create() 119 sizes->surface_depth = 32; in omap_fbdev_create() 121 DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width, in omap_fbdev_create() 122 sizes->surface_height, sizes->surface_bpp, in omap_fbdev_create() 123 sizes->fb_width, sizes->fb_height); in omap_fbdev_create() 125 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in omap_fbdev_create() 126 sizes->surface_depth); in omap_fbdev_create() 128 mode_cmd.width = sizes->surface_width; in omap_fbdev_create() 129 mode_cmd.height = sizes->surface_height; in omap_fbdev_create() [all …]
|
/linux-4.1.27/drivers/gpu/drm/exynos/ |
D | exynos_drm_fbdev.c | 79 struct drm_fb_helper_surface_size *sizes, in exynos_drm_fbdev_update() argument 89 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in exynos_drm_fbdev_update() 122 struct drm_fb_helper_surface_size *sizes) in exynos_drm_fbdev_create() argument 134 sizes->surface_width, sizes->surface_height, in exynos_drm_fbdev_create() 135 sizes->surface_bpp); in exynos_drm_fbdev_create() 137 mode_cmd.width = sizes->surface_width; in exynos_drm_fbdev_create() 138 mode_cmd.height = sizes->surface_height; in exynos_drm_fbdev_create() 139 mode_cmd.pitches[0] = sizes->surface_width * (sizes->surface_bpp >> 3); in exynos_drm_fbdev_create() 140 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in exynos_drm_fbdev_create() 141 sizes->surface_depth); in exynos_drm_fbdev_create() [all …]
|
/linux-4.1.27/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() 106 drm_fb_helper_fill_var(info, fbh, sizes->fb_width, sizes->fb_height); in armada_fb_create() 122 struct drm_fb_helper_surface_size *sizes) in armada_fb_probe() argument 127 ret = armada_fb_create(fbh, sizes); in armada_fb_probe()
|
/linux-4.1.27/drivers/gpu/drm/msm/ |
D | msm_fbdev.c | 86 struct drm_fb_helper_surface_size *sizes) in msm_fbdev_create() argument 96 DBG("create fbdev: %dx%d@%d (%dx%d)", sizes->surface_width, in msm_fbdev_create() 97 sizes->surface_height, sizes->surface_bpp, in msm_fbdev_create() 98 sizes->fb_width, sizes->fb_height); in msm_fbdev_create() 100 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in msm_fbdev_create() 101 sizes->surface_depth); in msm_fbdev_create() 103 mode_cmd.width = sizes->surface_width; in msm_fbdev_create() 104 mode_cmd.height = sizes->surface_height; in msm_fbdev_create() 107 mode_cmd.width, sizes->surface_bpp); in msm_fbdev_create() 173 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.1.27/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() 109 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in rockchip_drm_fbdev_create()
|
/linux-4.1.27/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.1.27/drivers/gpu/drm/bochs/ |
D | bochs_fbdev.c | 55 struct drm_fb_helper_surface_size *sizes) in bochsfb_create() argument 68 if (sizes->surface_bpp != 32) in bochsfb_create() 71 mode_cmd.width = sizes->surface_width; in bochsfb_create() 72 mode_cmd.height = sizes->surface_height; in bochsfb_create() 73 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7) / 8); in bochsfb_create() 74 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in bochsfb_create() 75 sizes->surface_depth); in bochsfb_create() 132 drm_fb_helper_fill_var(info, &bochs->fb.helper, sizes->fb_width, in bochsfb_create() 133 sizes->fb_height); in bochsfb_create()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | intel_fbdev.c | 114 struct drm_fb_helper_surface_size *sizes) in intelfb_alloc() argument 125 if (sizes->surface_bpp == 24) in intelfb_alloc() 126 sizes->surface_bpp = 32; in intelfb_alloc() 128 mode_cmd.width = sizes->surface_width; in intelfb_alloc() 129 mode_cmd.height = sizes->surface_height; in intelfb_alloc() 132 DIV_ROUND_UP(sizes->surface_bpp, 8), 64); in intelfb_alloc() 133 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in intelfb_alloc() 134 sizes->surface_depth); in intelfb_alloc() 173 struct drm_fb_helper_surface_size *sizes) in intelfb_create() argument 189 (sizes->fb_width > intel_fb->base.width || in intelfb_create() [all …]
|
/linux-4.1.27/drivers/gpu/drm/ |
D | drm_fb_cma_helper.c | 248 struct drm_fb_helper_surface_size *sizes) in drm_fbdev_cma_create() argument 262 sizes->surface_width, sizes->surface_height, in drm_fbdev_cma_create() 263 sizes->surface_bpp); in drm_fbdev_cma_create() 265 bytes_per_pixel = DIV_ROUND_UP(sizes->surface_bpp, 8); in drm_fbdev_cma_create() 267 mode_cmd.width = sizes->surface_width; in drm_fbdev_cma_create() 268 mode_cmd.height = sizes->surface_height; in drm_fbdev_cma_create() 269 mode_cmd.pitches[0] = sizes->surface_width * bytes_per_pixel; in drm_fbdev_cma_create() 270 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in drm_fbdev_cma_create() 271 sizes->surface_depth); in drm_fbdev_cma_create() 307 drm_fb_helper_fill_var(fbi, helper, sizes->fb_width, sizes->fb_height); in drm_fbdev_cma_create()
|
D | drm_fb_helper.c | 989 struct drm_fb_helper_surface_size sizes; in drm_fb_helper_single_fb_probe() local 992 memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size)); in drm_fb_helper_single_fb_probe() 993 sizes.surface_depth = 24; in drm_fb_helper_single_fb_probe() 994 sizes.surface_bpp = 32; in drm_fb_helper_single_fb_probe() 995 sizes.fb_width = (unsigned)-1; in drm_fb_helper_single_fb_probe() 996 sizes.fb_height = (unsigned)-1; in drm_fb_helper_single_fb_probe() 1000 if (preferred_bpp != sizes.surface_bpp) in drm_fb_helper_single_fb_probe() 1001 sizes.surface_depth = sizes.surface_bpp = preferred_bpp; in drm_fb_helper_single_fb_probe() 1013 sizes.surface_depth = sizes.surface_bpp = 8; in drm_fb_helper_single_fb_probe() 1016 sizes.surface_depth = 15; in drm_fb_helper_single_fb_probe() [all …]
|
/linux-4.1.27/drivers/gpu/drm/mgag200/ |
D | mgag200_fb.c | 159 struct drm_fb_helper_surface_size *sizes) in mgag200fb_create() argument 175 mode_cmd.width = sizes->surface_width; in mgag200fb_create() 176 mode_cmd.height = sizes->surface_height; in mgag200fb_create() 177 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7) / 8); in mgag200fb_create() 179 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in mgag200fb_create() 180 sizes->surface_depth); in mgag200fb_create() 235 drm_fb_helper_fill_var(info, &mfbdev->helper, sizes->fb_width, in mgag200fb_create() 236 sizes->fb_height); in mgag200fb_create()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_fb.c | 220 struct drm_fb_helper_surface_size *sizes) in radeonfb_create() argument 234 mode_cmd.width = sizes->surface_width; in radeonfb_create() 235 mode_cmd.height = sizes->surface_height; in radeonfb_create() 238 if ((sizes->surface_bpp == 24) && ASIC_IS_AVIVO(rdev)) in radeonfb_create() 239 sizes->surface_bpp = 32; in radeonfb_create() 241 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in radeonfb_create() 242 sizes->surface_depth); in radeonfb_create() 288 drm_fb_helper_fill_var(info, &rfbdev->helper, sizes->fb_width, sizes->fb_height); in radeonfb_create()
|
/linux-4.1.27/drivers/gpu/drm/gma500/ |
D | framebuffer.c | 338 struct drm_fb_helper_surface_size *sizes) in psbfb_create() argument 354 mode_cmd.width = sizes->surface_width; in psbfb_create() 355 mode_cmd.height = sizes->surface_height; in psbfb_create() 356 bpp = sizes->surface_bpp; in psbfb_create() 357 depth = sizes->surface_depth; in psbfb_create() 469 sizes->fb_width, sizes->fb_height); in psbfb_create() 541 struct drm_fb_helper_surface_size *sizes) in psbfb_probe() argument 549 bytespp = sizes->surface_bpp / 8; in psbfb_probe() 556 if (ALIGN(sizes->fb_width * bytespp, 64) * sizes->fb_height > in psbfb_probe() 558 sizes->surface_bpp = 16; in psbfb_probe() [all …]
|
/linux-4.1.27/drivers/gpu/drm/cirrus/ |
D | cirrus_fbdev.c | 164 struct drm_fb_helper_surface_size *sizes) in cirrusfb_create() argument 179 mode_cmd.width = sizes->surface_width; in cirrusfb_create() 180 mode_cmd.height = sizes->surface_height; in cirrusfb_create() 181 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7) / 8); in cirrusfb_create() 182 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in cirrusfb_create() 183 sizes->surface_depth); in cirrusfb_create() 228 drm_fb_helper_fill_var(info, &gfbdev->helper, sizes->fb_width, in cirrusfb_create() 229 sizes->fb_height); in cirrusfb_create()
|
/linux-4.1.27/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.1.27/drivers/gpu/drm/ast/ |
D | ast_fb.c | 187 struct drm_fb_helper_surface_size *sizes) in astfb_create() argument 200 mode_cmd.width = sizes->surface_width; in astfb_create() 201 mode_cmd.height = sizes->surface_height; in astfb_create() 202 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7)/8); in astfb_create() 204 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in astfb_create() 205 sizes->surface_depth); in astfb_create() 258 drm_fb_helper_fill_var(info, &afbdev->helper, sizes->fb_width, sizes->fb_height); in astfb_create()
|
/linux-4.1.27/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.1.27/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 " \ 279 if (sizes[i]) { in xpram_setup_sizes() 280 size = simple_strtoull(sizes[i], &sizes_end, 0); in xpram_setup_sizes()
|
/linux-4.1.27/drivers/gpu/drm/udl/ |
D | udl_fb.c | 473 struct drm_fb_helper_surface_size *sizes) in udlfb_create() argument 486 if (sizes->surface_bpp == 24) in udlfb_create() 487 sizes->surface_bpp = 32; in udlfb_create() 489 mode_cmd.width = sizes->surface_width; in udlfb_create() 490 mode_cmd.height = sizes->surface_height; in udlfb_create() 491 mode_cmd.pitches[0] = mode_cmd.width * ((sizes->surface_bpp + 7) / 8); in udlfb_create() 493 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in udlfb_create() 494 sizes->surface_depth); in udlfb_create() 534 drm_fb_helper_fill_var(info, &ufbdev->helper, sizes->fb_width, sizes->fb_height); in udlfb_create()
|
/linux-4.1.27/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_surface.c | 230 src_size = srf->sizes; in vmw_surface_define_encode() 264 const struct drm_vmw_size *cur_size = &srf->sizes[i]; in vmw_surface_dma_encode() 633 kfree(srf->sizes); in vmw_user_surface_free() 762 srf->sizes = kmalloc(srf->num_sizes * sizeof(*srf->sizes), GFP_KERNEL); in vmw_surface_define_ioctl() 763 if (unlikely(srf->sizes == NULL)) { in vmw_surface_define_ioctl() 769 if (unlikely(srf->sizes == NULL)) { in vmw_surface_define_ioctl() 777 ret = copy_from_user(srf->sizes, user_sizes, in vmw_surface_define_ioctl() 778 srf->num_sizes * sizeof(*srf->sizes)); in vmw_surface_define_ioctl() 784 srf->base_size = *srf->sizes; in vmw_surface_define_ioctl() 790 cur_size = srf->sizes; in vmw_surface_define_ioctl() [all …]
|
D | vmwgfx_drv.h | 160 struct drm_vmw_size *sizes; member
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | nouveau_fbcon.c | 333 struct drm_fb_helper_surface_size *sizes) in nouveau_fbcon_create() argument 349 mode_cmd.width = sizes->surface_width; in nouveau_fbcon_create() 350 mode_cmd.height = sizes->surface_height; in nouveau_fbcon_create() 352 mode_cmd.pitches[0] = mode_cmd.width * (sizes->surface_bpp >> 3); in nouveau_fbcon_create() 355 mode_cmd.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp, in nouveau_fbcon_create() 356 sizes->surface_depth); in nouveau_fbcon_create() 434 drm_fb_helper_fill_var(info, &fbcon->helper, sizes->fb_width, sizes->fb_height); in nouveau_fbcon_create()
|
/linux-4.1.27/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.1.27/drivers/crypto/ux500/ |
D | Kconfig | 13 AES-ECB, CBC and CTR with keys sizes of 128, 192 and 256 bit sizes.
|
/linux-4.1.27/drivers/media/usb/em28xx/ |
D | em28xx-vbi.c | 36 unsigned int sizes[], void *alloc_ctxs[]) in vbi_queue_setup() argument 55 sizes[0] = size; in vbi_queue_setup()
|
/linux-4.1.27/drivers/media/usb/au0828/ |
D | au0828-vbi.c | 35 unsigned int sizes[], void *alloc_ctxs[]) in vbi_queue_setup() argument 47 sizes[0] = size; in vbi_queue_setup()
|
D | au0828-video.c | 641 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 652 sizes[0] = size; in queue_setup()
|
/linux-4.1.27/drivers/gpu/drm/qxl/ |
D | qxl_fb.c | 502 struct drm_fb_helper_surface_size *sizes) in qxlfb_create() argument 513 int bpp = sizes->surface_bpp; in qxlfb_create() 514 int depth = sizes->surface_depth; in qxlfb_create() 517 mode_cmd.width = sizes->surface_width; in qxlfb_create() 518 mode_cmd.height = sizes->surface_height; in qxlfb_create() 571 drm_fb_helper_fill_var(info, &qfbdev->helper, sizes->fb_width, in qxlfb_create() 572 sizes->fb_height); in qxlfb_create() 626 struct drm_fb_helper_surface_size *sizes) in qxl_fb_find_or_create_single() argument 634 ret = qxlfb_create(qfbdev, sizes); in qxl_fb_find_or_create_single()
|
/linux-4.1.27/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.1.27/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 | 2383 const size_t *sizes, int nr_vms, in pcpu_get_vm_areas() argument 2398 end = start + sizes[area]; in pcpu_get_vm_areas() 2402 BUG_ON(!IS_ALIGNED(sizes[area], align)); in pcpu_get_vm_areas() 2410 unsigned long end2 = start2 + sizes[area2]; in pcpu_get_vm_areas() 2419 last_end = offsets[last_area] + sizes[last_area]; in pcpu_get_vm_areas() 2443 end = start + sizes[area]; in pcpu_get_vm_areas() 2500 end = start + sizes[area]; in pcpu_get_vm_areas() 2509 va->va_end = va->va_start + sizes[area]; in pcpu_get_vm_areas()
|
/linux-4.1.27/drivers/crypto/nx/ |
D | nx-842.c | 51 int sizes[0]; /* size of compressed blocks */ member 57 hdr->blocks_nr * sizeof(hdr->sizes[0]); in nx842_header_size() 464 hdr->sizes[i] = -max_sync_size; in nx842_compress() 475 hdr->sizes[i] = size; in nx842_compress() 590 if (hdr->sizes[i] < 0) { in nx842_decompress() 592 size = abs(hdr->sizes[i]); in nx842_decompress() 607 ((inbuf + hdr->sizes[i] - 1) & NX842_HW_PAGE_MASK))) { in nx842_decompress() 610 op.inlen = hdr->sizes[i]; in nx842_decompress() 613 nx842_build_scatterlist(inbuf, hdr->sizes[i] , &slin); in nx842_decompress() 653 inbuf += hdr->sizes[i]; in nx842_decompress() [all …]
|
/linux-4.1.27/drivers/media/platform/marvell-ccic/ |
D | mcam-core.c | 1070 unsigned int *num_planes, unsigned int sizes[], in mcam_vb_queue_setup() argument 1076 sizes[0] = cam->pix_format.sizeimage; in mcam_vb_queue_setup() 1568 struct v4l2_frmsizeenum *sizes) in mcam_vidioc_enum_framesizes() argument 1573 .index = sizes->index, in mcam_vidioc_enum_framesizes() 1578 f = mcam_find_format(sizes->pixel_format); in mcam_vidioc_enum_framesizes() 1579 if (f->pixelformat != sizes->pixel_format) in mcam_vidioc_enum_framesizes() 1589 sizes->type = V4L2_FRMSIZE_TYPE_DISCRETE; in mcam_vidioc_enum_framesizes() 1590 sizes->discrete.width = fse.min_width; in mcam_vidioc_enum_framesizes() 1591 sizes->discrete.height = fse.min_height; in mcam_vidioc_enum_framesizes() 1594 sizes->type = V4L2_FRMSIZE_TYPE_CONTINUOUS; in mcam_vidioc_enum_framesizes() [all …]
|
/linux-4.1.27/drivers/media/pci/cx88/ |
D | cx88-vbi.c | 114 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 120 sizes[0] = VBI_LINE_NTSC_COUNT * VBI_LINE_LENGTH * 2; in queue_setup() 122 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-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()
|
D | cx88-video.c | 436 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 442 sizes[0] = (dev->fmt->depth * core->width * core->height) >> 3; in queue_setup()
|
/linux-4.1.27/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.1.27/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.1.27/arch/x86/kernel/cpu/ |
D | perf_event_intel_pt.c | 401 topa->size += sizes(order); in topa_insert_pages() 425 sizes(topa->table[i].size), in pt_topa_dump() 475 base += sizes(buf->cur->table[topa_idx].size); in pt_update_head() 504 return sizes(buf->cur->table[buf->cur_idx].size); in pt_buffer_region_size() 534 buf->output_off == sizes(TOPA_ENTRY(buf->cur, buf->cur_idx)->size)) { in pt_handle_status() 626 sizes(TOPA_ENTRY(buf->cur, buf->cur_idx)->size)) in pt_buffer_reset_markers() 723 buf->output_off = head & (sizes(buf->cur->table[buf->cur_idx].size) - 1); in pt_buffer_reset_offsets()
|
D | intel_pt.h | 51 static inline unsigned int sizes(enum topa_sz tsz) in sizes() function
|
/linux-4.1.27/drivers/media/platform/ |
D | via-camera.c | 1133 struct v4l2_frmsizeenum *sizes) in viacam_enum_framesizes() argument 1135 if (sizes->index != 0) in viacam_enum_framesizes() 1137 sizes->type = V4L2_FRMSIZE_TYPE_CONTINUOUS; in viacam_enum_framesizes() 1138 sizes->stepwise.min_width = QCIF_WIDTH; in viacam_enum_framesizes() 1139 sizes->stepwise.min_height = QCIF_HEIGHT; in viacam_enum_framesizes() 1140 sizes->stepwise.max_width = VGA_WIDTH; in viacam_enum_framesizes() 1141 sizes->stepwise.max_height = VGA_HEIGHT; in viacam_enum_framesizes() 1142 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 | 717 unsigned int sizes[], void *alloc_ctxs[]) in vim2m_queue_setup() argument 732 sizes[0] = size; in vim2m_queue_setup()
|
D | sh_veu.c | 870 unsigned int sizes[], void *alloc_ctxs[]) in sh_veu_queue_setup() argument 903 sizes[0] = size; in sh_veu_queue_setup()
|
D | m2m-deinterlace.c | 802 unsigned int sizes[], void *alloc_ctxs[]) in deinterlace_queue_setup() argument 821 sizes[0] = size; in deinterlace_queue_setup()
|
/linux-4.1.27/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.1.27/drivers/media/pci/saa7134/ |
D | saa7134-vbi.c | 140 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 154 sizes[0] = size; in queue_setup()
|
D | saa7134-ts.c | 117 unsigned int sizes[], void *alloc_ctxs[]) in saa7134_ts_queue_setup() argument 129 sizes[0] = size; in saa7134_ts_queue_setup()
|
D | saa7134.h | 820 unsigned int sizes[], void *alloc_ctxs[]);
|
/linux-4.1.27/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 | 242 However, we have not yet implemented optimal no-op sizes (they are currently
|
D | unaligned-memory-access.txt | 37 In reality, only a few architectures require natural alignment on all sizes
|
/linux-4.1.27/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 81 sizes[0] = mp->plane_fmt[0].sizeimage; in vid_out_queue_setup() 82 if (sizes[0] < size) in vid_out_queue_setup() 85 sizes[p] = mp->plane_fmt[p].sizeimage; in vid_out_queue_setup() 86 if (sizes[p] < dev->bytesperline_out[p] * h) in vid_out_queue_setup() 91 sizes[p] = p ? dev->bytesperline_out[p] * h : size; in vid_out_queue_setup() 106 dprintk(dev, 1, "%s: size[%u]=%u\n", __func__, p, sizes[p]); in vid_out_queue_setup()
|
D | vivid-sdr-cap.c | 196 unsigned sizes[], void *alloc_ctxs[]) in sdr_cap_queue_setup() argument 199 sizes[0] = SDR_CAP_SAMPLES_PER_BUF * 2; in sdr_cap_queue_setup()
|
D | vivid-vbi-cap.c | 140 unsigned sizes[], void *alloc_ctxs[]) in vbi_cap_queue_setup() argument 151 sizes[0] = size; in vbi_cap_queue_setup()
|
D | vivid-vid-cap.c | 100 unsigned sizes[], void *alloc_ctxs[]) in vid_cap_queue_setup() argument 142 sizes[p] = mp->plane_fmt[p].sizeimage; in vid_cap_queue_setup() 143 if (sizes[p] < tpg_g_line_width(&dev->tpg, p) * h + in vid_cap_queue_setup() 149 sizes[p] = tpg_g_line_width(&dev->tpg, p) * h + in vid_cap_queue_setup() 165 dprintk(dev, 1, "%s: size[%u]=%u\n", __func__, p, sizes[p]); in vid_cap_queue_setup()
|
/linux-4.1.27/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()
|
D | cx23885-dvb.c | 97 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 104 sizes[0] = port->ts_packet_size * port->ts_packet_count; in queue_setup()
|
/linux-4.1.27/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.1.27/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 | 167 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 188 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.1.27/arch/arm/include/asm/ |
D | Kbuild | 32 generic-y += sizes.h
|
/linux-4.1.27/arch/sh/include/asm/ |
D | Kbuild | 32 generic-y += sizes.h
|
/linux-4.1.27/crypto/ |
D | Kconfig | 725 The AES specifies three key sizes: 128, 192 and 256 bits 747 The AES specifies three key sizes: 128, 192 and 256 bits 769 The AES specifies three key sizes: 128, 192 and 256 bits 799 The AES specifies three key sizes: 128, 192 and 256 bits 828 The AES specifies three key sizes: 128, 192 and 256 bits 922 The Camellia specifies three key sizes: 128, 192 and 256 bits. 941 The Camellia specifies three key sizes: 128, 192 and 256 bits. 963 The Camellia specifies three key sizes: 128, 192 and 256 bits. 986 The Camellia specifies three key sizes: 128, 192 and 256 bits. 1002 The Camellia specifies three key sizes: 128, 192 and 256 bits. [all …]
|
/linux-4.1.27/scripts/kconfig/ |
D | qconf.cc | 1230 Q3ValueList<int> sizes = configSettings->readSizes("/split", &ok); in ConfigSearchWindow() local 1232 split->setSizes(sizes); in ConfigSearchWindow() 1246 configSettings->writeSizes("/split", split->sizes()); in saveSettings() 1468 Q3ValueList<int> sizes = configSettings->readSizes("/split1", &ok); in ConfigMainWindow() local 1470 split1->setSizes(sizes); in ConfigMainWindow() 1472 sizes = configSettings->readSizes("/split2", &ok); in ConfigMainWindow() 1474 split2->setSizes(sizes); in ConfigMainWindow() 1719 configSettings->writeSizes("/split1", split1->sizes()); in saveSettings() 1720 configSettings->writeSizes("/split2", split2->sizes()); in saveSettings()
|
/linux-4.1.27/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.1.27/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.1.27/include/drm/ |
D | drm_fb_helper.h | 95 struct drm_fb_helper_surface_size *sizes);
|
/linux-4.1.27/Documentation/spi/ |
D | spi-sc18is602 | 34 sizes to access a device, can not be used directly to read data from EEPROM.
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | edt-ft5x06.txt | 4 There are 3 variants of the chip for various touch panel sizes
|
/linux-4.1.27/Documentation/virtual/kvm/ |
D | review-checklist.txt | 30 (all variables and sizes naturally aligned on 64-bit; use specific types
|
D | api.txt | 1625 This avoids any complications with differing word sizes. 1714 POWER processors support a set of sizes for the RMA that usually 2215 array of supported segment page sizes: 2227 When that flag is set, guest page sizes must "fit" the backing 2228 store page sizes. When not set, any page size in the list can 2238 page sizes for a segment in increasing order. Each entry is defined 2256 size provides the list of supported actual page sizes (which can be 2259 8 entries sorted by increasing sizes and an entry with a "0" shift
|
/linux-4.1.27/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.1.27/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.1.27/drivers/media/usb/uvc/ |
D | uvc_queue.c | 73 unsigned int sizes[], void *alloc_ctxs[]) in uvc_queue_setup() argument 84 sizes[0] = fmt ? fmt->fmt.pix.sizeimage in uvc_queue_setup()
|
/linux-4.1.27/arch/arm64/include/asm/ |
D | Kbuild | 45 generic-y += sizes.h
|
/linux-4.1.27/arch/mips/kvm/ |
D | 00README.txt | 17 Note that due to cache aliasing issues, 4K page sizes are NOT supported.
|
/linux-4.1.27/drivers/media/platform/soc_camera/ |
D | mx3_camera.c | 190 unsigned int sizes[], void *alloc_ctxs[]) in mx3_videobuf_setup() argument 220 sizes[0] = max_t(u32, fmt->fmt.pix.sizeimage, ret); in mx3_videobuf_setup() 223 sizes[0] = icd->sizeimage; in mx3_videobuf_setup() 236 sizes[0] * *count + mx3_cam->buf_total > MAX_VIDEO_MEM * 1024 * 1024) in mx3_videobuf_setup() 238 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 242 sizes[0] = max_t(u32, fmt->fmt.pix.sizeimage, ret); in sh_mobile_ceu_videobuf_setup() 245 sizes[0] = icd->sizeimage; in sh_mobile_ceu_videobuf_setup() 258 size_t size = PAGE_ALIGN(sizes[0]) * *count; in sh_mobile_ceu_videobuf_setup() 262 PAGE_ALIGN(sizes[0]); in sh_mobile_ceu_videobuf_setup() 267 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 480 dev_dbg(icd->parent, "count=%d, size=%d\n", *count, sizes[0]); in mx2_videobuf_setup() 488 sizes[0] = icd->sizeimage; in mx2_videobuf_setup() 493 sizes[0] * *count > MAX_VIDEO_MEM * 1024 * 1024) in mx2_videobuf_setup() 494 *count = (MAX_VIDEO_MEM * 1024 * 1024) / sizes[0]; in mx2_videobuf_setup()
|
D | rcar_vin.c | 532 unsigned int sizes[], void *alloc_ctxs[]) in rcar_vin_videobuf_setup() argument 559 sizes[0] = max_t(u32, fmt->fmt.pix.sizeimage, ret); in rcar_vin_videobuf_setup() 562 sizes[0] = icd->sizeimage; in rcar_vin_videobuf_setup() 582 dev_dbg(icd->parent, "count=%d, size=%u\n", *count, sizes[0]); in rcar_vin_videobuf_setup()
|
D | atmel-isi.c | 242 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 258 sizes[0] = size; in queue_setup()
|
/linux-4.1.27/arch/hexagon/include/asm/ |
D | Kbuild | 48 generic-y += sizes.h
|
/linux-4.1.27/include/media/ |
D | v4l2-common.h | 182 const struct v4l2_frmsize_discrete *sizes; member
|
D | videobuf2-core.h | 315 unsigned int sizes[], void *alloc_ctxs[]);
|
/linux-4.1.27/drivers/media/pci/tw68/ |
D | tw68-video.c | 381 unsigned int sizes[], void *alloc_ctxs[]) in tw68_queue_setup() argument 386 sizes[0] = (dev->fmt->depth * dev->width * dev->height) >> 3; in tw68_queue_setup() 393 if (fmt && fmt->fmt.pix.sizeimage < sizes[0]) in tw68_queue_setup() 398 tot_bufs = tw68_buffer_count(sizes[0], tot_bufs); in tw68_queue_setup()
|
/linux-4.1.27/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 | 322 consists of a set of sections. By default, section and zone sizes are set to one 323 segment size identically, but users can easily modify the sizes by mkfs.
|
/linux-4.1.27/arch/unicore32/include/asm/ |
D | Kbuild | 49 generic-y += sizes.h
|
/linux-4.1.27/drivers/media/platform/exynos4-is/ |
D | fimc-isp-video.c | 44 unsigned int sizes[], void *allocators[]) in isp_video_capture_queue_setup() argument 71 sizes[i] = max(size, pixm->plane_fmt[i].sizeimage); in isp_video_capture_queue_setup() 73 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 | 349 unsigned int sizes[], void *allocators[]) in queue_setup() argument 375 sizes[i] = max(size, pixm->plane_fmt[i].sizeimage); in queue_setup() 377 sizes[i] = frame->payload[i]; in queue_setup() 379 sizes[i] = max_t(u32, size, frame->payload[i]); in queue_setup()
|
D | fimc-lite.c | 365 unsigned int sizes[], void *allocators[]) in queue_setup() argument 390 sizes[i] = max(size, pixm->plane_fmt[i].sizeimage); in queue_setup() 392 sizes[i] = size; in queue_setup()
|
/linux-4.1.27/arch/arm/ |
D | Kconfig-nommu | 9 Say Y to manually set the base addresses and sizes.
|
/linux-4.1.27/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.1.27/Documentation/vm/ |
D | balance | 30 been running production machines of varying memory sizes, and seems to be 37 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
|
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 286 memory in regular page sizes and with regular pte/pmd mappings).
|
/linux-4.1.27/drivers/staging/media/omap4iss/ |
D | iss_video.c | 293 unsigned int sizes[], void *alloc_ctxs[]) in iss_video_queue_setup() argument 301 sizes[0] = vfh->format.fmt.pix.sizeimage; in iss_video_queue_setup() 302 if (sizes[0] == 0) in iss_video_queue_setup() 307 *count = min(*count, video->capture_mem / PAGE_ALIGN(sizes[0])); in iss_video_queue_setup()
|
/linux-4.1.27/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.1.27/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.1.27/drivers/media/usb/stk1160/ |
D | stk1160-v4l.c | 521 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 538 sizes[0] = size; in queue_setup()
|
/linux-4.1.27/Documentation/filesystems/pohmelfs/ |
D | network_protocol.txt | 124 @size - incorporates all embedded command sizes including theirs header sizes.
|
/linux-4.1.27/arch/frv/mm/ |
D | tlb-flush.S | 28 # sizes corresponding to TPXR.LMAX
|
/linux-4.1.27/drivers/media/usb/s2255/ |
D | s2255drv.c | 664 unsigned int sizes[], void *alloc_ctxs[]) in queue_setup() argument 670 sizes[0] = vc->width * vc->height * (vc->fmt->depth >> 3); in queue_setup() 1404 const struct v4l2_frmsize_discrete *sizes; in vidioc_enum_frameintervals() local 1417 sizes = is_ntsc ? ntsc_sizes : pal_sizes; in vidioc_enum_frameintervals() 1418 for (i = 0; i < NUM_SIZE_ENUMS; i++, sizes++) in vidioc_enum_frameintervals() 1419 if (fe->width == sizes->width && in vidioc_enum_frameintervals() 1420 fe->height == sizes->height) in vidioc_enum_frameintervals()
|
/linux-4.1.27/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.1.27/drivers/media/usb/usbtv/ |
D | usbtv-video.c | 603 unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[]) in usbtv_queue_setup() argument 610 sizes[0] = USBTV_CHUNK * usbtv->n_chunks * 2 * sizeof(u32); in usbtv_queue_setup()
|
/linux-4.1.27/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.1.27/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.1.27/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.1.27/drivers/media/usb/airspy/ |
D | airspy.c | 490 unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[]) in airspy_queue_setup() argument 500 sizes[0] = PAGE_ALIGN(s->buffersize); in airspy_queue_setup() 502 dev_dbg(s->dev, "nbuffers=%d sizes[0]=%d\n", *nbuffers, sizes[0]); in airspy_queue_setup()
|
/linux-4.1.27/drivers/media/pci/solo6x10/ |
D | solo6x10-v4l2.c | 316 unsigned int sizes[], void *alloc_ctxs[]) in solo_queue_setup() argument 320 sizes[0] = solo_image_size(solo_dev); in solo_queue_setup()
|
D | solo6x10-v4l2-enc.c | 664 unsigned int *num_planes, unsigned int sizes[], in solo_enc_queue_setup() argument 669 sizes[0] = FRAME_BUF_SIZE; in solo_enc_queue_setup()
|
/linux-4.1.27/Documentation/accounting/ |
D | taskstats.txt | 50 receive buffer sizes. 169 - increase the receive buffer sizes for the netlink sockets opened by
|
/linux-4.1.27/drivers/media/platform/xilinx/ |
D | xilinx-dma.c | 314 unsigned int sizes[], void *alloc_ctxs[]) in xvip_dma_queue_setup() argument 324 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : dma->format.sizeimage; in xvip_dma_queue_setup()
|
/linux-4.1.27/drivers/input/touchscreen/ |
D | sur40.c | 636 unsigned int sizes[], void *alloc_ctxs[]) in sur40_queue_setup() argument 647 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : sur40_video_format.sizeimage; in sur40_queue_setup()
|
/linux-4.1.27/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.1.27/kernel/ |
D | audit.c | 959 u32 sizes[2]; in audit_receive_msg() local 966 memcpy(sizes, bufp, 2 * sizeof(u32)); in audit_receive_msg() 969 old = audit_unpack_string(&bufp, &msglen, sizes[0]); in audit_receive_msg() 974 new = audit_unpack_string(&bufp, &msglen, sizes[1]); in audit_receive_msg()
|
/linux-4.1.27/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.1.27/drivers/media/usb/hackrf/ |
D | hackrf.c | 468 unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[]) in hackrf_queue_setup() argument 478 sizes[0] = PAGE_ALIGN(dev->buffersize); in hackrf_queue_setup() 480 dev_dbg(dev->dev, "nbuffers=%d sizes[0]=%d\n", *nbuffers, sizes[0]); in hackrf_queue_setup()
|
/linux-4.1.27/drivers/media/usb/msi2500/ |
D | msi2500.c | 618 unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[]) in msi2500_queue_setup() argument 627 sizes[0] = PAGE_ALIGN(s->buffersize); in msi2500_queue_setup() 628 dev_dbg(s->dev, "nbuffers=%d sizes[0]=%d\n", *nbuffers, sizes[0]); in msi2500_queue_setup()
|
/linux-4.1.27/arch/arm/crypto/ |
D | Kconfig | 91 The AES specifies three key sizes: 128, 192 and 256 bits
|
/linux-4.1.27/Documentation/s390/ |
D | DASD | 26 sizes, under VM and on the bare hardware (LPAR), using internal disks
|
/linux-4.1.27/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.1.27/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.1.27/sound/soc/codecs/ |
D | wm_adsp.c | 540 int ret, offset, type, sizes; in wm_adsp_load() local 589 sizes = sizeof(*adsp1_sizes); in wm_adsp_load() 601 sizes = sizeof(*adsp2_sizes); in wm_adsp_load() 616 sizes + sizeof(*footer)) { in wm_adsp_load()
|
/linux-4.1.27/fs/xfs/ |
D | Kconfig | 11 variable block sizes, is extent based, and makes extensive use of
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | ChangeLog | 47 FPA11*. Unfortunately FPA11 and user_fp are of different sizes;
|
/linux-4.1.27/drivers/media/usb/pwc/ |
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
|
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()
|
/linux-4.1.27/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.1.27/drivers/media/platform/s3c-camif/ |
D | camif-capture.c | 446 unsigned int sizes[], void *allocators[]) in queue_setup() argument 468 sizes[0] = max(size, pix->sizeimage); in queue_setup() 470 sizes[0] = size; in queue_setup() 473 pr_debug("size: %u\n", sizes[0]); in queue_setup()
|
/linux-4.1.27/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.
|
D | cxgb.txt | 165 RX_WINDOW sizes of 256KB - 512KB should be sufficient.
|
/linux-4.1.27/drivers/media/pci/cx25821/ |
D | cx25821-video.c | 146 unsigned int sizes[], void *alloc_ctxs[]) in cx25821_queue_setup() argument 155 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : size; in cx25821_queue_setup()
|
/linux-4.1.27/arch/tile/ |
D | Kconfig | 61 # Support for additional huge page sizes besides HPAGE_SIZE. 63 # hypervisor. TILEPro in any case does not support page sizes
|
/linux-4.1.27/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.1.27/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.1.27/drivers/media/dvb-frontends/ |
D | rtl2832_sdr.c | 487 unsigned int *nplanes, unsigned int sizes[], void *alloc_ctxs[]) in rtl2832_sdr_queue_setup() argument 498 sizes[0] = PAGE_ALIGN(dev->buffersize); in rtl2832_sdr_queue_setup() 499 dev_dbg(&pdev->dev, "nbuffers=%d sizes[0]=%d\n", *nbuffers, sizes[0]); in rtl2832_sdr_queue_setup()
|
/linux-4.1.27/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.1.27/drivers/crypto/ |
D | Kconfig | 134 for all AES key sizes. 136 key sizes and XTS mode is hardware accelerated for 256 and
|
/linux-4.1.27/drivers/media/platform/blackfin/ |
D | bfin_capture.c | 202 unsigned int sizes[], void *alloc_ctxs[]) in bcap_queue_setup() argument 213 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : bcap_dev->fmt.sizeimage; in bcap_queue_setup()
|
/linux-4.1.27/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.1.27/drivers/staging/media/dt3155v4l/ |
D | dt3155v4l.c | 223 unsigned int sizes[], void *alloc_ctxs[]) in dt3155_queue_setup() argument 232 sizes[0] = img_width * img_height; in dt3155_queue_setup()
|
/linux-4.1.27/drivers/media/platform/ti-vpe/ |
D | vpe.c | 1803 unsigned int sizes[], void *alloc_ctxs[]) in vpe_queue_setup() argument 1814 sizes[i] = q_data->sizeimage[i]; in vpe_queue_setup() 1819 sizes[VPE_LUMA]); in vpe_queue_setup() 1821 vpe_dbg(ctx->dev, " and %d\n", sizes[VPE_CHROMA]); in vpe_queue_setup()
|
/linux-4.1.27/Documentation/input/ |
D | ntrig.txt | 59 to logical sizes is used to adjust the size based filter parameters.
|
/linux-4.1.27/Documentation/power/powercap/ |
D | powercap.txt | 169 limits and 2 attributes representing the sizes of the time windows. Such that,
|
/linux-4.1.27/drivers/media/usb/go7007/ |
D | go7007-v4l2.c | 372 unsigned int sizes[], void *alloc_ctxs[]) in go7007_queue_setup() argument 374 sizes[0] = GO7007_BUF_SIZE; in go7007_queue_setup()
|
/linux-4.1.27/drivers/media/platform/vsp1/ |
D | vsp1_video.c | 713 unsigned int sizes[], void *alloc_ctxs[]) in vsp1_video_queue_setup() argument 735 sizes[i] = format->plane_fmt[i].sizeimage; in vsp1_video_queue_setup()
|
/linux-4.1.27/arch/m68k/math-emu/ |
D | fp_scan.S | 476 | data sizes corresponding to the operand formats
|
/linux-4.1.27/Documentation/locking/ |
D | mutex-design.txt | 149 for the largest lock in the kernel. Larger structure sizes mean more
|
/linux-4.1.27/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.1.27/Documentation/arm/ |
D | vlocks.txt | 151 different sizes, similarly to many other architectures. Note that
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-class-mtd | 81 For devices that have variable eraseblock sizes, this
|
/linux-4.1.27/drivers/staging/media/davinci_vpfe/ |
D | vpfe_video.c | 1086 unsigned int sizes[], void *alloc_ctxs[]) in vpfe_buffer_queue_setup() argument 1106 sizes[0] = size; in vpfe_buffer_queue_setup()
|
/linux-4.1.27/drivers/media/platform/davinci/ |
D | vpbe_display.c | 238 unsigned int sizes[], void *alloc_ctxs[]) in vpbe_buffer_queue_setup() argument 255 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : layer->pix_fmt.sizeimage; in vpbe_buffer_queue_setup()
|
D | vpif_display.c | 112 unsigned int sizes[], void *alloc_ctxs[]) in vpif_buffer_queue_setup() argument 124 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : common->fmt.fmt.pix.sizeimage; in vpif_buffer_queue_setup()
|
D | vpif_capture.c | 117 unsigned int sizes[], void *alloc_ctxs[]) in vpif_buffer_queue_setup() argument 133 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : common->fmt.fmt.pix.sizeimage; in vpif_buffer_queue_setup()
|
/linux-4.1.27/drivers/iommu/ |
D | Kconfig | 30 sizes at both stage-1 and stage-2, as well as address spaces
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | fpsp.h | 322 | fsave sizes and formats
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | cpus.txt | 53 registers sizes.
|
/linux-4.1.27/drivers/media/platform/am437x/ |
D | am437x-vpfe.c | 1927 unsigned int sizes[], void *alloc_ctxs[]) in vpfe_queue_setup() argument 1938 sizes[0] = fmt ? fmt->fmt.pix.sizeimage : vpfe->fmt.fmt.pix.sizeimage; in vpfe_queue_setup() 1942 "nbuffers=%d, size=%u\n", *nbuffers, sizes[0]); in vpfe_queue_setup()
|
/linux-4.1.27/Documentation/prctl/ |
D | seccomp_filter.txt | 38 path (avoiding pathological sizes or selecting which of the multiplexed
|
/linux-4.1.27/Documentation/sysctl/ |
D | net.txt | 259 are not tied to a specific remote address. The Tx and Rx queue sizes indicate
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.1992-1997 | 617 * sd.c: Add support for sd_hardsizes (hard sector sizes). 1454 * fdomain.c: Update to version 5.16 (Handle different FIFO sizes 1479 * fdomain.c: Update to version 5.16 (Handle different FIFO sizes 1898 instead of INIT_REQUEST. Allow sector sizes of 1024 and 256. For 1905 to 1. Use INIT_SCSI_REQUEST. Allow 512 byte sector sizes. Do a
|
/linux-4.1.27/Documentation/usb/ |
D | ehci.txt | 155 (isochronous and interrupt) allow the larger packet sizes which let you
|
/linux-4.1.27/Documentation/devicetree/bindings/crypto/ |
D | fsl-sec4.txt | 186 contains up to 5 sets of addresses and their lengths (sizes) that
|
/linux-4.1.27/arch/sh/lib/ |
D | memcpy-sh4.S | 196 ! cycle counts for differnet sizes using byte-at-a-time vs. optimised):
|
/linux-4.1.27/Documentation/arm/OMAP/ |
D | DSS | 140 on all of the overlays. Note that in this case the overlay input sizes must be
|