/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfInputFile.cpp | 203 int yStart, yEnd, yStep; 209 yStep = -1; 215 yStep = 1; 229 for (int j = yStart; j != yEnd; j += yStep)
|
/external/opencv3/modules/video/src/opencl/ |
optical_flow_farneback.cl | 257 __global const float * flowy, int yStep, 269 float dy = flowy[mad24(y, yStep, x)]; 410 __global float * flowy, int yStep, 427 flowy[mad24(y, yStep, x)] = (g22*h1 - g12*h2) * detInv;
|
/hardware/bsp/intel/peripheral/libupm/src/lcd/ |
eboled.cxx | 281 int16_t ystep; local 284 ystep = 1; 286 ystep = -1; 297 y0 += ystep;
|
/external/droiddriver/src/io/appium/droiddriver/actions/ |
SwipeAction.java | 190 double yStep = ((double) (endY - startY)) / steps; 199 Events.touchMove(injector, downTime, startX + (int) (xStep * i), startY + (int) (yStep * i));
|
/external/pdfium/xfa/src/fxbarcode/common/ |
BC_WhiteRectangleDetector.cpp | 194 float yStep = (bY - aY) / dist;
197 int32_t y = Round(aY + i * yStep);
|
/external/pdfium/xfa/src/fxbarcode/qrcode/ |
BC_QRDetector.cpp | 223 int32_t ystep = fromY < toY ? 1 : -1;
local 245 y += ystep;
|
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/util/ |
TouchUtils.java | 273 float yStep = (toY - fromY) / stepCount; 280 y += yStep;
|
/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
InteractionController.java | 442 double yStep = 0; 449 yStep = ((double)(upY - downY)) / swipeSteps; 456 ret &= touchMove(downX + (int)(xStep * i), downY + (int)(yStep * i)); 481 double yStep = 0; 497 yStep = ((double)(segments[seg+1].y - segments[seg].y)) / segmentSteps; 501 segments[seg].y + (int)(yStep * i));
|
/external/opencv3/modules/objdetect/ |
opencl_kernels_objdetect.cpp | 52 "int ystep __attribute__((aligned (4)));\n" 109 "int ystep = s->ystep;\n" 200 "if( stageIdx == SPLIT_STAGE && (ystep == 1 || ((ix | iy) & 1) == 0) )\n" 350 "int ystep = s->ystep;\n" 352 "int2 ntiles = (int2)((worksize.x/ystep + local_size_x-1)/local_size_x,\n" 353 "(worksize.y/ystep + local_size_y-1)/local_size_y);\n" 357 "int iy = mad24((tileIdx / ntiles.x), local_size_y, ly) * ystep;\n" 358 "int ix = mad24((tileIdx % ntiles.x), local_size_x, lx) * ystep;\n [all...] |
/external/mesa3d/src/gallium/state_trackers/vega/ |
api_images.c | 443 VGint y = (stfb->height - sy) - 1, yStep = -1; 456 y += yStep;
|
image.c | 381 const VGint yStep = 1; 428 y += yStep; 446 VGint y = 0, yStep = 1; 464 y += yStep;
|
mask.c | 109 VGint y = (stfb->height - sy) - 1, yStep = -1; 140 y += yStep;
|
/frameworks/base/core/java/android/view/ |
IWindowSession.aidl | 219 * For multi screen launcher type applications, xstep and ystep indicate 222 void setWallpaperPosition(IBinder windowToken, float x, float y, float xstep, float ystep);
|
/external/opencv3/modules/objdetect/src/ |
cascadedetect.cpp | 453 s.ystep = sc >= 2 ? 1 : 2; 1033 int yStep = s.ystep; 1041 for( int y = y0; y < y1; y += yStep ) 1043 for( int x = 0; x < szw.width; x += yStep ) [all...] |
cascadedetect.hpp | 24 ScaleData() { scale = 0.f; layer_ofs = ystep = 0; } 33 int layer_ofs, ystep; member in struct:cv::FeatureEvaluator::ScaleData 132 int yStep, double factor, std::vector<Rect>& candidates,
|
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/ |
BridgeWindowSession.java | 187 float xStep, float yStep) {
|
/external/pdfium/xfa/src/fxgraphics/src/ |
fx_graphics.cpp | [all...] |
/external/pdfium/xfa/src/fxbarcode/datamatrix/ |
BC_DataMatrixDetector.cpp | 353 int32_t ystep = fromY < toY ? 1 : -1;
local 368 y += ystep;
|
/frameworks/base/services/core/java/com/android/server/wm/ |
Session.java | 460 public void setWallpaperPosition(IBinder window, float x, float y, float xStep, float yStep) { 466 x, y, xStep, yStep);
|
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube1/ |
CubeWallpaper1.java | 127 float xStep, float yStep, int xPixels, int yPixels) {
|
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/ |
CubeWallpaper2.java | 191 float xStep, float yStep, int xPixels, int yPixels) {
|
/external/opencv3/3rdparty/libjasper/ |
jpc_t2cod.h | 183 int ystep; member in struct:__anon21752
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
fpdf_page_pattern.cpp | 67 m_YStep = (FX_FLOAT)FXSYS_fabs(pDict->GetNumber("YStep"));
|
/external/pdfium/xfa/include/fxgraphics/ |
fx_graphics.h | 429 const FX_FLOAT yStep,
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_setup_tri.c | 662 int ystep[MAX_PLANES]; local 681 ystep[i] = plane[i].dcdy << TILE_ORDER; 749 c[i] += ystep[i];
|