Lines Matching refs:x_out
135 int x_out; in ExportRowExpand_0() local
166 for (x_out = 0; x_out < length; ++x_out) { in ExportRowExpand_0()
167 const uint32_t J = frow[x_out]; in ExportRowExpand_0()
169 dst[x_out] = (v > 255) ? 255u : (uint8_t)v; in ExportRowExpand_0()
201 int x_out; in ExportRowExpand_1() local
238 for (x_out = 0; x_out < length; ++x_out) { in ExportRowExpand_1()
239 const uint64_t I = (uint64_t)A * frow[x_out] in ExportRowExpand_1()
240 + (uint64_t)B * irow[x_out]; in ExportRowExpand_1()
243 dst[x_out] = (v > 255) ? 255u : (uint8_t)v; in ExportRowExpand_1()
292 int x_out;
342 for (x_out = 0; x_out < length; ++x_out) {
343 const uint32_t frac = (uint32_t)MULT_FIX_FLOOR(frow[x_out], yscale);
344 const int v = (int)MULT_FIX(irow[x_out] - frac, wrk->fxy_scale);
345 dst[x_out] = (v > 255) ? 255u : (uint8_t)v;
346 irow[x_out] = frac;
370 int x_out;
404 for (x_out = 0; x_out < length; ++x_out) {
405 const int v = (int)MULT_FIX(irow[x_out], wrk->fxy_scale);
406 dst[x_out] = (v > 255) ? 255u : (uint8_t)v;
407 irow[x_out] = 0;