Lines Matching refs:Width
685 int image_reader::CountDuplicates(int Index, int Width) in CountDuplicates() argument
694 while(Index < Width) in CountDuplicates()
848 void image_reader::ColorSpaceConvertRow(int Width) in ColorSpaceConvertRow() argument
853 for (PixIndex = 0; PixIndex < Width; PixIndex++) in ColorSpaceConvertRow()
1284 void image_reader::RleEncodeRow(int Width) in RleEncodeRow() argument
1292 while(PixIndex < Width) in RleEncodeRow()
1294 count = CountDuplicates(PixIndex, Width); in RleEncodeRow()
1330 if (RawCount == 128 || PixIndex == Width) in RleEncodeRow()
1361 void image_reader::DitherOneRow(int Width) in DitherOneRow() argument
1370 memset(mpNextRedErr, 0, sizeof(int) * (Width + 2)); in DitherOneRow()
1371 memset(mpNextGreenErr, 0, sizeof(int) * (Width + 2)); in DitherOneRow()
1372 memset(mpNextBlueErr, 0, sizeof(int) * (Width + 2)); in DitherOneRow()
1377 LimitCol = Width; in DitherOneRow()
1381 Col = Width - 1; in DitherOneRow()
1383 Index = Width - 1; in DitherOneRow()