Home | History | Annotate | Download | only in gdx2d

Lines Matching refs:Row

79 struct Row
124 struct Row<0>
135 struct Row<1>
278 case 0: Row<0>::idct(pTemp, pSrc); break;
279 case 1: Row<1>::idct(pTemp, pSrc); break;
280 case 2: Row<2>::idct(pTemp, pSrc); break;
281 case 3: Row<3>::idct(pTemp, pSrc); break;
282 case 4: Row<4>::idct(pTemp, pSrc); break;
283 case 5: Row<5>::idct(pTemp, pSrc); break;
284 case 6: Row<6>::idct(pTemp, pSrc); break;
285 case 7: Row<7>::idct(pTemp, pSrc); break;
286 case 8: Row<8>::idct(pTemp, pSrc); break;
323 Row<4>::idct(pTemp, pSrc);
1635 // Loads and dequantizes the next row of (already decoded) coefficients.
1761 // Decodes and dequantizes the next row of coefficients.
1872 int row = m_max_mcu_y_size - m_mcu_lines_left;
1874 uint8 *s = m_pSample_buf + row * 8;
1899 int row = m_max_mcu_y_size - m_mcu_lines_left;
1901 uint8 *y = m_pSample_buf + row * 8;
1902 uint8 *c = m_pSample_buf + 2*64 + row * 8;
1944 int row = m_max_mcu_y_size - m_mcu_lines_left;
1950 if (row < 8)
1951 y = m_pSample_buf + row * 8;
1953 y = m_pSample_buf + 64*1 + (row & 7) * 8;
1955 c = m_pSample_buf + 64*2 + (row >> 1) * 8;
1992 int row = m_max_mcu_y_size - m_mcu_lines_left;
1998 if (row < 8)
1999 y = m_pSample_buf + row * 8;
2001 y = m_pSample_buf + 64*2 + (row & 7) * 8;
2003 c = m_pSample_buf + 64*4 + (row >> 1) * 8;
2058 int row = m_max_mcu_y_size - m_mcu_lines_left;
2060 uint8 *s = m_pSample_buf + row * 8;
2074 int row = m_max_mcu_y_size - m_mcu_lines_left;
2076 uint8* Py = m_pSample_buf + (row / 8) * 64 * m_comp_h_samp[0] + (row & 7) * 8;
2144 // Find the EOI marker if that was the last row.
2385 // Also calcs how many MCU's are on each row, etc.