Home
last modified time | relevance | path

Searched refs:ystep (Results 1 – 19 of 19) sorted by relevance

/external/opencv/otherlibs/highgui/
Dgrfmt_exr.cpp208 int ystep; in ReadData() local
215 ystep = 0; in ReadData()
220 ystep = step; in ReadData()
232 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep, in ReadData()
233 12, ystep, m_blue->xSampling, m_blue->ySampling, 0.0 )); in ReadData()
239 … buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 4, in ReadData()
240 12, ystep, m_green->xSampling, m_green->ySampling, 0.0 )); in ReadData()
246 … buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep + 8, in ReadData()
247 12, ystep, m_red->xSampling, m_red->ySampling, 0.0 )); in ReadData()
255 buffer - m_datawindow.min.x * 12 - m_datawindow.min.y * ystep, in ReadData()
[all …]
Dgrfmt_jpeg2000.cpp225 int ystep = jas_image_cmptvstep( m_image, cmptlut[i] ); in ReadData() local
229 jas_matrix_t *buffer = jas_matrix_create( yend / ystep, xend / xstep ); in ReadData()
232 … if( !jas_image_readcmpt( m_image, cmptlut[i], 0, 0, xend / xstep, yend / ystep, buffer )) in ReadData()
269 int ystep = jas_image_cmptvstep( m_image, cmpt ); in ReadComponent8u() local
279 jas_seqent_t* pix_row = &jas_matrix_get( buffer, y / ystep, 0 ); in ReadComponent8u()
311 y1 = y + ystep; in ReadComponent8u()
331 int ystep = jas_image_cmptvstep( m_image, cmpt ); in ReadComponent16u() local
341 jas_seqent_t* pix_row = &jas_matrix_get( buffer, y / ystep, 0 ); in ReadComponent16u()
373 y1 = y + ystep; in ReadComponent16u()
Dgrfmt_exr.h70 void UpSample( uchar *data, int xstep, int ystep, int xsample, int ysample );
72 void UpSampleY( uchar *data, int xstep, int ystep, int ysample );
/external/libvpx/libvpx/vp8/common/
Dtextblit.c65 int error, ystep, y, x; in vp8_blit_line() local
98 ystep = 1; in vp8_blit_line()
100 ystep = -1; in vp8_blit_line()
111 y = y + ystep; in vp8_blit_line()
125 y = y + ystep; in vp8_blit_line()
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
Dvp9_textblit.c64 int error, ystep, y, x; in vp9_blit_line() local
95 ystep = 1; in vp9_blit_line()
97 ystep = -1; in vp9_blit_line()
105 y = y + ystep; in vp9_blit_line()
115 y = y + ystep; in vp9_blit_line()
/external/libvpx/libvpx/vp9/common/
Dvp9_textblit.c64 int error, ystep, y, x; in vp9_blit_line() local
95 ystep = 1; in vp9_blit_line()
97 ystep = -1; in vp9_blit_line()
105 y = y + ystep; in vp9_blit_line()
115 y = y + ystep; in vp9_blit_line()
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
Dtextblit.c65 int error, ystep, y, x; in vp8_blit_line() local
98 ystep = 1; in vp8_blit_line()
100 ystep = -1; in vp8_blit_line()
111 y = y + ystep; in vp8_blit_line()
125 y = y + ystep; in vp8_blit_line()
/external/libpng/contrib/examples/
Dpngpixel.c245 png_uint_32 ystart, xstart, ystep, xstep; in main() local
267 ystep = PNG_PASS_ROW_OFFSET(pass); in main()
273 ystep = xstep = 1; in main()
280 for (py = ystart; py < height; py += ystep) in main()
/external/mesa3d/src/mesa/swrast/
Ds_linetemp.h77 GLint xstep, ystep; in NAME() local
197 ystep = -1; in NAME()
206 ystep = 1; in NAME()
331 y0 += ystep; in NAME()
358 y0 += ystep; in NAME()
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
Ds_linetemp.h77 GLint xstep, ystep; in NAME() local
197 ystep = -1; in NAME()
206 ystep = 1; in NAME()
331 y0 += ystep; in NAME()
358 y0 += ystep; in NAME()
/external/opencv/cv/src/
Dcvhaar.cpp948 int ystep = factor > 2. ? 1 : 2; in cvHaarDetectObjects() local
980 strip_count = MAX(MIN(sz1.height/ystep, max_threads*3), 1); in cvHaarDetectObjects()
982 strip_size = (strip_size / ystep)*ystep; in cvHaarDetectObjects()
1026 positive = (ssz.width/ystep)*((ssz.height + ystep-1)/ystep); in cvHaarDetectObjects()
1027 memset( mask1.data.ptr + y1*mask1.step, ystep == 1, mask1.height*mask1.step); in cvHaarDetectObjects()
1029 if( ystep > 1 ) in cvHaarDetectObjects()
1031 for( y = y1, positive = 0; y < y2; y += ystep ) in cvHaarDetectObjects()
1032 for( x = 0; x < ssz.width; x += ystep ) in cvHaarDetectObjects()
1054 for( y = y1, positive = 0; y < y2; y += ystep ) in cvHaarDetectObjects()
1055 for( x = 0; x < ssz.width; x += ystep ) in cvHaarDetectObjects()
[all …]
DmycvHaarDetectObjects.cpp1159 const double ystep = MAX( 2, factor ); in mycvHaarDetectObjects() local
1167 int end_x = cvRound((img->cols - win_size.width) / ystep); in mycvHaarDetectObjects()
1168 int end_y = cvRound((img->rows - win_size.height) / ystep); in mycvHaarDetectObjects()
1205 start_y = cvRound(scan_roi_rect.y / ystep); in mycvHaarDetectObjects()
1206 end_y = cvRound((scan_roi_rect.y + scan_roi_rect.height - win_size.height) / ystep); in mycvHaarDetectObjects()
1208 start_x = cvRound(scan_roi_rect.x / ystep); in mycvHaarDetectObjects()
1209 end_x = cvRound((scan_roi_rect.x + scan_roi_rect.width - win_size.width) / ystep); in mycvHaarDetectObjects()
1222 int iy = cvRound(_iy*ystep); in mycvHaarDetectObjects()
1228 int ix = cvRound(_ix*ystep); // it really should be ystep in mycvHaarDetectObjects()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c1075 int xstep, ystep; in sp_setup_line() local
1107 ystep = -1; in sp_setup_line()
1110 ystep = 1; in sp_setup_line()
1144 y0 += ystep; in sp_setup_line()
1158 y0 += ystep; in sp_setup_line()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
Dsp_setup.c1075 int xstep, ystep; in sp_setup_line() local
1107 ystep = -1; in sp_setup_line()
1110 ystep = 1; in sp_setup_line()
1144 y0 += ystep; in sp_setup_line()
1158 y0 += ystep; in sp_setup_line()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
Dlp_setup_tri.c662 int ystep[MAX_PLANES]; in lp_setup_bin_triangle() local
681 ystep[i] = plane[i].dcdy << TILE_ORDER; in lp_setup_bin_triangle()
749 c[i] += ystep[i]; in lp_setup_bin_triangle()
/external/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_setup_tri.c662 int ystep[MAX_PLANES]; in lp_setup_bin_triangle() local
681 ystep[i] = plane[i].dcdy << TILE_ORDER; in lp_setup_bin_triangle()
749 c[i] += ystep[i]; in lp_setup_bin_triangle()
/external/chromium_org/tools/telemetry/third_party/png/
Dpng.py943 for xstart, ystart, xstep, ystep in _adam7:
950 for y in range(ystart, self.height, ystep):
1572 for xstart, ystart, xstep, ystep in _adam7:
1585 for y in range(ystart, self.height, ystep):
/external/llvm/docs/tutorial/
DLangImpl6.rst557 def mandelhelp(xmin xmax xstep ymin ymax ystep)
558 for y = ymin, y < ymax, ystep in (
DOCamlLangImpl6.rst525 def mandelhelp(xmin xmax xstep ymin ymax ystep)
526 for y = ymin, y < ymax, ystep in (