Lines Matching defs:x_out
36 int x_out = channel;
43 wrk->frow[x_out] = right * wrk->x_add + (left - right) * accum;
44 x_out += x_stride;
45 if (x_out >= x_out_max) break;
67 int x_out = channel;
70 while (x_out < x_out_max) {
82 wrk->frow[x_out] = sum * wrk->x_sub - frac;
86 x_out += x_stride;
96 int x_out;
106 for (x_out = 0; x_out < x_out_max; ++x_out) {
107 const uint32_t J = frow[x_out];
110 dst[x_out] = v;
115 for (x_out = 0; x_out < x_out_max; ++x_out) {
116 const uint64_t I = (uint64_t)A * frow[x_out]
117 + (uint64_t)B * irow[x_out];
121 dst[x_out] = v;
127 int x_out;
137 for (x_out = 0; x_out < x_out_max; ++x_out) {
138 const uint32_t frac = (uint32_t)MULT_FIX(frow[x_out], yscale);
139 const int v = (int)MULT_FIX(irow[x_out] - frac, wrk->fxy_scale);
141 dst[x_out] = v;
142 irow[x_out] = frac; // new fractional start
145 for (x_out = 0; x_out < x_out_max; ++x_out) {
146 const int v = (int)MULT_FIX(irow[x_out], wrk->fxy_scale);
148 dst[x_out] = v;
149 irow[x_out] = 0;