Lines Matching refs:row

1413 	u32 row, col;  in TCPackTile_I4()  local
1430 for(row=0; row<realRows; row++) in TCPackTile_I4()
1432 tilePtr = dstPtr + (row * 4); // move 4 bytes (8 4-bit texels) per row in TCPackTile_I4()
1438 TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_I4()
1514 u32 row, col; in TCPackTile_I8() local
1531 for(row=0; row<realRows; row++) in TCPackTile_I8()
1533 tilePtr = dstPtr + (row * 8); // move 8 bytes (8 8-bit texels) per row in TCPackTile_I8()
1538 …TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, &g, &b ); // fetch an 8-bit intensity value… in TCPackTile_I8()
1600 u32 row, col; in TCPackTile_IA4() local
1617 for(row=0; row<realRows; row++) in TCPackTile_IA4()
1619 tilePtr = dstPtr + (row * 8); // move 8 bytes (8 8-bit texels) per row in TCPackTile_IA4()
1626 TCGetLayerValue( alphaLayer, (x+col), (y+row), &a, 0, 0 ); in TCPackTile_IA4()
1633 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_IA4()
1699 u32 row, col; in TCPackTile_IA8() local
1716 for(row=0; row<realRows; row++) in TCPackTile_IA8()
1718 tilePtr = dstPtr + (row * 8); // move 8 bytes (4 16-bit texels) per row in TCPackTile_IA8()
1725 TCGetLayerValue( alphaLayer, (x+col), (y+row), &ria, 0, 0 ); in TCPackTile_IA8()
1734 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_IA8()
1794 u32 row, col; in TCPackTile_R5G6B5() local
1812 for(row=0; row<realRows; row++) in TCPackTile_R5G6B5()
1814 tilePtr = dstPtr + (row * 8); // move 8 bytes (4 16-bit texels) per row in TCPackTile_R5G6B5()
1818 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_R5G6B5()
1873 u32 row, col; in TCPackTile_RGB5A3() local
1892 for(row=0; row<realRows; row++) in TCPackTile_RGB5A3()
1894 tilePtr = dstPtr + (row * 8); // move 8 bytes (4 16-bit texels) per row in TCPackTile_RGB5A3()
1901 TCGetLayerValue( alphaLayer, (x+col), (y+row), &a, 0, 0 ); in TCPackTile_RGB5A3()
1908 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_RGB5A3()
1986 u32 row, col; in TCPackTile_RGBA8() local
2004 for(row=0; row<realRows; row++) in TCPackTile_RGBA8()
2007 arPtr = dstPtr + (row * 8); // move 8 bytes (4 16-bit texels) per row in TCPackTile_RGBA8()
2008 gbPtr = dstPtr + 32 + (row * 8); // need to reset ptr each row to account for in TCPackTile_RGBA8()
2013 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, &g, &b ); in TCPackTile_RGBA8()
2017 TCGetLayerValue( alphaLayer, (x+col), (y+row), &a, 0, 0 ); in TCPackTile_RGBA8()
2084 u32 row, col; in TCPackTile_CI4() local
2101 for(row=0; row<realRows; row++) in TCPackTile_CI4()
2103 tilePtr = dstPtr + (row * 4); // move 4 bytes (8 4-bit texels) per row in TCPackTile_CI4()
2108 … TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, 0, 0 ); // fetch an 8-bit color-index value in TCPackTile_CI4()
2169 u32 row, col; in TCPackTile_CI8() local
2186 for(row=0; row<realRows; row++) in TCPackTile_CI8()
2188 tilePtr = dstPtr + (row * 8); // move 8 bytes (8 8-bit texels) per row in TCPackTile_CI8()
2193 … TCGetLayerValue( srcLayer, (x+col), (y+row), &ria, 0, 0 ); // fetch an 8-bit color index value in TCPackTile_CI8()
2250 u32 row, col; in TCPackTile_CI14_X2() local
2267 for(row=0; row<realRows; row++) in TCPackTile_CI14_X2()
2269 tilePtr = (u16*)( (u8*)dstPtr + (row * 8) ); // move 8 bytes (4 16-bit texels) per row in TCPackTile_CI14_X2()
2274 TCGetLayerValue( colorLayer, (x+col), (y+row), &ria, 0, 0 ); in TCPackTile_CI14_X2()