min_pitch         205 drivers/gpu/drm/drm_framebuffer.c 		u64 min_pitch = drm_format_info_min_pitch(info, i, width);
min_pitch         217 drivers/gpu/drm/drm_framebuffer.c 		if (min_pitch > UINT_MAX)
min_pitch         223 drivers/gpu/drm/drm_framebuffer.c 		if (block_size && r->pitches[i] < min_pitch) {
min_pitch         215 drivers/gpu/drm/drm_gem_cma_helper.c 	unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
min_pitch         218 drivers/gpu/drm/drm_gem_cma_helper.c 	if (args->pitch < min_pitch)
min_pitch         219 drivers/gpu/drm/drm_gem_cma_helper.c 		args->pitch = min_pitch;
min_pitch         451 drivers/gpu/drm/drm_gem_shmem_helper.c 	u32 min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
min_pitch         455 drivers/gpu/drm/drm_gem_shmem_helper.c 		args->pitch = min_pitch;
min_pitch         459 drivers/gpu/drm/drm_gem_shmem_helper.c 		if (args->pitch < min_pitch)
min_pitch         460 drivers/gpu/drm/drm_gem_shmem_helper.c 			args->pitch = min_pitch;
min_pitch         289 drivers/gpu/drm/rcar-du/rcar_du_kms.c 	unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
min_pitch         301 drivers/gpu/drm/rcar-du/rcar_du_kms.c 	args->pitch = roundup(min_pitch, align);
min_pitch         416 drivers/gpu/drm/rockchip/rockchip_drm_gem.c 	int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
min_pitch         421 drivers/gpu/drm/rockchip/rockchip_drm_gem.c 	args->pitch = ALIGN(min_pitch, 64);
min_pitch          42 drivers/gpu/drm/stm/drv.c 	unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
min_pitch          48 drivers/gpu/drm/stm/drv.c 	args->pitch = roundup(min_pitch, 128);
min_pitch         410 drivers/gpu/drm/tegra/gem.c 	unsigned int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
min_pitch         414 drivers/gpu/drm/tegra/gem.c 	args->pitch = round_up(min_pitch, tegra->pitch_align);
min_pitch         476 drivers/gpu/drm/vc4/vc4_bo.c 	int min_pitch = DIV_ROUND_UP(args->width * args->bpp, 8);
min_pitch         480 drivers/gpu/drm/vc4/vc4_bo.c 	if (args->pitch < min_pitch)
min_pitch         481 drivers/gpu/drm/vc4/vc4_bo.c 		args->pitch = min_pitch;