Lines Matching full:ystep
200 int ystep;
207 ystep = 0;
212 ystep = step;
224 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep,
225 12, ystep, m_blue->xSampling, m_blue->ySampling, 0.0 ));
231 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 4,
232 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
238 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 8,
239 12, ystep, m_red->xSampling, m_red->ySampling, 0.0 ));
247 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep,
248 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
250 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 4,
251 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
253 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 8,
254 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
263 buffer - m_datawindow.min.x * 4 - m_datawindow.min.y * ystep,
264 4, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
273 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep,
274 12, ystep, m_blue->xSampling, m_blue->ySampling, 0.0 ));
280 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 4,
281 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
287 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 8,
288 12, ystep, m_red->xSampling, m_red->ySampling, 0.0 ));
391 void ExrDecoder::UpSample( uchar *data, int xstep, int ystep, int xsample, int ysample )
402 data[(yre + i) * ystep + (xre + n) * xstep] = data[y * ystep + x * xstep];
404 ((float *)data)[(yre + i) * ystep + (xre + n) * xstep] = ((float *)data)[y * ystep + x * xstep];
406 ((unsigned *)data)[(yre + i) * ystep + (xre + n) * xstep] = ((unsigned *)data)[y * ystep + x * xstep];
435 void ExrDecoder::UpSampleY( uchar *data, int xstep, int ystep, int ysample )
444 data[(yre + i) * ystep + x * xstep] = data[y * ystep + x * xstep];
446 ((float *)data)[(yre + i) * ystep + x * xstep] = ((float *)data)[y * ystep + x * xstep];
448 ((unsigned *)data)[(yre + i) * ystep + x * xstep] = ((unsigned *)data)[y * ystep + x * xstep];