Home
last modified time | relevance | path

Searched refs:ystep (Results 1 – 20 of 20) 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/libpng/contrib/examples/
Dpngpixel.c247 png_uint_32 ystart, xstart, ystep, xstep; in main() local
269 ystep = PNG_PASS_ROW_OFFSET(pass); in main()
275 ystep = xstep = 1; in main()
282 for (py = ystart; py < height; py += ystep) in main()
/external/libcups/filter/
Drastertoepson.c81 unsigned type, unsigned xstep, unsigned ystep);
415 unsigned ystep) /* I - Y resolution */ in CompressData() argument
438 if (ystep == 5) in CompressData()
586 putchar((int)ystep); in CompressData()
745 unsigned xstep, ystep; /* X & Y resolutions */ in OutputLine() local
752 ystep = 3600 / header->HWResolution[1]; in OutputLine()
778 CompressData(Planes[plane], bytes, plane, header->cupsCompression, xstep, ystep); in OutputLine()
/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/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/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-trace/catapult/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/
DLangImpl06.rst575 def mandelhelp(xmin xmax xstep ymin ymax ystep)
576 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 (
/external/zxing/core/
Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
/external/robolectric/v3/runtime/
Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/ ...
Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...
Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/ ...