Lines Matching refs:hstretch
1757 uint32_t hstretch, vstretch;
1784 hstretch = ((uint32_t)(vid_w - 1) << 16) / (drw_w - 1);
1786 hstretch = 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;
1959 hstretch = 4096 * vid_w / drw_w;
1965 hstretch = (4096 * drw_w / vid_w) | 0x8000;
1987 WRITE_DCR(pSmi, 0x0058, (vstretch << 16) | hstretch);
2017 int hstretch, vstretch;
2046 hstretch = (8192 * vid_w / drw_w);
2048 hstretch = 0;
2062 WRITE_FPR(pSmi, FPR24, (hstretch & 0xFF00) | ((vstretch & 0xFF00)>>8));
2063 WRITE_FPR(pSmi, FPR68, ((hstretch & 0x00FF)<<8) | (vstretch & 0x00FF));