| /OK3568_Linux_fs/kernel/drivers/staging/media/meson/vdec/ |
| H A D | vdec_platform.c | 21 .max_width = 1920, 33 .max_width = 1920, 44 .max_width = 1920, 59 .max_width = 3840, 71 .max_width = 3840, 83 .max_width = 1920, 94 .max_width = 1920, 109 .max_width = 3840, 121 .max_width = 1920, 132 .max_width = 1920, [all …]
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.20/ |
| H A D | 0008-v4l2src-Support-setting-max-resolution.patch | 22 + guint32 max_width = G_MAXINT, max_height = G_MAXINT; 33 + sscanf (buf, "%ux%u", &max_width, &max_height); 45 + w = MIN (size.discrete.width, max_width); 54 - maxw = MIN (size.stepwise.max_width, G_MAXINT); 56 + maxw = MIN (size.stepwise.max_width, max_width); 65 - maxw = MIN (size.stepwise.max_width, G_MAXINT); 67 + maxw = MIN (size.stepwise.max_width, max_width);
|
| /OK3568_Linux_fs/buildroot/package/gstreamer1/gst1-plugins-good/ |
| H A D | 0008-v4l2src-Support-setting-max-resolution.patch | 22 + guint32 max_width = G_MAXINT, max_height = G_MAXINT; 33 + sscanf (buf, "%ux%u", &max_width, &max_height); 45 + w = MIN (size.discrete.width, max_width); 54 - maxw = MIN (size.stepwise.max_width, G_MAXINT); 56 + maxw = MIN (size.stepwise.max_width, max_width); 65 - maxw = MIN (size.stepwise.max_width, G_MAXINT); 67 + maxw = MIN (size.stepwise.max_width, max_width);
|
| /OK3568_Linux_fs/yocto/meta-rockchip/recipes-multimedia/gstreamer/gstreamer1.0-plugins-good_1.22/ |
| H A D | 0008-v4l2src-Support-setting-max-resolution.patch | 22 + guint32 max_width = G_MAXINT, max_height = G_MAXINT; 33 + sscanf (buf, "%ux%u", &max_width, &max_height); 45 + w = MIN (size.discrete.width, max_width); 54 - maxw = MIN (size.stepwise.max_width, G_MAXINT); 56 + maxw = MIN (size.stepwise.max_width, max_width); 65 - maxw = MIN (size.stepwise.max_width, G_MAXINT); 67 + maxw = MIN (size.stepwise.max_width, max_width);
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A 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";
|
| H A 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 ",
|
| /OK3568_Linux_fs/u-boot/scripts/ |
| H A D | cleanpatch | 11 $max_width = 79; 85 $max_width = shift(@ARGV)+0; 166 if ($max_width && $l_width > $max_width) { 168 "$f:$lineno: adds line exceeds $max_width ",
|
| /OK3568_Linux_fs/kernel/arch/arm/mach-s3c/ |
| H A 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()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/mdp5/ |
| H A D | mdp5_cfg.c | 78 .max_width = 2048, 156 .max_width = 2048, 250 .max_width = 2048, 327 .max_width = 2048, 394 .max_width = 2560, 487 .max_width = 2048, 588 .max_width = 2560, 693 .max_width = 2560, 779 .max_width = 2048, 878 .max_width = 2560, [all …]
|
| /OK3568_Linux_fs/kernel/drivers/dma/ |
| H A D | stm32-mdma.c | 397 enum dma_slave_buswidth max_width = DMA_SLAVE_BUSWIDTH_8_BYTES; in stm32_mdma_get_max_width() local 399 for (max_width = DMA_SLAVE_BUSWIDTH_8_BYTES; in stm32_mdma_get_max_width() 400 max_width > DMA_SLAVE_BUSWIDTH_1_BYTE; in stm32_mdma_get_max_width() 401 max_width >>= 1) { in stm32_mdma_get_max_width() 406 if ((((buf_len | addr) & (max_width - 1)) == 0) && in stm32_mdma_get_max_width() 407 tlen >= max_width) in stm32_mdma_get_max_width() 411 return max_width; in stm32_mdma_get_max_width() 915 enum dma_slave_buswidth max_width; in stm32_mdma_prep_dma_memcpy() local 989 max_width = stm32_mdma_get_max_width(src, len, tlen); in stm32_mdma_prep_dma_memcpy() 990 src_bus_width = stm32_mdma_get_width(chan, max_width); in stm32_mdma_prep_dma_memcpy() [all …]
|
| H A D | stm32-dma.c | 269 enum dma_slave_buswidth max_width; in stm32_dma_get_max_width() local 272 max_width = DMA_SLAVE_BUSWIDTH_4_BYTES; in stm32_dma_get_max_width() 274 max_width = DMA_SLAVE_BUSWIDTH_2_BYTES; in stm32_dma_get_max_width() 276 while ((buf_len < max_width || buf_len % max_width) && in stm32_dma_get_max_width() 277 max_width > DMA_SLAVE_BUSWIDTH_1_BYTE) in stm32_dma_get_max_width() 278 max_width = max_width >> 1; in stm32_dma_get_max_width() 280 return max_width; in stm32_dma_get_max_width() 992 enum dma_slave_buswidth max_width; in stm32_dma_prep_dma_memcpy() local 1010 max_width = DMA_SLAVE_BUSWIDTH_1_BYTE; in stm32_dma_prep_dma_memcpy() 1012 threshold, max_width); in stm32_dma_prep_dma_memcpy()
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/hantro/ |
| H A D | rk3288_vpu_hw.c | 50 .max_width = 8192, 77 .max_width = 4096, 90 .max_width = 1920, 103 .max_width = 3840,
|
| H A D | rk3399_vpu_hw.c | 49 .max_width = 8192, 69 .max_width = 1920, 82 .max_width = 3840,
|
| H A D | imx8m_vpu_hw.c | 98 .max_width = 1920, 111 .max_width = 3840, 124 .max_width = 3840,
|
| /OK3568_Linux_fs/kernel/drivers/media/usb/gspca/ |
| H A D | w996Xcf.c | 399 max_width, max_height; in w9968cf_set_crop_window() local 402 max_width = 352; in w9968cf_set_crop_window() 405 max_width = 640; in w9968cf_set_crop_window() 433 fw = SC(sd->gspca_dev.pixfmt.width) / max_width; in w9968cf_set_crop_window() 436 cw = (fw >= fh) ? max_width : SC(sd->gspca_dev.pixfmt.width) / fh; in w9968cf_set_crop_window() 439 sd->sensor_width = max_width; in w9968cf_set_crop_window() 442 x = (max_width - cw) / 2; in w9968cf_set_crop_window()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/atmel-hlcdc/ |
| H A D | atmel_hlcdc_dc.c | 53 .max_width = 1280, 127 .max_width = 128, 146 .max_width = 800, 243 .max_width = 128, 264 .max_width = 2048, 360 .max_width = 2048, 455 .max_width = 2048, 686 dev->mode_config.max_width = dc->desc->max_width; in atmel_hlcdc_dc_modeset_init()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/locale/ |
| H A D | utf.hpp | 92 static const int max_width; member 163 static const int max_width = 4; member 380 static const int max_width = 2; member 435 static const int max_width = 1; member
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/omap3isp/ |
| H A D | ispresizer.c | 789 unsigned int max_width; in resizer_calc_ratios() local 833 max_width = MAX_4TAP_OUT_WIDTH_ES1; in resizer_calc_ratios() 838 max_width = MAX_4TAP_OUT_WIDTH_ES2; in resizer_calc_ratios() 842 max_width = MAX_4TAP_OUT_WIDTH_3630; in resizer_calc_ratios() 848 max_width = MAX_7TAP_OUT_WIDTH_ES1; in resizer_calc_ratios() 853 max_width = MAX_7TAP_OUT_WIDTH_ES2; in resizer_calc_ratios() 857 max_width = MAX_7TAP_OUT_WIDTH_3630; in resizer_calc_ratios() 861 max_width = min(((input->width - 7) * 256 + 255 - 16 - 32 * sph) / 64 in resizer_calc_ratios() 862 + 1, max_width); in resizer_calc_ratios() 873 max_width & ~(width_alignment - 1)); in resizer_calc_ratios() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mmc/host/ |
| H A 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() 569 pdata->cfg_gpio(pdev, pdata->max_width); in sdhci_s3c_probe() 611 switch (pdata->max_width) { in sdhci_s3c_probe()
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/vsp1/ |
| H A D | vsp1_entity.c | 296 unsigned int max_width, unsigned int max_height) in vsp1_subdev_enum_frame_size() argument 318 fse->max_width = max_width; in vsp1_subdev_enum_frame_size() 327 fse->max_width = format->width; in vsp1_subdev_enum_frame_size() 360 unsigned int max_width, unsigned int max_height) in vsp1_subdev_set_pad_format() argument 396 min_width, max_width); in vsp1_subdev_set_pad_format()
|
| H A 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() 353 .max_width = sru_max_width,
|
| H A D | vsp1_entity.h | 90 unsigned int (*max_width)(struct vsp1_entity *, struct vsp1_pipeline *); member 183 unsigned int max_width, unsigned int max_height);
|
| /OK3568_Linux_fs/kernel/drivers/staging/media/ipu3/ |
| H A D | ipu3-css-fw.c | 33 bi->info.isp.sp.input.max_width, in imgu_css_fw_show_binary() 41 bi->info.isp.sp.internal.max_width, in imgu_css_fw_show_binary() 47 bi->info.isp.sp.output.max_width, in imgu_css_fw_show_binary() 59 unsigned int width = DIV_ROUND_UP(bi->info.isp.sp.internal.max_width, in imgu_css_fw_obgrid_size()
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/rcar-vin/ |
| H A D | rcar-core.c | 928 .max_width = 2048, 935 .max_width = 2048, 942 .max_width = 2048, 977 .max_width = 4096, 1022 .max_width = 4096, 1076 .max_width = 4096, 1117 .max_width = 4096, 1162 .max_width = 4096, 1181 .max_width = 4096, 1210 .max_width = 4096, [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/ti-vpe/ |
| H A D | cal-video.c | 255 u32 bpl, max_width; in cal_calc_format_size() local 267 max_width = MAX_WIDTH_BYTES / (ALIGN(fmt->bpp, 8) >> 3); in cal_calc_format_size() 268 v4l_bound_align_image(&f->fmt.pix.width, 48, max_width, 2, in cal_calc_format_size() 327 if ((f->fmt.pix.width == fse.max_width) && in cal_try_fmt_vid_cap() 332 (f->fmt.pix.width <= fse.max_width) && in cal_try_fmt_vid_cap() 426 __func__, fse.index, fse.code, fse.min_width, fse.max_width, in cal_enum_framesizes() 430 fsize->discrete.width = fse.max_width; in cal_enum_framesizes()
|