Searched defs:dx (Results 1 - 25 of 71) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DomxVCM4P10_InterpolateChroma.c36 * [in] dx Fractional part of horizontal motion vector component
52 * dx or dy is out of range [0-7].
66 OMX_S32 dx,
72 ((OMX_U8*)pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
61 omxVCM4P10_InterpolateChroma( const OMX_U8* pSrc, OMX_S32 srcStep, OMX_U8* pDst, OMX_S32 dstStep, OMX_S32 dx, OMX_S32 dy, OMXSize roi ) argument
H A DarmVCM4P10_Interpolate_Chroma_s.s29 dx RN 6 label
105 M_LDR dx, Dx
108 ;// EightMinusdx = 8 - dx
112 ;// BCoeff = dx * EightMinusdy
114 ;// DCoeff = dx * dy
118 RSB EightMinusdx, dx, #8
120 CMN dx,dy
121 ADD dxEightMinusdx, EightMinusdx, dx, LSL #16
130 ;// Checking either of dx and dy being non-zero
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DomxVCM4P10_InterpolateChroma.c36 * [in] dx Fractional part of horizontal motion vector component
52 * dx or dy is out of range [0-7].
66 OMX_S32 dx,
72 ((OMX_U8*)pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
61 omxVCM4P10_InterpolateChroma( const OMX_U8* pSrc, OMX_S32 srcStep, OMX_U8* pDst, OMX_S32 dstStep, OMX_S32 dx, OMX_S32 dy, OMXSize roi ) argument
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_InterpolateChroma.c36 * dx -Fractional part of horizontal motion vector component in 1/8 pixel
55 * dx or dy is out of range [0-7].
69 OMX_S32 dx,
79 armRetArgErrIf(dx < 0, OMX_Sts_BadArgErr)
80 armRetArgErrIf(dx > 7, OMX_Sts_BadArgErr)
92 ((OMX_U8*)pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
64 omxVCM4P10_InterpolateChroma( const OMX_U8* pSrc, OMX_S32 srcStep, OMX_U8* pDst, OMX_S32 dstStep, OMX_S32 dx, OMX_S32 dy, OMXSize roi ) argument
H A DomxVCM4P10_InterpolateLuma.c36 * dx -Fractional part of horizontal motion vector component in 1/4 pixel
55 * dx or dy is out of range [0,3].
68 OMX_S32 dx,
78 armRetArgErrIf(dx < 0, OMX_Sts_BadArgErr)
79 armRetArgErrIf(dx > 3, OMX_Sts_BadArgErr)
91 (pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
63 omxVCM4P10_InterpolateLuma( const OMX_U8* pSrc, OMX_S32 srcStep, OMX_U8* pDst, OMX_S32 dstStep, OMX_S32 dx, OMX_S32 dy, OMXSize roi ) argument
H A DarmVCM4P10_Interpolate_Chroma.c35 * [in] dx Fractional part of horizontal motion vector
52 OMX_U32 dx,
56 OMX_U32 EightMinusdx = 8 - dx;
64 armRetArgErrIf(dx > 7, OMX_Sts_BadArgErr)
72 if (dx != 0 || dy != 0)
75 BCoeff = dx * EightMinusdy;
77 DCoeff = dx * dy;
45 armVCM4P10_Interpolate_Chroma( OMX_U8 *pSrc, OMX_U32 iSrcStep, OMX_U8 *pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight, OMX_U32 dx, OMX_U32 dy ) argument
H A DarmVCM4P10_Interpolate_Luma.c78 * [in] dx Fractional part of horizontal motion vector
96 OMX_U32 dx,
107 armRetArgErrIf(dx > 3, OMX_Sts_BadArgErr)
111 if (dx == 3)
123 if (dx == 0 && dy == 0)
134 if (dx == 1 || dx == 3)
140 else if (dx == 0)
152 else if (dx == 2 || dy == 2)
158 if (dx
89 armVCM4P10_Interpolate_Luma( const OMX_U8 *pSrc, OMX_U32 iSrcStep, OMX_U8 *pDst, OMX_U32 iDstStep, OMX_U32 iWidth, OMX_U32 iHeight, OMX_U32 dx, OMX_U32 dy ) argument
[all...]
/frameworks/base/core/jni/android/graphics/
H A DLayerRasterizer.cpp10 static void addLayer(JNIEnv* env, jobject, SkLayerRasterizer* layer, const SkPaint* paint, float dx, float dy) { argument
13 layer->addLayer(*paint, SkFloatToScalar(dx), SkFloatToScalar(dy));
H A DCamera.cpp28 float dx, float dy, float dz) {
30 v->translate(SkFloatToScalar(dx), SkFloatToScalar(dy), SkFloatToScalar(dz));
27 Camera_translate(JNIEnv* env, jobject obj, float dx, float dy, float dz) argument
/frameworks/base/graphics/java/android/graphics/
H A DLayerRasterizer.java29 public void addLayer(Paint paint, float dx, float dy) { argument
30 nativeAddLayer(native_instance, paint.mNativePaint, dx, dy);
38 private static native void nativeAddLayer(int native_layer, int native_paint, float dx, float dy); argument
H A DPointF.java64 public final void offset(float dx, float dy) { argument
65 x += dx;
H A DPoint.java59 * Offset the point's coordinates by dx, dy
61 public final void offset(int dx, int dy) { argument
62 x += dx;
H A DCamera.java153 public native float dotWithNormal(float dx, float dy, float dz); argument
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DLayerRasterizer_Delegate.java64 /*package*/ static void nativeAddLayer(int native_layer, int native_paint, float dx, float dy) { argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dpp_semaphore_chroma_inter.cpp29 dx = horizontal component of the motion vector (int)
116 int dx, /* i */
188 if (((dx&0xF) != 0) && (mmvx + 1 < (mvwidth >> 1) - 1))
189 { /* dx is not a multiple of 16 */
199 { /* dx is a multiple of 16 */
111 pp_semaphore_chroma_inter( int xpred, int ypred, uint8 *pp_dec_u, uint8 *pstprcTypPrv, int dx, int dy, int mvwidth, int height, int32 size, int mv_loc, uint8 msk_deblock ) argument
H A Dpp_semaphore_luma.cpp33 dx = horizontal component of the motion vector (int)
119 int dx, /* i */
165 if ((dx&0xF) != 0)
166 { /* dx is not a multiple of 16 */
190 { /* dx is a multiple of 16 */
289 if (((dx&0xF) != 0) && (mmvx + 1 < mvwidth - 1))
290 { /* dx is not a multiple of 16 and the block */
324 { /* dx is a multiple of 16 or the block x */
112 pp_semaphore_luma( int xpred, int ypred, uint8 *pp_dec_y, uint8 *pstprcTypPrv, int *ll, int *mv_loc, int dx, int dy, int mvwidth, int width, int height ) argument
H A Dmb_motion_comp.cpp146 /* Motion vector (dx,dy) in half-pel resolution */
147 int dx, dy; local
195 dx = px[0] = px[1] = px[2] = px[3] = video->motX[imv];
197 if ((dx & 3) == 0)
199 dx = dx >> 1;
204 dx = (dx >> 1) | 1;
226 dx = PV_SIGN(xsum) * (roundtab16[(PV_ABS(xsum)) & 0xF] +
416 video->pstprcTypPrv, dx, d
[all...]
/frameworks/base/core/java/android/webkit/
H A DQuadF.java38 public void offset(float dx, float dy) { argument
39 p1.offset(dx, dy);
40 p2.offset(dx, dy);
41 p3.offset(dx, dy);
42 p4.offset(dx, dy);
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java191 * @param dx change in x coordinate due to move
194 private void sendMove(int inputSource, float dx, float dy) { argument
196 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, dx, dy, 0.0f);
242 System.err.println(" input trackball roll <dx> <dy>");
/frameworks/base/libs/hwui/
H A DRect.h155 void translate(float dx, float dy) { argument
156 left += dx;
157 right += dx;
/frameworks/support/v4/java/android/support/v4/widget/
H A DScrollerCompat.java123 * @param dx Horizontal distance to travel. Positive numbers will scroll the
128 public void startScroll(int startX, int startY, int dx, int dy) { argument
129 mScroller.startScroll(startX, startY, dx, dy);
139 * @param dx Horizontal distance to travel. Positive numbers will scroll the
145 public void startScroll(int startX, int startY, int dx, int dy, int duration) { argument
146 mScroller.startScroll(startX, startY, dx, dy, duration);
/frameworks/base/media/jni/mediaeditor/
H A DVideoBrowserMain.c39 * M4OSA_UInt32 y, M4OSA_UInt32 dx, M4OSA_UInt32 dy);
46 * @param dx (IN) : Width of the display window
54 M4OSA_UInt32 dx, M4OSA_UInt32 dy)
60 pContext, x, y, dx, dy);
70 pC->m_outputPlane[0].u_width = dx;
50 videoBrowserSetWindow( M4OSA_Context pContext, M4OSA_Int32 *pPixelArray, M4OSA_UInt32 x, M4OSA_UInt32 y, M4OSA_UInt32 dx, M4OSA_UInt32 dy) argument
/frameworks/base/media/mca/filterfw/native/core/
H A Dgeometry.cpp79 const float dx = width * (ratio / current_ratio - 1.0f); local
80 x -= dx / 2.0f;
81 width += dx;
97 const float dx = width * (length / current_length - 1.0f); local
98 x -= dx / 2.0f;
99 width += dx;
122 const float dx = width * (f - 1.0f); local
123 x -= dx / 2.0f;
124 width += dx;
/frameworks/base/media/mca/filterpacks/native/base/
H A Dgeometry.cpp78 const float dx = width * (ratio / current_ratio - 1.0f); local
79 x -= dx / 2.0f;
80 width += dx;
96 const float dx = width * (length / current_length - 1.0f); local
97 x -= dx / 2.0f;
98 width += dx;
121 const float dx = width * (f - 1.0f); local
122 x -= dx / 2.0f;
123 width += dx;
144 Point dx
[all...]
/frameworks/base/core/java/android/gesture/
H A DGestureUtils.java380 float dx = points[i + 2] - points[i];
382 sum += Math.sqrt(dx * dx + dy * dy);
389 float dx = points[2] - points[0];
391 return (float) Math.sqrt(dx * dx + dy * dy) / totalLen;
395 float dx = points[2] - points[0];
397 return (float) Math.sqrt(dx * dx + dy * dy) / totalLen;
576 static float[] translate(float[] points, float dx, floa argument
[all...]

Completed in 287 milliseconds

123