Home | History | Annotate | Download | only in opts

Lines Matching defs:ITERATION

61     // Output one pixel each iteration, calculating all channels (RGBA) together.
73 // We will load and accumulate with four coefficients per iteration.
193 // Output one pixel each iteration, calculating all channels (RGBA) together.
198 // four pixels in a column per iteration.
204 // We will load and accumulate with four coefficients per iteration.
220 #define ITERATION(src, accum) \
237 ITERATION(src_data[0] + start, accum0);
238 ITERATION(src_data[1] + start, accum1);
239 ITERATION(src_data[2] + start, accum2);
240 ITERATION(src_data[3] + start, accum3);
262 ITERATION(src_data[0] + start, accum0);
263 ITERATION(src_data[1] + start, accum1);
264 ITERATION(src_data[2] + start, accum2);
265 ITERATION(src_data[3] + start, accum3);
313 // Output four pixels per iteration (16 bytes).
322 // Convolve with one filter coefficient per iteration.