Home | History | Annotate | Download | only in highgui

Lines Matching refs:ystep

208     int ystep;
215 ystep = 0;
220 ystep = step;
232 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep,
233 12, ystep, m_blue->xSampling, m_blue->ySampling, 0.0 ));
239 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 4,
240 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
246 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 8,
247 12, ystep, m_red->xSampling, m_red->ySampling, 0.0 ));
255 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep,
256 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
258 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 4,
259 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
261 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 8,
262 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
271 buffer - m_datawindow.min.x * 4 - m_datawindow.min.y * ystep,
272 4, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
281 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep,
282 12, ystep, m_blue->xSampling, m_blue->ySampling, 0.0 ));
288 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 4,
289 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 ));
295 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 8,
296 12, ystep, m_red->xSampling, m_red->ySampling, 0.0 ));
401 void GrFmtExrReader::UpSample( uchar *data, int xstep, int ystep, int xsample, int ysample )
412 data[(yre + i) * ystep + (xre + n) * xstep] = data[y * ystep + x * xstep];
414 ((float *)data)[(yre + i) * ystep + (xre + n) * xstep] = ((float *)data)[y * ystep + x * xstep];
416 ((uint *)data)[(yre + i) * ystep + (xre + n) * xstep] = ((uint *)data)[y * ystep + x * xstep];
445 void GrFmtExrReader::UpSampleY( uchar *data, int xstep, int ystep, int ysample )
454 data[(yre + i) * ystep + x * xstep] = data[y * ystep + x * xstep];
456 ((float *)data)[(yre + i) * ystep + x * xstep] = ((float *)data)[y * ystep + x * xstep];
458 ((uint *)data)[(yre + i) * ystep + x * xstep] = ((uint *)data)[y * ystep + x * xstep];