/Linux-v4.19/scripts/ |
D | cleanfile | 13 $max_width = 79; 87 $max_width = shift(@ARGV)+0; 158 if ($max_width && $l_width > $max_width) { 160 "$f:$lineno: line exceeds $max_width characters ($l_width)\n";
|
D | cleanpatch | 13 $max_width = 79; 87 $max_width = shift(@ARGV)+0; 168 if ($max_width && $l_width > $max_width) { 170 "$f:$lineno: adds line exceeds $max_width ",
|
/Linux-v4.19/arch/arm/plat-samsung/ |
D | platformdata.c | 43 if (pd->max_width) in s3c_sdhci_set_platdata() 44 set->max_width = pd->max_width; in s3c_sdhci_set_platdata()
|
/Linux-v4.19/drivers/dma/ |
D | stm32-mdma.c | 409 enum dma_slave_buswidth max_width = DMA_SLAVE_BUSWIDTH_8_BYTES; in stm32_mdma_get_max_width() local 411 for (max_width = DMA_SLAVE_BUSWIDTH_8_BYTES; in stm32_mdma_get_max_width() 412 max_width > DMA_SLAVE_BUSWIDTH_1_BYTE; in stm32_mdma_get_max_width() 413 max_width >>= 1) { in stm32_mdma_get_max_width() 418 if ((((buf_len | addr) & (max_width - 1)) == 0) && in stm32_mdma_get_max_width() 419 tlen >= max_width) in stm32_mdma_get_max_width() 423 return max_width; in stm32_mdma_get_max_width() 927 enum dma_slave_buswidth max_width; in stm32_mdma_prep_dma_memcpy() local 1001 max_width = stm32_mdma_get_max_width(src, len, tlen); in stm32_mdma_prep_dma_memcpy() 1002 src_bus_width = stm32_mdma_get_width(chan, max_width); in stm32_mdma_prep_dma_memcpy() [all …]
|
D | stm32-dma.c | 271 enum dma_slave_buswidth max_width; in stm32_dma_get_max_width() local 274 max_width = DMA_SLAVE_BUSWIDTH_4_BYTES; in stm32_dma_get_max_width() 276 max_width = DMA_SLAVE_BUSWIDTH_2_BYTES; in stm32_dma_get_max_width() 278 while ((buf_len < max_width || buf_len % max_width) && in stm32_dma_get_max_width() 279 max_width > DMA_SLAVE_BUSWIDTH_1_BYTE) in stm32_dma_get_max_width() 280 max_width = max_width >> 1; in stm32_dma_get_max_width() 282 return max_width; in stm32_dma_get_max_width() 990 enum dma_slave_buswidth max_width; in stm32_dma_prep_dma_memcpy() local 1008 max_width = DMA_SLAVE_BUSWIDTH_1_BYTE; in stm32_dma_prep_dma_memcpy() 1010 threshold, max_width); in stm32_dma_prep_dma_memcpy()
|
/Linux-v4.19/drivers/media/usb/gspca/ |
D | w996Xcf.c | 404 max_width, max_height; in w9968cf_set_crop_window() local 407 max_width = 352; in w9968cf_set_crop_window() 410 max_width = 640; in w9968cf_set_crop_window() 438 fw = SC(sd->gspca_dev.pixfmt.width) / max_width; in w9968cf_set_crop_window() 441 cw = (fw >= fh) ? max_width : SC(sd->gspca_dev.pixfmt.width) / fh; in w9968cf_set_crop_window() 444 sd->sensor_width = max_width; in w9968cf_set_crop_window() 447 x = (max_width - cw) / 2; in w9968cf_set_crop_window()
|
/Linux-v4.19/drivers/gpu/drm/msm/disp/mdp5/ |
D | mdp5_cfg.c | 86 .max_width = 2048, 164 .max_width = 2048, 258 .max_width = 2048, 335 .max_width = 2048, 420 .max_width = 2048, 521 .max_width = 2560,
|
/Linux-v4.19/drivers/gpu/drm/atmel-hlcdc/ |
D | atmel_hlcdc_dc.c | 52 .max_width = 1280, 126 .max_width = 128, 145 .max_width = 800, 242 .max_width = 128, 263 .max_width = 2048, 359 .max_width = 2048, 591 dev->mode_config.max_width = dc->desc->max_width; in atmel_hlcdc_dc_modeset_init()
|
/Linux-v4.19/drivers/gpu/drm/tinydrm/core/ |
D | tinydrm-helpers.c | 40 unsigned int flags, u32 max_width, u32 max_height) in tinydrm_merge_clips() argument 46 dst->x2 = max_width; in tinydrm_merge_clips() 66 if (dst->x2 > max_width || dst->y2 > max_height || in tinydrm_merge_clips() 72 dst->x2 = max_width; in tinydrm_merge_clips() 76 return (dst->x2 - dst->x1) == max_width && in tinydrm_merge_clips()
|
/Linux-v4.19/drivers/media/platform/omap3isp/ |
D | ispresizer.c | 792 unsigned int max_width; in resizer_calc_ratios() local 836 max_width = MAX_4TAP_OUT_WIDTH_ES1; in resizer_calc_ratios() 841 max_width = MAX_4TAP_OUT_WIDTH_ES2; in resizer_calc_ratios() 845 max_width = MAX_4TAP_OUT_WIDTH_3630; in resizer_calc_ratios() 851 max_width = MAX_7TAP_OUT_WIDTH_ES1; in resizer_calc_ratios() 856 max_width = MAX_7TAP_OUT_WIDTH_ES2; in resizer_calc_ratios() 860 max_width = MAX_7TAP_OUT_WIDTH_3630; in resizer_calc_ratios() 864 max_width = min(((input->width - 7) * 256 + 255 - 16 - 32 * sph) / 64 in resizer_calc_ratios() 865 + 1, max_width); in resizer_calc_ratios() 876 max_width & ~(width_alignment - 1)); in resizer_calc_ratios() [all …]
|
/Linux-v4.19/drivers/mmc/host/ |
D | sdhci-s3c.c | 431 u32 max_width; in sdhci_s3c_parse_dt() local 434 if (of_property_read_u32(node, "bus-width", &max_width)) in sdhci_s3c_parse_dt() 435 max_width = 1; in sdhci_s3c_parse_dt() 436 pdata->max_width = max_width; in sdhci_s3c_parse_dt() 572 pdata->cfg_gpio(pdev, pdata->max_width); in sdhci_s3c_probe() 614 switch (pdata->max_width) { in sdhci_s3c_probe()
|
/Linux-v4.19/drivers/media/platform/soc_camera/ |
D | soc_scale_crop.c | 230 unsigned int max_width, unsigned int max_height, in client_set_fmt() argument 266 if (max_width > sdsel.r.width) in client_set_fmt() 267 max_width = sdsel.r.width; in client_set_fmt() 277 tmp_w < max_width && tmp_h < max_height) { in client_set_fmt() 278 tmp_w = min(2 * tmp_w, max_width); in client_set_fmt()
|
D | sh_mobile_ceu_camera.c | 113 int max_width; member 1010 while ((mf->width > pcdev->max_width || in sh_mobile_ceu_get_formats() 1161 if (mf->width > pcdev->max_width || mf->height > pcdev->max_height) in sh_mobile_ceu_set_selection() 1276 unsigned int ceu_sub_width = pcdev->max_width, in sh_mobile_ceu_set_fmt() 1427 v4l_bound_align_image(&pix->width, 2, pcdev->max_width, 2, in sh_mobile_ceu_try_fmt() 1463 mf->width = pcdev->max_width; in sh_mobile_ceu_try_fmt() 1674 pcdev->max_width = pcdev->pdata->max_width; in sh_mobile_ceu_probe() 1680 if (!pcdev->max_width) { in sh_mobile_ceu_probe() 1684 pcdev->max_width = v; in sh_mobile_ceu_probe() 1686 if (!pcdev->max_width) in sh_mobile_ceu_probe() [all …]
|
/Linux-v4.19/drivers/media/platform/vsp1/ |
D | vsp1_entity.c | 295 unsigned int max_width, unsigned int max_height) in vsp1_subdev_enum_frame_size() argument 317 fse->max_width = max_width; in vsp1_subdev_enum_frame_size() 326 fse->max_width = format->width; in vsp1_subdev_enum_frame_size() 359 unsigned int max_width, unsigned int max_height) in vsp1_subdev_set_pad_format() argument 395 min_width, max_width); in vsp1_subdev_set_pad_format()
|
D | vsp1_sru.c | 145 fse->max_width = SRU_MAX_SIZE; in sru_enum_frame_size() 153 fse->max_width = format->width * 2; in sru_enum_frame_size() 156 fse->max_width = format->width; in sru_enum_frame_size() 347 .max_width = sru_max_width,
|
D | vsp1_entity.h | 88 unsigned int (*max_width)(struct vsp1_entity *, struct vsp1_pipeline *); member 180 unsigned int max_width, unsigned int max_height);
|
D | vsp1_uds.c | 151 fse->max_width = UDS_MAX_SIZE; in uds_enum_frame_size() 156 &fse->max_width); in uds_enum_frame_size() 389 .max_width = uds_max_width,
|
/Linux-v4.19/include/media/drv-intf/ |
D | sh_mobile_ceu.h | 23 int max_width; member
|
/Linux-v4.19/arch/arm/mach-s3c24xx/ |
D | mach-smdk2416.c | 193 .max_width = 4, 200 .max_width = 4,
|
/Linux-v4.19/include/linux/platform_data/ |
D | mmc-sdhci-s3c.h | 40 unsigned int max_width; member
|
/Linux-v4.19/include/scsi/ |
D | scsi_transport_spi.h | 37 unsigned int max_width:1; member 80 #define spi_max_width(x) (((struct spi_transport_attrs *)&(x)->starget_data)->max_width)
|
/Linux-v4.19/tools/perf/tests/ |
D | make | 274 max_width := $(shell echo $(run_O) | sed 's/ /\n/g' | wc -L) 289 printf "%*.*s: %s\n" $(max_width) $(max_width) "$@" "$$cmd" && echo $$cmd > $@ && \ 300 printf "%*.*s: %s\n" $(max_width) $(max_width) "$@" "$$cmd" && echo $$cmd > $@ && \
|
/Linux-v4.19/drivers/media/platform/xilinx/ |
D | xilinx-vip.c | 308 fse->max_width = XVIP_MAX_WIDTH; in xvip_enum_frame_size() 316 fse->max_width = format->width; in xvip_enum_frame_size()
|
/Linux-v4.19/drivers/gpu/drm/sun4i/ |
D | sun4i_framebuffer.c | 54 drm->mode_config.max_width = 8192; in sun4i_framebuffer_init()
|
/Linux-v4.19/drivers/gpu/drm/fsl-dcu/ |
D | fsl_dcu_drm_kms.c | 35 fsl_dev->drm->mode_config.max_width = 2031; in fsl_dcu_drm_modeset_init()
|