Lines Matching defs:xres
138 int gu1_is_display_mode_supported(int xres, int yres, int bpp, int hz);
139 int gu1_set_display_mode(int xres, int yres, int bpp, int hz);
194 int gu1_get_display_details(unsigned int mode, int *xres, int *yres, int *hz);
200 int gu1_mode_frequency_supported(int xres, int yres, int bpp,
202 int gu1_get_refreshrate_from_frequency(int xres, int yres, int bpp, int *hz,
204 int gu1_get_refreshrate_from_mode(int xres, int yres, int bpp, int *hz,
206 int gu1_get_frequency_from_refreshrate(int xres, int yres, int bpp, int hz,
209 int gu1_get_display_mode(int *xres, int *yres, int *bpp, int *hz);
794 gu1_is_display_mode_supported(int xres, int yres, int bpp, int hz)
797 gfx_is_display_mode_supported(int xres, int yres, int bpp, int hz)
833 if (gfx_cpu_version != GFX_CPU_PYRAMID && xres > 1024) {
841 if ((DisplayParams[mode].hactive == (unsigned short)xres) &&
864 gu1_set_display_mode(int xres, int yres, int bpp, int hz)
867 gfx_set_display_mode(int xres, int yres, int bpp, int hz)
878 mode = gfx_is_display_mode_supported(xres, yres, bpp, hz);
1803 if ((FixedParams[mode].xres == width) &&
1912 gu1_get_display_details(unsigned int mode, int *xres, int *yres, int *hz)
1915 gfx_get_display_details(unsigned int mode, int *xres, int *yres, int *hz)
1932 *xres = DisplayParams[mode].hactive;
1984 gu1_mode_frequency_supported(int xres, int yres, int bpp,
1988 gfx_mode_frequency_supported(int xres, int yres, int bpp,
2001 if ((DisplayParams[index].hactive == (unsigned short)xres) &&
2035 gu1_get_refreshrate_from_frequency(int xres, int yres, int bpp, int *hz,
2039 gfx_get_refreshrate_from_frequency(int xres, int yres, int bpp, int *hz,
2059 if ((DisplayParams[index].htotal == (unsigned short)xres) &&
2101 gu1_get_refreshrate_from_mode(int xres, int yres, int bpp, int *hz,
2105 gfx_get_refreshrate_from_mode(int xres, int yres, int bpp, int *hz,
2125 if ((DisplayParams[index].hactive == (unsigned short)xres) &&
2163 gu1_get_frequency_from_refreshrate(int xres, int yres, int bpp, int hz,
2167 gfx_get_frequency_from_refreshrate(int xres, int yres, int bpp, int hz,
2195 if ((DisplayParams[index].hactive == (unsigned short)xres) &&
2237 gu1_get_display_mode(int *xres, int *yres, int *bpp, int *hz)
2240 gfx_get_display_mode(int *xres, int *yres, int *bpp, int *hz)
2246 *xres = gfx_get_hactive();
2254 *xres >>= 1;
2266 if ((DisplayParams[mode].hactive == (unsigned short)*xres) &&