Searched refs:dy (Results 51 - 75 of 148) sorted by relevance

123456

/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_Interpolate_Chroma_s.s44 dy RN 7 label
120 M_LDR dy, Dy
123 ;// EightMinusdy = 8 - dy
127 ;// CCoeff = EightMinusdx * dy
128 ;// DCoeff = dx * dy
133 RSB EightMinusdy, dy, #8
134 CMN dx,dy
141 MUL DCCoeff, dxEightMinusdx, dy
144 ;// Checking either of dx and dy being non-zero
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DSweepGradient_Delegate.java178 float dy = pt2[1];
182 angle = (float) (dy < 0 ? 3 * Math.PI / 2 : Math.PI / 2);
183 } else if (dy == 0) {
186 angle = (float) Math.atan(dy / dx);
188 if (dy < 0) {
/frameworks/native/opengl/tests/testLatency/src/com/android/testlatency/
H A DTestLatencyView.java99 float x, y, dx, dy;
105 dy = mDY;
111 dy = dy * MS_PER_FRAME / dt;
120 float sy = (y + dy * step) * mScaleY + mOffsetY;
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dmotion_comp.cpp25 /* (blkwidth << 2) + (dy << 1) + dx */
128 int dx, dy; local
133 dy = y_pos & 3;
138 if (dx == 0 && dy == 0)
146 else if (dy == 0)
158 eVertInterp1MC(ref, picpitch, pred, pred_pitch, blkwidth, blkheight, dy);
160 else if (dy == 2)
175 eVertInterp3MC(&temp2[2][0], 21, pred, pred_pitch, blkwidth, blkheight, dy);
180 ref2 = ref + (y_pos + (dy / 2)) * picpitch + x_pos;
782 int blkwidth, int blkheight, int dy)
781 eVertInterp1MC(uint8 *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1148 eVertInterp3MC(int *in, int inpitch, uint8 *out, int outpitch, int blkwidth, int blkheight, int dy) argument
1810 int dx, dy; local
1833 eChromaDiagonalMC_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, uint8 *pOut, int predPitch, int blkwidth, int blkheight) argument
1925 eChromaHorizontalMC_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, uint8 *pOut, int predPitch, int blkwidth, int blkheight) argument
1974 eChromaVerticalMC_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, uint8 *pOut, int predPitch, int blkwidth, int blkheight) argument
2017 eChromaDiagonalMC2_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, uint8 *pOut, int predPitch, int blkwidth, int blkheight) argument
2060 eChromaHorizontalMC2_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, uint8 *pOut, int predPitch, int blkwidth, int blkheight) argument
2082 eChromaVerticalMC2_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, uint8 *pOut, int predPitch, int blkwidth, int blkheight) argument
2108 eChromaFullMC_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, uint8 *pOut, int predPitch, int blkwidth, int blkheight) argument
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
H A DomxVCM4P10_BlockMatch_Integer.c174 pBestMV->dy = -fromY * 4;
199 diffMV.dy = (y * 4) - pMVPred->dy;
/frameworks/base/core/java/android/view/animation/
H A DTranslateAnimation.java152 float dy = mFromYDelta;
157 dy = mFromYDelta + ((mToYDelta - mFromYDelta) * interpolatedTime);
159 t.getMatrix().setTranslate(dx, dy);
/frameworks/base/graphics/java/android/graphics/
H A DMatrix.java54 public void setTranslate(float dx, float dy) {
105 public boolean preTranslate(float dx, float dy) {
153 public boolean postTranslate(float dx, float dy) {
301 /** Set the matrix to translate by (dx, dy). */
302 public void setTranslate(float dx, float dy) { argument
303 native_setTranslate(native_instance, dx, dy);
382 * M' = M * T(dx, dy)
384 public boolean preTranslate(float dx, float dy) { argument
385 native_preTranslate(native_instance, dx, dy);
454 * M' = T(dx, dy) *
456 postTranslate(float dx, float dy) argument
846 native_setTranslate(long native_object, float dx, float dy) argument
867 native_preTranslate(long native_object, float dx, float dy) argument
883 native_postTranslate(long native_object, float dx, float dy) argument
[all...]
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);
H A DRectF.java233 * adding dy to its top and bottom coordinates.
236 * @param dy The amount to add to the rectangle's top and bottom coordinates
238 public void offset(float dx, float dy) { argument
240 top += dy;
242 bottom += dy;
260 * Inset the rectangle by (dx,dy). If dx is positive, then the sides are
263 * for dy and the top and bottom.
266 * @param dy The amount to add(subtract) from the rectangle's top(bottom)
268 public void inset(float dx, float dy) { argument
270 top += dy;
[all...]
H A DPointF.java64 public final void offset(float dx, float dy) { argument
66 y += dy;
H A DRect.java281 * adding dy to its top and bottom coordinates.
284 * @param dy The amount to add to the rectangle's top and bottom coordinates
286 public void offset(int dx, int dy) { argument
288 top += dy;
290 bottom += dy;
308 * Inset the rectangle by (dx,dy). If dx is positive, then the sides are
311 * for dy and the top and bottom.
314 * @param dy The amount to add(subtract) from the rectangle's top(bottom)
316 public void inset(int dx, int dy) { argument
318 top += dy;
[all...]
H A DRegion.java218 * Translate the region by [dx, dy]. If the region is empty, do nothing.
220 public void translate(int dx, int dy) { argument
221 translate(dx, dy, null);
225 * Set the dst region to the result of translating this region by [dx, dy].
228 public native void translate(int dx, int dy, Region dst); argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DColorOverlayDimmer.java151 float dy = v.getTop() + v.getTranslationY();
152 c.translate(dx, dy);
154 c.translate(-dx, -dy);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
H A DarmVCM4P10_Interpolate_Chroma_s.s58 dy RN 7 label
147 M_LDRD dx, dy, Dx
151 ;// EightMinusdy = 8 - dy
155 ;// CCoeff = EightMinusdx * dy
156 ;// DCoeff = dx * dy
159 RSB EightMinusdy, dy, #8
160 CMN dx,dy
171 SMULBB CCoeff, EightMinusdx, dy
172 SMULBB DCoeff, dx, dy
/frameworks/base/tests/RenderThreadTest/src/com/example/renderthread/
H A DMainActivity.java69 int dy = adapterView.getHeight();
76 RenderNodeAnimator.TRANSLATION_Y, dy * delta);
/frameworks/base/core/java/android/gesture/
H A DGestureUtils.java381 float dy = points[i + 3] - points[i + 1];
382 sum += Math.sqrt(dx * dx + dy * dy);
390 float dy = points[3] - points[1];
391 return (float) Math.sqrt(dx * dx + dy * dy) / totalLen;
396 float dy = points[3] - points[1];
397 return (float) Math.sqrt(dx * dx + dy * dy) / totalLen;
576 static float[] translate(float[] points, float dx, float dy) { argument
[all...]
H A DGestureStroke.java140 float dy = Math.abs(y - mY);
141 if (dx >= TOUCH_TOLERANCE || dy >= TOUCH_TOLERANCE) {
189 float dy = Math.abs(y - mY);
190 if (dx >= TOUCH_TOLERANCE || dy >= TOUCH_TOLERANCE) {
/frameworks/base/core/java/android/text/method/
H A DTouch.java150 float dy;
155 dy = event.getY() - ds[0].mY;
158 dy = ds[0].mY - event.getY();
164 int ny = widget.getScrollY() + (int) dy;
/frameworks/base/core/java/android/widget/
H A DOverScroller.java355 * @param dy Vertical distance to travel. Positive numbers will scroll the
358 public void startScroll(int startX, int startY, int dx, int dy) { argument
359 startScroll(startX, startY, dx, dy, DEFAULT_DURATION);
371 * @param dy Vertical distance to travel. Positive numbers will scroll the
375 public void startScroll(int startX, int startY, int dx, int dy, int duration) { argument
378 mScrollerY.startScroll(startY, dy, duration);
536 final int dy = mScrollerY.mFinal - mScrollerY.mStart;
538 Math.signum(yvel) == Math.signum(dy);
624 float y, dy;
628 dy
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DSlidingTab.java245 int dy = horiz ? 0 : (alignment == ALIGN_TOP ? alignment_value - tab.getBottom()
248 Animation trans = new TranslateAnimation(0, dx, 0, dy);
263 int dy = horiz ? 0: (alignment == ALIGN_TOP ? tab.getHeight() : -tab.getHeight());
265 Animation trans = new TranslateAnimation(-dx, 0, -dy, 0);
306 int dy = horiz ? 0 : (alignment == ALIGN_TOP ? alignment_value - tab.getTop()
309 TranslateAnimation trans = new TranslateAnimation(0, dx, 0, dy);
319 text.offsetTopAndBottom(dy);
320 tab.offsetTopAndBottom(dy);
647 final int dy;
656 dy
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/api/
H A DomxVC_s.h102 dy EQU 2;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/api/
H A DomxVC_s.h102 dy EQU 2;
/frameworks/base/core/java/android/view/
H A DViewParent.java501 * report how any pixels of the scroll reported by dx, dy were consumed in the
502 * <code>consumed</code> array. Index 0 corresponds to dx and index 1 corresponds to dy.
508 * @param dy Vertical scroll distance in pixels
511 public void onNestedPreScroll(View target, int dx, int dy, int[] consumed); argument
/frameworks/base/libs/hwui/
H A DSpotShadow.h44 const Vector2& point, float dx, float dy);
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp120 static void rMoveTo(JNIEnv* env, jobject clazz, jlong objHandle, jfloat dx, jfloat dy) { argument
122 obj->rMoveTo(dx, dy);
130 static void rLineTo(JNIEnv* env, jobject clazz, jlong objHandle, jfloat dx, jfloat dy) { argument
132 obj->rLineTo(dx, dy);
218 static void addPath__PathFF(JNIEnv* env, jobject clazz, jlong objHandle, jlong srcHandle, jfloat dx, jfloat dy) { argument
221 obj->addPath(*src, dx, dy);
237 static void offset__FFPath(JNIEnv* env, jobject clazz, jlong objHandle, jfloat dx, jfloat dy, jlong dstHandle) { argument
240 obj->offset(dx, dy, dst);
243 static void offset__FF(JNIEnv* env, jobject clazz, jlong objHandle, jfloat dx, jfloat dy) { argument
245 obj->offset(dx, dy);
248 setLastPoint(JNIEnv* env, jobject clazz, jlong objHandle, jfloat dx, jfloat dy) argument
[all...]

Completed in 3053 milliseconds

123456