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

1234

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DomxVCM4P10_InterpolateChroma.c51 * [in] dx Fractional part of horizontal motion vector component
67 * dx or dy is out of range [0-7].
81 OMX_S32 dx,
87 ((OMX_U8*)pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
76 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.s43 dx RN 6 label
119 M_LDR dx, Dx
122 ;// EightMinusdx = 8 - dx
126 ;// BCoeff = dx * EightMinusdy
128 ;// DCoeff = dx * dy
132 RSB EightMinusdx, dx, #8
134 CMN dx,dy
135 ADD dxEightMinusdx, EightMinusdx, dx, LSL #16
144 ;// 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.c51 * [in] dx Fractional part of horizontal motion vector component
67 * dx or dy is out of range [0-7].
81 OMX_S32 dx,
87 ((OMX_U8*)pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
76 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.c51 * dx -Fractional part of horizontal motion vector component in 1/8 pixel
70 * dx or dy is out of range [0-7].
84 OMX_S32 dx,
94 armRetArgErrIf(dx < 0, OMX_Sts_BadArgErr)
95 armRetArgErrIf(dx > 7, OMX_Sts_BadArgErr)
107 ((OMX_U8*)pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
79 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.c51 * dx -Fractional part of horizontal motion vector component in 1/4 pixel
70 * dx or dy is out of range [0,3].
83 OMX_S32 dx,
93 armRetArgErrIf(dx < 0, OMX_Sts_BadArgErr)
94 armRetArgErrIf(dx > 3, OMX_Sts_BadArgErr)
106 (pSrc, srcStep, pDst, dstStep, roi.width, roi.height, dx, dy);
78 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.c50 * [in] dx Fractional part of horizontal motion vector
67 OMX_U32 dx,
71 OMX_U32 EightMinusdx = 8 - dx;
79 armRetArgErrIf(dx > 7, OMX_Sts_BadArgErr)
87 if (dx != 0 || dy != 0)
90 BCoeff = dx * EightMinusdy;
92 DCoeff = dx * dy;
60 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.c93 * [in] dx Fractional part of horizontal motion vector
111 OMX_U32 dx,
122 armRetArgErrIf(dx > 3, OMX_Sts_BadArgErr)
126 if (dx == 3)
138 if (dx == 0 && dy == 0)
149 if (dx == 1 || dx == 3)
155 else if (dx == 0)
167 else if (dx == 2 || dy == 2)
173 if (dx
104 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/av/media/libeffects/loudness/dsp/core/
H A Dinterpolator_linear.h67 T dx = x - x_data_[cached_index_]; local
68 return y_data_[cached_index_] + (dY * dx) / dX;
/frameworks/base/graphics/java/android/graphics/
H A DLayerRasterizer.java30 public void addLayer(Paint paint, float dx, float dy) { argument
31 nativeAddLayer(native_instance, paint.mNativePaint, dx, dy);
39 private static native void nativeAddLayer(long native_layer, long native_paint, float dx, float dy); argument
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 DPointF.java64 public final void offset(float dx, float dy) { argument
65 x += dx;
H A DCamera.java161 public native float dotWithNormal(float dx, float dy, float dz); argument
H A DOutline.java226 * Offsets the Outline by (dx,dy)
228 public void offset(int dx, int dy) { argument
230 mRect.offset(dx, dy);
232 mPath.offset(dx, dy);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DLayerRasterizer_Delegate.java64 /*package*/ static void nativeAddLayer(long native_layer, long 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/jni/android/graphics/
H A DRasterizer.cpp81 static void addLayer(JNIEnv* env, jobject, jlong layerHandle, jlong paintHandle, jfloat dx, jfloat dy) { argument
86 nr->fBuilder.addLayer(*paint, dx, dy);
H A DCamera.cpp35 jfloat dx, jfloat dy, jfloat dz) {
38 v->translate(dx, dy, dz);
34 Camera_translate(JNIEnv* env, jobject obj, jfloat dx, jfloat dy, jfloat dz) argument
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DTypeThunker.java62 int dx, int dy, int dz, boolean dmip, boolean dfaces, int yuv) {
68 if (dx > 0) tb.setX(dx);
61 create(RenderScript rs, Element e, int dx, int dy, int dz, boolean dmip, boolean dfaces, int yuv) 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/minikin/include/minikin/
H A DMinikinFont.h69 void offset(float dx, float dy) { argument
70 mLeft += dx;
72 mRight += dx;
/frameworks/support/v4/gingerbread/android/support/v4/widget/
H A DScrollerCompatGingerbread.java46 public static void startScroll(Object scroller, int startX, int startY, int dx, int dy) { argument
47 ((OverScroller) scroller).startScroll(startX, startY, dx, dy);
50 public static void startScroll(Object scroller, int startX, int startY, int dx, int dy, argument
52 ((OverScroller) scroller).startScroll(startX, startY, dx, dy, duration);
/frameworks/base/cmds/input/src/com/android/commands/input/
H A DInput.java223 * @param dx change in x coordinate due to move
226 private void sendMove(int inputSource, float dx, float dy) { argument
228 injectMotionEvent(inputSource, MotionEvent.ACTION_MOVE, now, dx, dy, 0.0f);
287 System.err.println(" roll <dx> <dy> (Default: trackball)");

Completed in 7452 milliseconds

1234