Searched refs:ret_m (Results 1 - 2 of 2) sorted by relevance

/haiku/src/add-ons/accelerants/intel_extreme/
H A DPipes.cpp252 uint64 ret_m = timing.pixel_clock * ret_n * bitsPerPixel / linkspeed; local
253 while ((ret_n > 0xffffff) || (ret_m > 0xffffff)) {
254 ret_m >>= 1;
258 write32(PCH_FDI_PIPE_A_DATA_M1 + fPipeOffset, ret_m | FDI_PIPE_MN_TU_SIZE_MASK);
270 ret_m = timing.pixel_clock * ret_n / linkspeed;
271 while ((ret_n > 0xffffff) || (ret_m > 0xffffff)) {
272 ret_m >>= 1;
275 write32(PCH_FDI_PIPE_A_LINK_M1 + fPipeOffset, ret_m);
H A DPorts.cpp1865 uint64 ret_m = timing.pixel_clock * ret_n * bitsPerPixel / linkspeed; local
1866 while ((ret_n > 0xffffff) || (ret_m > 0xffffff)) {
1867 ret_m >>= 1;
1871 write32(INTEL_PIPE_A_DATA_M + fPipeOffset, ret_m | FDI_PIPE_MN_TU_SIZE_MASK);
1883 ret_m = timing.pixel_clock * ret_n / linkspeed;
1884 while ((ret_n > 0xffffff) || (ret_m > 0xffffff)) {
1885 ret_m >>= 1;
1888 write32(INTEL_PIPE_A_LINK_M + fPipeOffset, ret_m);
1974 uint64 ret_m = timing.pixel_clock * ret_n * bitsPerPixel / linkspeed; local
1975 while ((ret_n > 0xffffff) || (ret_m >
2563 uint64 ret_m = timing.pixel_clock * ret_n * bitsPerPixel / linkspeed; local
[all...]

Completed in 45 milliseconds