HomeSort by relevance Sort by last modified time
    Searched full:offy (Results 1 - 18 of 18) sorted by null

  /external/skia/bench/
ReadPixBench.cpp 33 int offY = (size.height() - kWindowSize) / kNumStepsY;
50 canvas->readPixels(&bitmap, x * offX, y * offY);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
TutorialEN.java 162 void show(int offx, int offy) {
164 offy -= textView.getPaddingTop() + textHeight;
168 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight();
187 window.showAtLocation(inputView, Gravity.NO_GRAVITY, x + offx, y + offy);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_MotionEstimationMB.c 946 OMX_U32 x, y, i, j, ref, OffX, OffY, OffSrc, OffRef;
997 OffY = (PartStartY + y) >> 2;
1003 pMVArr [4 + OffY + j][4 + OffX + i].dx = DstMV.dx;
1004 pMVArr [4 + OffY + j][4 + OffX + i].dy = DstMV.dy;
1005 pMVPredArr [OffY + j][OffX + i].dx = MVPred.dx;
1006 pMVPredArr [OffY + j][OffX + i].dy = MVPred.dy;
1010 pRefFrArr [2 + (OffY >> 1)][2 + (OffX >> 1)] = ref;
1015 pRefFrArr [2 + (OffY >> 1) + j][2 + (OffX >> 1) + i] = ref;
1035 OffY = (PartStartY + y * BlockHeight) >> 2;
1037 BestMV[y][x].dx = pMVArr [4 + OffY][4 + OffX].dx
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationTest.java 673 for (int offY = 0; offY < sY; offY += 3) {
675 for (int h = 1; h <= sY - offY; h += 3) {
676 helperFloatCopy2D(sX, sY, offX, offY, w, h);
677 helperByteCopy2D(sX, sY, offX, offY, w, h);
678 helperShortCopy2D(sX, sY, offX, offY, w, h);
679 helperIntCopy2D(sX, sY, offX, offY, w, h);
680 helperFloatAllocationCopy2D(sX, sY, offX, offY, w, h);
681 helperByteAllocationCopy2D(sX, sY, offX, offY, w, h)
    [all...]
  /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);
cvshapedescr.cpp 790 double x0, y0, idet, scale, offx = 0, offy = 0; local
810 offy += ((CvPoint*)reader.ptr)->y;
815 offy += ((CvPoint2D32f*)reader.ptr)->y;
821 offy /= n;
832 y = ((CvPoint*)reader.ptr)->y - offy;
837 y = ((CvPoint2D32f*)reader.ptr)->y - offy;
916 box->center.y = (float)offy;
933 box->center.y = (float)(y0 + offy);
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
TutorialJAJP.java 164 void show(int offx, int offy) {
166 offy -= textView.getPaddingTop() + textHeight;
170 if ((gravity & Gravity.BOTTOM) == Gravity.BOTTOM) offy -= window.getHeight();
190 window.showAtLocation(inputView, Gravity.NO_GRAVITY, x + offx, y + offy);
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_backing_store.h 104 EAPI Eina_Bool ewk_tiled_backing_store_zoom_set(Evas_Object *o, float *zoom, Evas_Coord cx, Evas_Coord cy, Evas_Coord *offx, Evas_Coord *offy);
ewk_tiled_backing_store.c     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
BridgeWindowSession.java 188 public void setUniverseTransform(IBinder window, float alpha, float offx, float offy,
  /frameworks/base/services/java/com/android/server/wm/
Session.java 426 public void setUniverseTransform(IBinder window, float alpha, float offx, float offy,
433 alpha, offx, offy, dsdx, dtdx, dsdy, dtdy); local
WindowStateAnimator.java     [all...]
WindowManagerService.java     [all...]
  /frameworks/base/core/java/android/view/
IWindowSession.aidl 185 void setUniverseTransform(IBinder window, float alpha, float offx, float offy,
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselController.java 389 * @param offy an optional offset to apply to the texture (in pixels) from top of detail line
394 public void setDetailTextureForItem(int n, float offx, float offy, float loffx, float loffy,
398 mRenderScript.setDetailTexture(n, offx, offy, loffx, loffy, bitmap);
CarouselView.java 362 * @param offy an optional offset to apply to the texture (in pixels) from top of detail line
367 public void setDetailTextureForItem(int n, float offx, float offy, float loffx, float loffy,
369 mController.setDetailTextureForItem(n, offx, offy, loffx, loffy, bitmap);
CarouselRS.java 737 void setDetailTexture(int n, float offx, float offy, float loffx, float loffy, Bitmap bitmap)
759 mScript.invoke_setDetailTexture(n, offx, offy, loffx, loffy, item.detailTexture);
    [all...]
carousel.rs 512 void setDetailTexture(int n, float offx, float offy, float loffx, float loffy, rs_allocation texture)
521 cards[n].detailTextureOffset.y = offy;
    [all...]

Completed in 748 milliseconds