Lines Matching refs:mpNextBlueErr
1372 memset(mpNextBlueErr, 0, sizeof(int) * (Width + 2)); in DitherOneRow()
1475 mpNextBlueErr[Col ] += ( err * 3 ) / 16; in DitherOneRow()
1476 mpNextBlueErr[Col + 1] += ( err * 5 ) / 16; in DitherOneRow()
1477 mpNextBlueErr[Col + 2] += ( err ) / 16; in DitherOneRow()
1482 mpNextBlueErr[Col ] = 0; in DitherOneRow()
1483 mpNextBlueErr[Col + 1] = 0; in DitherOneRow()
1484 mpNextBlueErr[Col + 2] = 0; in DitherOneRow()
1528 mpNextBlueErr[Col + 2] += ( err * 3 ) / 16; in DitherOneRow()
1529 mpNextBlueErr[Col + 1] += ( err * 5 ) / 16; in DitherOneRow()
1530 mpNextBlueErr[Col ] += ( err ) / 16; in DitherOneRow()
1535 mpNextBlueErr[Col + 2] = 0; in DitherOneRow()
1536 mpNextBlueErr[Col + 1] = 0; in DitherOneRow()
1537 mpNextBlueErr[Col ] = 0; in DitherOneRow()
1560 mpThisBlueErr = mpNextBlueErr; in DitherOneRow()
1561 mpNextBlueErr = temperr; in DitherOneRow()
1573 delete mpNextBlueErr; in DitherCleanup()
1586 mpNextBlueErr = new int[cols + 2]; in InitDither()