Lines Matching defs:display
61 * drm_mode_create - create a new display mode
137 * The display mode object is allocated with drm_mode_create(). Returns NULL
362 * The display mode object is allocated with drm_mode_create(). Returns NULL
567 * The display mode object is allocated with drm_mode_create(). Returns NULL
586 * Fills out @dmode using the display mode specified in @vm.
627 * Fills out @vm using the display mode specified in @dmode.
699 * @index: index into the list of display timings in devicetree
723 pr_debug("%pOF: got %dx%d display mode\n",
1255 * This helper function can be used to prune a display mode list after
1855 * drm_mode_create_from_cmdline_mode - convert a command line modeline into a DRM display mode
2024 * @display: display under action
2031 bool drm_mode_is_420_only(const struct drm_display_info *display,
2036 return test_bit(vic, display->hdmi.y420_vdb_modes);
2044 * @display: display under action.
2051 bool drm_mode_is_420_also(const struct drm_display_info *display,
2056 return test_bit(vic, display->hdmi.y420_cmdb_modes);
2063 * @display: display under action.
2070 bool drm_mode_is_420(const struct drm_display_info *display,
2073 return drm_mode_is_420_only(display, mode) ||
2074 drm_mode_is_420_also(display, mode);