Home | History | Annotate | Download | only in dsp

Lines Matching defs:ix

649         int ix;
655 ix = all_y * width + tile_x_offset;
656 for (all_x = tile_x_offset; all_x < all_x_max; ++all_x, ++ix) {
657 const uint32_t a = argb[ix];
848 int ix, int xsize) {
849 const uint32_t v = argb[ix];
850 if (ix
851 if (v == argb[ix - xsize] &&
852 argb[ix - 1] == argb[ix - xsize - 1] &&
853 argb[ix - 2] == argb[ix - xsize - 2] &&
854 argb[ix - 3] == argb[ix - xsize - 3]) {
857 return v == argb[ix - 3] && v == argb[ix - 2] && v == argb[ix - 1];
858 } else if (ix >= 3) {
859 return v == argb[ix - 3] && v == argb[ix - 2] && v == argb[ix - 1];
906 int ix = all_y * xsize + tile_x_offset;
908 for (all_x = tile_x_offset; all_x < all_x_max; ++all_x, ++ix) {
909 if (SkipRepeatedPixels(argb, ix, xsize)) {
912 ++histo[TransformColorRed(green_to_red, argb[ix])]; // red.
937 int ix = all_y * xsize + tile_x_offset;
938 for (all_x = tile_x_offset; all_x < all_x_max; ++all_x, ++ix) {
939 if (SkipRepeatedPixels(argb, ix, xsize)) {
942 ++histo[TransformColorBlue(green_to_blue, red_to_blue, argb[ix])];
992 int ix = y * xsize + tile_x;
993 const int end_ix = ix + xscan;
994 for (; ix < end_ix; ++ix) {
995 argb[ix] = TransformColor(&color_transform, argb[ix], 0);
1045 int ix;
1051 ix = all_y * width + tile_x_offset;
1052 for (all_x = tile_x_offset; all_x < all_x_max; ++all_x, ++ix) {
1053 if (ix >= 2 &&
1054 argb[ix] == argb[ix - 2] &&
1055 argb[ix] == argb[ix - 1]) {
1058 if (ix >= width + 2 &&
1059 argb[ix - 2] == argb[ix - width - 2] &&
1060 argb[ix - 1] == argb[ix - width - 1] &&
1061 argb[ix] == argb[ix - width]) {
1064 ++accumulated_red_histo[(argb[ix] >> 16) & 0xff];
1065 ++accumulated_blue_histo[argb[ix] & 0xff];