Lines Matching defs:indx
37 int x, y, indx;
89 for (x = 0, indx = 0; x < plane->width; x+=2, indx++) {
116 b0_1 = b0_ptr[indx+1];
117 b0_2 = b0_ptr[pitch+indx+1];
130 b1_2 = b1_ptr[indx+1];
131 b1_1 = b1_ptr[back_pitch+indx+1];
134 b1_3 = b1_1 - b1_2*6 + b1_ptr[pitch+indx+1];
144 b2_3 = b2_ptr[indx+1];
145 b2_6 = b2_ptr[pitch+indx+1];
158 b3_6 = b3_ptr[indx+1]; // b3[x+1,y ]
159 b3_3 = b3_ptr[back_pitch+indx+1]; // b3[x+1,y-1]
165 b3_9 = b3_3 - b3_6*6 + b3_ptr[pitch+indx+1];
194 int x, y, indx, b0, b1, b2, b3, p0, p1, p2, p3;
208 for (x = 0, indx = 0; x < plane->width; x += 2, indx++) {
210 b0 = b0_ptr[indx]; //should be: b0 = (num_bands > 0) ? b0_ptr[indx] : 0;
211 b1 = b1_ptr[indx]; //should be: b1 = (num_bands > 1) ? b1_ptr[indx] : 0;
212 b2 = b2_ptr[indx]; //should be: b2 = (num_bands > 2) ? b2_ptr[indx] : 0;
213 b3 = b3_ptr[indx]; //should be: b3 = (num_bands > 3) ? b3_ptr[indx] : 0;