HomeSort by relevance Sort by last modified time
    Searched refs:offY (Results 1 - 16 of 16) sorted by null

  /packages/apps/DevCamera/src/com/android/devcamera/
NormalizedFace.java 34 public NormalizedFace(Face face, int dX, int dY, int offX, int offY) {
38 leftEye.y = (float) (face.getLeftEyePosition().y - offY) / dY;
43 rightEye.y = (float) (face.getRightEyePosition().y - offY) / dY;
48 mouth.y = (float) (face.getMouthPosition().y - offY) / dY;
53 bounds.top = (float) (face.getBounds().top - offY) / dY;
55 bounds.bottom = (float) (face.getBounds().bottom - offY) / dY;
Api2Camera.java 722 int offY = mCameraInfoCache.faceOffsetY();
724 int dY = mCameraInfoCache.activeAreaHeight() - 2 * offY;
734 newFaces[i] = new NormalizedFace(faces[i], dX, dY, offX, offY);
    [all...]
  /external/skia/bench/
ReadPixBench.cpp 33 int offY = (size.height() - kWindowSize) / kNumStepsY;
51 canvas->readPixels(&bitmap, x * offX, y * offY);
  /hardware/intel/img/psb_video/src/android/
psb_mds.cpp 75 int32_t* offX, int32_t* offY,
79 offX == NULL || offY == NULL ||
87 status_t ret = mListener->getDecoderOutputResolution(0, width, height, offX, offY, bufW, bufH);
psb_mds.h 64 int32_t* offX, int32_t* offY,
psb_android_glue.cpp 98 int* offX, int* offY,
102 offX == NULL || offY == NULL ||
112 bool ret = mds->getDecoderOutputResolution(width, height, offX, offY, bufW, bufH);
  /external/opencv3/modules/cudalegacy/src/cuda/
bm.cu 85 const int offY = usePrevious ? __float2int_rn(vely(i, j)) : 0;
88 int Y2 = Y1 + offY;
97 int sumy = offY;
107 const int dy = offY + ssVal.y;
142 sumy = offY;
  /external/opencv/cv/src/
cvoptflowbm.cpp 365 int offX = 0, offY = 0;
379 offY = int_velocityY[j];
389 icvCopyBM_8u_C1R( imgB + (Y1 + offY)*imgStep + (X1 + offX),
401 icvCopyBM_8u_C1R( imgB + (Y1 + offY) * imgStep + (X1 + offX), imgStep,
433 int Y2 = Y1 + offY + ss[k].y;
513 int_velocityY[j] = VelocityY + (offY << 16);
  /external/skia/src/gpu/
GrLayerAtlas.cpp 25 void GrLayerAtlas::Plot::init(int id, int offX, int offY, int width, int height) {
28 fOffset.set(offX * width, offY * height);
GrLayerAtlas.h 49 void init(int id, int offX, int offY, int width, int height);
GrBatchAtlas.cpp 16 GrBatchAtlas::BatchPlot::BatchPlot(int index, uint64_t genID, int offX, int offY, int width,
27 , fY(offY)
GrBatchAtlas.h 185 BatchPlot(int index, uint64_t genID, int offX, int offY, int width, int height,
  /hardware/intel/img/hwcomposer/merrifield/common/observers/
MultiDisplayObserver.cpp 414 int32_t offX, int32_t offY,
422 offX < 0 || offY < 0 ||
424 ETRACE(" Invalid parameter: %dx%d, %dx%d, %dx%d", width, height, offX, offY, bufWidth, bufHeight);
428 status_t ret = mMDSDecoderConfig->setDecoderOutputResolution(sessionID, width, height, offX, offY, bufWidth, bufHeight);
MultiDisplayObserver.h 77 int32_t offX, int32_t offY,
  /frameworks/av/cmds/screenrecord/
screenrecord.cpp 266 uint32_t offX, offY;
268 offY = (videoHeight - outHeight) / 2;
269 Rect displayRect(offX, offY, offX + outWidth, offY + outHeight);
274 outHeight, outWidth, offY, offX);
277 outWidth, outHeight, offX, offY);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 683 for (int offY = 0; offY < sY; offY += 3) {
685 for (int h = 1; h <= sY - offY; h += 3) {
686 helperFloatCopy2D(sX, sY, offX, offY, w, h);
687 helperByteCopy2D(sX, sY, offX, offY, w, h);
688 helperShortCopy2D(Element.I16(mRS), sX, sY, offX, offY, w, h);
689 helperShortCopy2D(Element.F16(mRS), sX, sY, offX, offY, w, h);
690 helperIntCopy2D(sX, sY, offX, offY, w, h);
691 helperFloatAllocationCopy2D(sX, sY, offX, offY, w, h)
    [all...]

Completed in 1181 milliseconds