/external/opencv3/modules/imgcodecs/src/ |
D | grfmt_exr.cpp | 199 int xstep; in readData() local 202 xstep = m_native_depth ? 4 : 1; in readData() 306 UpSample( data, 3, step / xstep, xsample[0], m_blue->ySampling ); in readData() 308 UpSample( data + xstep, 3, step / xstep, xsample[1], m_green->ySampling ); in readData() 310 UpSample( data + 2 * xstep, 3, step / xstep, xsample[2], m_red->ySampling ); in readData() 313 UpSample( data, 1, step / xstep, xsample[0], m_green->ySampling ); in readData() 369 UpSampleY( data, 3, step / xstep, m_blue->ySampling ); in readData() 371 UpSampleY( data + xstep, 3, step / xstep, m_green->ySampling ); in readData() 373 UpSampleY( data + 2 * xstep, 3, step / xstep, m_red->ySampling ); in readData() 376 UpSampleY( data, 1, step / xstep, m_green->ySampling ); in readData() [all …]
|
D | grfmt_jpeg2000.cpp | 247 int xstep = jas_image_cmpthstep( image, cmptlut[i] ); in readData() local 249 jas_matrix_t *buffer = jas_matrix_create( yend / ystep, xend / xstep ); in readData() 252 … if( !jas_image_readcmpt( image, cmptlut[i], 0, 0, xend / xstep, yend / ystep, buffer )) in readData() 294 int xstep = jas_image_cmpthstep( image, cmpt ); in readComponent8u() local 311 if( xstep == 1 ) in readComponent8u() 326 else if( xstep == 2 && offset == 0 ) in readComponent8u() 337 for( x1 = x + xstep; x < x1; x++ ) in readComponent8u() 358 int xstep = jas_image_cmpthstep( image, cmpt ); in readComponent16u() local 375 if( xstep == 1 ) in readComponent16u() 390 else if( xstep == 2 && offset == 0 ) in readComponent16u() [all …]
|
D | grfmt_exr.hpp | 81 void UpSample( uchar *data, int xstep, int ystep, int xsample, int ysample ); 82 void UpSampleX( float *data, int xstep, int xsample ); 83 void UpSampleY( uchar *data, int xstep, int ystep, int ysample );
|
/external/opencv/otherlibs/highgui/ |
D | grfmt_exr.cpp | 207 int xstep; in ReadData() local 210 xstep = m_native_depth ? 4 : 1; in ReadData() 314 UpSample( data, 3, step / xstep, xsample[0], m_blue->ySampling ); in ReadData() 316 UpSample( data + xstep, 3, step / xstep, xsample[1], m_green->ySampling ); in ReadData() 318 UpSample( data + 2 * xstep, 3, step / xstep, xsample[2], m_red->ySampling ); in ReadData() 321 UpSample( data, 1, step / xstep, xsample[0], m_green->ySampling ); in ReadData() 379 UpSampleY( data, 3, step / xstep, m_blue->ySampling ); in ReadData() 381 UpSampleY( data + xstep, 3, step / xstep, m_green->ySampling ); in ReadData() 383 UpSampleY( data + 2 * xstep, 3, step / xstep, m_red->ySampling ); in ReadData() 386 UpSampleY( data, 1, step / xstep, m_green->ySampling ); in ReadData() [all …]
|
D | grfmt_jpeg2000.cpp | 227 int xstep = jas_image_cmpthstep( 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() 265 int xstep = jas_image_cmpthstep( m_image, cmpt ); in ReadComponent8u() local 282 if( xstep == 1 ) in ReadComponent8u() 297 else if( xstep == 2 && offset == 0 ) in ReadComponent8u() 308 for( x1 = x + xstep; x < x1; x++ ) in ReadComponent8u() 327 int xstep = jas_image_cmpthstep( m_image, cmpt ); in ReadComponent16u() local 344 if( xstep == 1 ) in ReadComponent16u() 359 else if( xstep == 2 && offset == 0 ) in ReadComponent16u() [all …]
|
D | grfmt_exr.h | 70 void UpSample( uchar *data, int xstep, int ystep, int xsample, int ysample ); 71 void UpSampleX( float *data, int xstep, int xsample ); 72 void UpSampleY( uchar *data, int xstep, int ystep, int ysample );
|
/external/opencv3/3rdparty/libjasper/ |
D | jpc_t2cod.c | 234 int xstep; in jpc_pi_nextrpcl() local 246 pi->xstep = 0; in jpc_pi_nextrpcl() 252 xstep = picomp->hsamp * (1 << (pirlvl->prcwidthexpn + in jpc_pi_nextrpcl() 256 pi->xstep = (!pi->xstep) ? xstep : JAS_MIN(pi->xstep, xstep); in jpc_pi_nextrpcl() 268 pi->xstep - (pi->x % pi->xstep)) { in jpc_pi_nextrpcl() 326 int xstep; in jpc_pi_nextpcrl() local 338 pi->xstep = 0; in jpc_pi_nextpcrl() 344 xstep = picomp->hsamp * (1 << in jpc_pi_nextpcrl() 350 pi->xstep = (!pi->xstep) ? xstep : in jpc_pi_nextpcrl() 351 JAS_MIN(pi->xstep, xstep); in jpc_pi_nextpcrl() [all …]
|
D | jpc_t2cod.h | 180 int xstep; member
|
D | jpc_t2dec.c | 549 pi->xstep = 0; in jpc_dec_pi_create()
|
D | jpc_t2enc.c | 639 pi->xstep = 0; in jpc_enc_pi_create()
|
/external/libpng/contrib/examples/ |
D | pngpixel.c | 247 png_uint_32 ystart, xstart, ystep, xstep; in main() local 268 xstep = PNG_PASS_COL_OFFSET(pass); in main() 275 ystep = xstep = 1; in main() 303 px < width; px += xstep, ++ppx) if (x == px) in main()
|
/external/mesa3d/src/mesa/swrast/ |
D | s_linetemp.h | 77 GLint xstep, ystep; in NAME() local 177 xstep = -1; in NAME() 186 xstep = 1; in NAME() 318 x0 += xstep; in NAME() 371 x0 += xstep; in NAME()
|
/external/opencv3/modules/viz/src/ |
D | clouds.cpp | 285 int xstep = (cloud.cols > 1 && cloud.rows > 1) ? sqlevel : level; in WCloudNormals() local 304 for (; srow < send; srow += xstep * s_chs, nrow += xstep * n_chs) in WCloudNormals() 323 for (; srow < send; srow += xstep * s_chs, nrow += xstep * n_chs) in WCloudNormals()
|
/external/pdfium/xfa/src/fxbarcode/qrcode/ |
D | BC_QRDetector.cpp | 224 int32_t xstep = fromX < toX ? 1 : -1; in SizeOfBlackWhiteBlackRun() local 226 for (int32_t x = fromX, y = fromY; x != toX; x += xstep) { in SizeOfBlackWhiteBlackRun()
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
D | sp_setup.c | 1075 int xstep, ystep; in sp_setup_line() local 1099 xstep = -1; in sp_setup_line() 1102 xstep = 1; in sp_setup_line() 1138 x0 += xstep; in sp_setup_line() 1164 x0 += xstep; in sp_setup_line()
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_setup_tri.c | 661 int xstep[MAX_PLANES]; in lp_setup_bin_triangle() local 680 xstep[i] = -(plane[i].dcdx << TILE_ORDER); in lp_setup_bin_triangle() 743 cx[i] += xstep[i]; in lp_setup_bin_triangle()
|
/external/chromium-trace/catapult/telemetry/third_party/png/ |
D | png.py | 943 for xstart, ystart, xstep, ystep in _adam7: 947 ppr = int(math.ceil((self.width-xstart)/float(xstep))) 951 if xstep == 1: 960 skip = self.planes * xstep 1572 for xstart, ystart, xstep, ystep in _adam7: 1582 ppr = int(math.ceil((self.width-xstart)/float(xstep))) 1593 if xstep == 1: 1600 skip = self.planes * xstep
|
/external/pdfium/xfa/src/fxbarcode/datamatrix/ |
D | BC_DataMatrixDetector.cpp | 354 int32_t xstep = fromX < toX ? 1 : -1; in TransitionsBetween() local 357 for (int32_t x = fromX, y = fromY; x != toX; x += xstep) { in TransitionsBetween()
|
/external/opencv3/modules/core/src/ |
D | lapack.cpp | 678 float* x, size_t xstep, uchar* buffer ) in SVBkSb() argument 684 x, (int)(xstep/sizeof(x[0])), in SVBkSb() 693 double* x, size_t xstep, uchar* buffer ) in SVBkSb() argument 699 x, (int)(xstep/sizeof(x[0])), in SVBkSb()
|
/external/llvm/docs/tutorial/ |
D | LangImpl6.rst | 575 def mandelhelp(xmin xmax xstep ymin ymax ystep) 577 (for x = xmin, x < xmax, xstep in
|
D | OCamlLangImpl6.rst | 525 def mandelhelp(xmin xmax xstep ymin ymax ystep) 527 (for x = xmin, x < xmax, xstep in
|
/external/libpng/contrib/libtests/ |
D | pngvalid.c | 3659 png_uint_32 xin, xout, xstep; in interlace_row() local 3669 xstep = 1U<<PNG_PASS_COL_SHIFT(pass); in interlace_row() 3671 for (xout=0; xin<w; xin+=xstep) in interlace_row() 3688 png_uint_32 xin, xout, xstep; in deinterlace_row() local 3691 xstep = 1U<<PNG_PASS_COL_SHIFT(pass); in deinterlace_row() 3693 for (xin=0; xout<w; xout+=xstep) in deinterlace_row()
|
/external/zxing/core/ |
D | core.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/google/
com/ ... |
/external/robolectric/v3/runtime/ |
D | android-all-4.1.2_r1-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |
D | android-all-4.2.2_r1.2-robolectric-0.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/accessibilityservice/
android/ ... |