Home
last modified time | relevance | path

Searched refs:yShift (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/cudawarping/src/
Dwarp.cpp479 …puMat& src, GpuMat& dst, Size dsize, double angle, double xShift, double yShift, int interpolation… in call()
499 …dst.ptr<npp_type>(), static_cast<int>(dst.step), dstroi, angle, xShift, yShift, npp_inter[interpol… in call()
507 … _src, OutputArray _dst, Size dsize, double angle, double xShift, double yShift, int interpolation… in rotate() argument
509 …puMat& src, GpuMat& dst, Size dsize, double angle, double xShift, double yShift, int interpolation… in rotate()
531 …funcs[src.depth()][src.channels() - 1](src, dst, dsize, angle, xShift, yShift, interpolation, Stre… in rotate()
/external/opencv3/modules/cudawarping/include/opencv2/
Dcudawarping.hpp189 …te(InputArray src, OutputArray dst, Size dsize, double angle, double xShift = 0, double yShift = 0,
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/
DParticleSystem.java41 static final int yShift = tagBits - yTruncBits; field in ParticleSystem
49 return (((long) (y + yOffset)) << yShift) + (((long) (xScale * x)) + xOffset); in computeTag()
53 return tag + (y << yShift) + (x << xShift); in computeRelativeTag()