Symbol: hmax
drivers/gpu/drm/drm_edid.c
3611
int hsync, hmin, hmax;
drivers/gpu/drm/drm_edid.c
3616
hmax = t[8];
drivers/gpu/drm/drm_edid.c
3618
hmax += ((t[4] & 0x08) ? 255 : 0);
drivers/gpu/drm/drm_edid.c
3621
return (hsync <= hmax && hsync >= hmin);
drivers/media/common/v4l2-tpg/v4l2-tpg-core.c
2280
unsigned hmax;
drivers/media/common/v4l2-tpg/v4l2-tpg-core.c
2510
if (h >= params->hmax) {
drivers/media/common/v4l2-tpg/v4l2-tpg-core.c
2511
if (params->hmax == tpg->compose.height)
drivers/media/common/v4l2-tpg/v4l2-tpg-core.c
2649
params.hmax = (tpg->compose.height * tpg->perc_fill) / 100;
drivers/media/i2c/imx274.c
1283
u32 hmax;
drivers/media/i2c/imx274.c
1296
hmax = max_t(u32, 260, (imx274->crop.width) / 16 + 23);
drivers/media/i2c/imx274.c
1305
err = imx274_write_mbreg(imx274, IMX274_HMAX_REG_LSB, hmax, 2);
drivers/media/i2c/imx274.c
1701
u32 hmax;
drivers/media/i2c/imx274.c
1709
err = imx274_read_mbreg(priv, IMX274_HMAX_REG_LSB, &hmax, 2);
drivers/media/i2c/imx274.c
1713
if (hmax == 0) {
drivers/media/i2c/imx274.c
1719
- priv->mode->nocpiop) / hmax;
drivers/media/i2c/imx274.c
1729
(coarse_time * hmax + priv->mode->nocpiop)
drivers/media/i2c/imx274.c
1848
u32 hmax;
drivers/media/i2c/imx274.c
1883
err = imx274_read_mbreg(priv, IMX274_HMAX_REG_LSB, &hmax, 2);
drivers/media/i2c/imx274.c
1888
"%s : register HMAX = %d\n", __func__, hmax);
drivers/media/i2c/imx274.c
1890
if (hmax == 0 || frame_interval.denominator == 0) {
drivers/media/i2c/imx274.c
1895
frame_length = IMX274_PIXCLK_CONST1 / (svr + 1) / hmax
drivers/media/i2c/imx283.c
570
u16 hmax;
drivers/media/i2c/imx283.c
669
numerator = (imx283->vmax * (svr + 1) - shr) * imx283->hmax + offset;
drivers/media/i2c/imx283.c
671
do_div(numerator, imx283->hmax);
drivers/media/i2c/imx283.c
704
temp = ((u64)exposure * imx283->hmax - offset);
drivers/media/i2c/imx283.c
705
do_div(temp, imx283->hmax);
drivers/media/i2c/imx283.c
806
imx283->hmax = imx283_internal_clock(pixel_rate, mode->width + ctrl->val);
drivers/media/i2c/imx283.c
808
ctrl->val, imx283->hmax);
drivers/media/i2c/imx283.c
809
ret = cci_write(imx283->cci, IMX283_REG_HMAX, imx283->hmax, NULL);
drivers/media/i2c/imx283.c
934
imx283->hmax = imx283_internal_clock(pixel_rate, mode->default_hmax);
drivers/media/i2c/tvp5150.c
1090
unsigned int hmax = tvp5150_get_hmax(sd);
drivers/media/i2c/tvp5150.c
1094
rect->top + rect->height - hmax);
drivers/media/i2c/tvp5150.c
1113
unsigned int hmax;
drivers/media/i2c/tvp5150.c
1124
hmax = tvp5150_get_hmax(sd);
drivers/media/i2c/tvp5150.c
1134
hmax - TVP5150_MAX_CROP_TOP - rect->top,
drivers/media/i2c/tvp5150.c
1135
hmax - rect->top, 0, 0);
drivers/media/platform/mediatek/mdp/mtk_mdp_m2m.c
154
unsigned int hmax, unsigned int align_h)
drivers/media/platform/mediatek/mdp/mtk_mdp_m2m.c
163
v4l_bound_align_image(w, wmin, wmax, walign, h, hmin, hmax, halign, 0);
drivers/media/platform/mediatek/mdp/mtk_mdp_m2m.c
169
if (*h < org_h && (*h + step_h) <= hmax)
drivers/media/platform/mediatek/mdp3/mdp_cfg_data.c
1262
.hmax = 8176,
drivers/media/platform/mediatek/mdp3/mdp_cfg_data.c
1268
.hmax = 8176,
drivers/media/platform/mediatek/mdp3/mdp_cfg_data.c
1281
.hmax = 8192,
drivers/media/platform/mediatek/mdp3/mdp_cfg_data.c
1287
.hmax = 8192,
drivers/media/platform/mediatek/mdp3/mtk-mdp3-regs.c
170
s.max_height = pix_limit->hmax;
drivers/media/platform/mediatek/mdp3/mtk-mdp3-regs.h
270
u32 hmax;
drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c
1392
u32 *h, unsigned int hmin, unsigned int hmax,
drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c
1413
hmax = height;
drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c
1417
v4l_bound_align_image(w, wmin, wmax, walign, h, hmin, hmax, halign, 0);
drivers/media/platform/samsung/s5p-jpeg/jpeg-core.c
1421
if (*h < height && (*h + h_step) < hmax)
drivers/media/test-drivers/vivid/vivid-kthread-cap.c
230
unsigned hmax = (img_height * tpg->perc_fill) / 100;
drivers/media/test-drivers/vivid/vivid-kthread-cap.c
273
for (y = 0; y < hmax / vdiv; y++, vcapbuf += stride_cap)
drivers/media/test-drivers/vivid/vivid-kthread-cap.c
294
for (y = 0; y < hmax; y += vdiv, vcapbuf += stride_cap) {
drivers/media/v4l2-core/v4l2-common.c
124
u32 *h, unsigned int hmin, unsigned int hmax,
drivers/media/v4l2-core/v4l2-common.c
128
*h = clamp_align(*h, hmin, hmax, halign);
drivers/media/v4l2-core/v4l2-common.c
142
unsigned int hmaxa = __fls(hmax ^ (hmin - 1));
drivers/media/v4l2-core/v4l2-common.c
151
*h = clamp_align(*h, hmin, hmax, halign + 1);
drivers/video/fbdev/amifb.c
2314
int vmin, vmax, hmin, hmax;
drivers/video/fbdev/amifb.c
2338
hmax = 1000 * simple_strtoul(p, NULL, 10);
drivers/video/fbdev/amifb.c
2339
if (hmax <= 0 || hmax <= hmin)
drivers/video/fbdev/amifb.c
2343
amifb_hfmax = hmax;
drivers/video/fbdev/atafb.c
2877
int vmin, vmax, hmin, hmax;
drivers/video/fbdev/atafb.c
2900
hmax = 1000 * simple_strtoul(p, NULL, 10);
drivers/video/fbdev/atafb.c
2901
if (hmax <= 0 || hmax <= hmin)
drivers/video/fbdev/atafb.c
2907
fb_info.monspecs.hfmax = hmax;
drivers/video/fbdev/sis/sis.h
495
u16 hmax;
drivers/video/fbdev/sis/sis_main.c
444
monitor->hmax = buffer[j + 8];
drivers/video/fbdev/sis/sis_main.c
461
monitor->hmin = 65535; monitor->hmax = 0;
drivers/video/fbdev/sis/sis_main.c
468
if(monitor->hmax < sisfb_ddcsmodes[i].h) monitor->hmax = sisfb_ddcsmodes[i].h + 1;
drivers/video/fbdev/sis/sis_main.c
490
if(monitor->hmax < sisfb_ddcfmodes[j].h) monitor->hmax = sisfb_ddcfmodes[j].h + 1;
drivers/video/fbdev/sis/sis_main.c
499
if((monitor->hmin <= monitor->hmax) && (monitor->vmin <= monitor->vmax)) {
drivers/video/fbdev/sis/sis_main.c
546
monitor->hmin, monitor->hmax, monitor->vmin, monitor->vmax,
drivers/video/fbdev/sis/sis_main.c
608
if(hsync > (monitor->hmax + 1))
include/media/v4l2-common.h
390
unsigned int hmax, unsigned int halign,
tools/perf/util/jitdump.c
153
bsz = hmax(sizeof(header), sizeof(*prefix));