Lines Matching full:modes

141  * adjustments for interlaced and double scan modes.
165 /* Force interlaced modes to have an odd VTotal */ in xf86SetModeCrtc()
261 * Returns true if the given modes should program to the same timings.
302 * Option "PreferredMode" or from the Screen Display Modes statement.
313 * priority and multiple P modes form a sorted sublist at the list
318 * See modes/xf86Crtc.c: xf86ProbeOutputModes().
391 * Marks as bad any modes with unsupported flags.
393 * \param modeList doubly-linked list of modes.
415 * Marks as bad any modes extending beyond the given max X, Y, or pitch.
417 * \param modeList doubly-linked list of modes.
458 * Marks as bad any modes that aren't supported by the given monitor's
461 * \param modeList doubly-linked list of modes.
501 * Marks as bad any modes extending beyond outside of the given clock ranges.
503 * \param modeList doubly-linked list of modes.
531 * If the user has specified a set of mode names to use, mark as bad any modes
534 * The user mode names specified are prefixes to names of modes, so "1024x768"
535 * will match modes named "1024x768", "1024x768x75", "1024x768-good", but
540 * \param modeList doubly-linked list of modes.
547 if (pScrn->display->modes[0] == NULL) in xf86ValidateModesUserConfig()
554 for (i = 0; pScrn->display->modes[i] != NULL; i++) { in xf86ValidateModesUserConfig()
555 if (strncmp(pScrn->display->modes[i], mode->name, in xf86ValidateModesUserConfig()
556 strlen(pScrn->display->modes[i])) == 0) { in xf86ValidateModesUserConfig()
567 * Marks as bad any modes exceeding the given bandwidth.
569 * \param modeList doubly-linked list of modes.
598 * Marks as bad any reduced-blanking modes.
600 * \param modeList doubly-linked list of modes.
611 * Frees any modes from the list with a status other than MODE_OK.
613 * \param modeList pointer to a doubly-linked or circular list of modes.
650 * \param modes doubly-linked mode list.
653 xf86ModesAdd(DisplayModePtr modes, DisplayModePtr new) in xf86ModesAdd() argument
655 if (modes == NULL) in xf86ModesAdd()
659 DisplayModePtr mode = modes; in xf86ModesAdd()
668 return modes; in xf86ModesAdd()
672 * Build a mode list from a list of config file modes
719 DisplayModePtr modes = NULL; in xf86GetMonitorModes() local
730 /* If this modes link hasn't been resolved, go look it up now */ in xf86GetMonitorModes()
735 modes = xf86ModesAdd(modes, in xf86GetMonitorModes()
740 return xf86ModesAdd(modes, in xf86GetMonitorModes()
745 * Build a mode list containing all of the default modes
774 xf86PruneDuplicateModes(DisplayModePtr modes) in xf86PruneDuplicateModes() argument
779 for (m = modes; m; m = m->next) { in xf86PruneDuplicateModes()
784 xf86DeleteMode(&modes, m); in xf86PruneDuplicateModes()
788 xf86DeleteMode(&modes, n); in xf86PruneDuplicateModes()
793 return modes; in xf86PruneDuplicateModes()