Lines Matching refs:HDisplay
63 xf86CVTMode(int HDisplay, int VDisplay, float VRefresh, Bool Reduced, in xf86CVTMode() argument
101 HDisplayRnd = HDisplay - (HDisplay % CVT_H_GRANULARITY); in xf86CVTMode()
113 Mode->HDisplay = HDisplayRnd + 2 * HMargin; in xf86CVTMode()
138 if (!(VDisplay % 3) && ((VDisplay * 4 / 3) == HDisplay)) in xf86CVTMode()
140 else if (!(VDisplay % 9) && ((VDisplay * 16 / 9) == HDisplay)) in xf86CVTMode()
142 else if (!(VDisplay % 10) && ((VDisplay * 16 / 10) == HDisplay)) in xf86CVTMode()
144 else if (!(VDisplay % 4) && ((VDisplay * 5 / 4) == HDisplay)) in xf86CVTMode()
146 else if (!(VDisplay % 9) && ((VDisplay * 15 / 9) == HDisplay)) in xf86CVTMode()
207 HBlank = Mode->HDisplay * HBlankPercentage / (100.0 - HBlankPercentage); in xf86CVTMode()
211 Mode->HTotal = Mode->HDisplay + HBlank; in xf86CVTMode()
214 Mode->HSyncEnd = Mode->HDisplay + HBlank / 2; in xf86CVTMode()
256 Mode->HTotal = Mode->HDisplay + CVT_RB_H_BLANK; in xf86CVTMode()
259 Mode->HSyncEnd = Mode->HDisplay + CVT_RB_H_BLANK / 2; in xf86CVTMode()
283 XNFasprintf(&tmp, "%dx%d", HDisplay, VDisplay); in xf86CVTMode()