Lines Matching refs:cols
33 void _DEMOComputeRunlengths(u32 cols, DEMOColor *pixelrow, s32 *runlength);
39 void _DEMOComputeRunlengths(u32 cols, DEMOColor *pixelrow, s32 *runlength) in _DEMOComputeRunlengths() argument
44 for (col = 0; col < cols; ++col) in _DEMOComputeRunlengths()
48 for ( col = 0; col < cols; ) { in _DEMOComputeRunlengths()
52 } while ( col < cols && in _DEMOComputeRunlengths()
62 for (col = 0; col < cols; ) in _DEMOComputeRunlengths()
67 while (col < cols && in _DEMOComputeRunlengths()
183 u32 cols = DEMOCaptureData.colorBuffer.surface.width; in _DEMOEncodeTGA() local
219 runlength = DEMOAlloc(sizeof(s32)*cols); in _DEMOEncodeTGA()
226 _DEMOComputeRunlengths( cols, &buffer[realrow * pitch], runlength ); in _DEMOEncodeTGA()
227 for( col = 0; col < cols; ){ in _DEMOEncodeTGA()