Lines Matching refs:VDisplay
43 * Generate a CVT standard mode from HDisplay, VDisplay and VRefresh.
57 * HBlankStart, HBlankEnd and HTotal, VDisplay and VBlankStart, VBlankEnd and
62 * these calculations, Margins will plainly expand H/VDisplay, and we don't
67 xf86CVTMode(int HDisplay, int VDisplay, float VRefresh, Bool Reduced,
119 VDisplayRnd = VDisplay / 2;
121 VDisplayRnd = VDisplay;
131 Mode->VDisplay = VDisplay + 2*VMargin;
140 if (!(VDisplay % 3) && ((VDisplay * 4 / 3) == HDisplay))
142 else if (!(VDisplay % 9) && ((VDisplay * 16 / 9) == HDisplay))
144 else if (!(VDisplay % 10) && ((VDisplay * 16 / 10) == HDisplay))
146 else if (!(VDisplay % 4) && ((VDisplay * 5 / 4) == HDisplay))
148 else if (!(VDisplay % 9) && ((VDisplay * 15 / 9) == HDisplay))
222 Mode->VSyncStart = Mode->VDisplay + CVT_MIN_V_PORCH;
262 Mode->VSyncStart = Mode->VDisplay + CVT_RB_VFPORCH;
282 XNFasprintf(&Mode->name, "%dx%d", HDisplay, VDisplay);