Lines Matching defs:vstretch
1757 uint32_t hstretch, vstretch;
1790 vstretch = ((uint32_t)(vid_h - 1) << 16) / (drw_h - 1);
1793 vstretch = 0;
1801 WRITE_VPR(pSmi, 0x24, (hstretch & 0xff00) | ((vstretch & 0xff00) >> 8));
1803 WRITE_VPR(pSmi, 0x68, ((hstretch & 0xff) << 8) | (vstretch & 0xff));
1936 int hstretch, vstretch;
1969 vstretch = 4096 * vid_h / drw_h;
1975 vstretch = (4096 * drw_h / vid_h) | 0x8000;
1987 WRITE_DCR(pSmi, 0x0058, (vstretch << 16) | hstretch);
2017 int hstretch, vstretch;
2052 vstretch = (8192 * vid_h / drw_h);
2054 vstretch = 0;
2062 WRITE_FPR(pSmi, FPR24, (hstretch & 0xFF00) | ((vstretch & 0xFF00)>>8));
2063 WRITE_FPR(pSmi, FPR68, ((hstretch & 0x00FF)<<8) | (vstretch & 0x00FF));