Home
last modified time | relevance | path

Searched defs:dy (Results 1 – 25 of 88) sorted by relevance

1234

/frameworks/base/media/mca/filterpacks/native/base/
Dgeometry.cpp82 const float dy = height * (current_ratio / ratio - 1.0f); in ExpandToAspectRatio() local
99 const float dy = height * (length / current_length - 1.0f); in ExpandToMinLength() local
124 const float dy = height * (f - 1.0f); in ScaleWithLengthLimit() local
138 Point dy = vert_axis; in FromCenterAxisAndLengths() local
/frameworks/base/graphics/java/android/graphics/
DLayerRasterizer.java29 public void addLayer(Paint paint, float dx, float dy) { in addLayer()
38 … private static native void nativeAddLayer(int native_layer, int native_paint, float dx, float dy); in nativeAddLayer()
DPath.java229 public void rMoveTo(float dx, float dy) { in rMoveTo()
256 public void rLineTo(float dx, float dy) { in rLineTo()
510 public void addPath(Path src, float dx, float dy) { in addPath()
543 public void offset(float dx, float dy, Path dst) { in offset()
557 public void offset(float dx, float dy) { in offset()
567 public void setLastPoint(float dx, float dy) { in setLastPoint()
621 private static native void native_rMoveTo(int nPath, float dx, float dy); in native_rMoveTo()
623 private static native void native_rLineTo(int nPath, float dx, float dy); in native_rLineTo()
648 float dy); in native_addPath()
651 private static native void native_offset(int nPath, float dx, float dy, in native_offset()
[all …]
/frameworks/base/media/mca/filterfw/native/core/
Dgeometry.cpp83 const float dy = height * (current_ratio / ratio - 1.0f); in ExpandToAspectRatio() local
100 const float dy = height * (length / current_length - 1.0f); in ExpandToMinLength() local
125 const float dy = height * (f - 1.0f); in ScaleWithLengthLimit() local
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
DomxVCM4P10_InterpolateChroma.c70 OMX_S32 dy, in omxVCM4P10_InterpolateChroma()
DomxVCM4P10_InterpolateLuma.c69 OMX_S32 dy, in omxVCM4P10_InterpolateLuma()
DarmVCM4P10_Interpolate_Chroma.c53 OMX_U32 dy in armVCM4P10_Interpolate_Chroma()
DarmVCM4P10_Interpolate_Luma.c97 OMX_U32 dy in armVCM4P10_Interpolate_Luma()
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
DomxVCM4P10_InterpolateChroma.c67 OMX_S32 dy, in omxVCM4P10_InterpolateChroma()
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src/
DomxVCM4P10_InterpolateChroma.c67 OMX_S32 dy, in omxVCM4P10_InterpolateChroma()
/frameworks/support/v4/java/android/support/v4/widget/
DScrollerCompat.java128 public void startScroll(int startX, int startY, int dx, int dy) { in startScroll()
145 public void startScroll(int startX, int startY, int dx, int dy, int duration) { in startScroll()
/frameworks/native/libs/ui/
DRegion.cpp217 Region& Region::orSelf(const Region& rhs, int dx, int dy) { in orSelf()
220 Region& Region::xorSelf(const Region& rhs, int dx, int dy) { in xorSelf()
223 Region& Region::andSelf(const Region& rhs, int dx, int dy) { in andSelf()
226 Region& Region::subtractSelf(const Region& rhs, int dx, int dy) { in subtractSelf()
229 Region& Region::operationSelf(const Region& rhs, int dx, int dy, int op) { in operationSelf()
249 const Region Region::operation(const Region& rhs, int dx, int dy, int op) const { in operation()
389 const Region& rhs, int dx, int dy) in boolean_operation()
499 const Rect& rhs, int dx, int dy) in boolean_operation()
536 void Region::translate(Region& reg, int dx, int dy) in translate()
556 void Region::translate(Region& dst, const Region& reg, int dx, int dy) in translate()
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DLayerRasterizer_Delegate.java64 /*package*/ static void nativeAddLayer(int native_layer, int native_paint, float dx, float dy) { in nativeAddLayer()
DPath_Delegate.java221 /*package*/ static void native_rMoveTo(int nPath, float dx, float dy) { in native_rMoveTo()
241 /*package*/ static void native_rLineTo(int nPath, float dx, float dy) { in native_rLineTo()
404 /*package*/ static void native_addPath(int nPath, int src, float dx, float dy) { in native_addPath()
424 /*package*/ static void native_offset(int nPath, float dx, float dy, int dst_path) { in native_offset()
437 /*package*/ static void native_offset(int nPath, float dx, float dy) { in native_offset()
442 /*package*/ static void native_setLastPoint(int nPath, float dx, float dy) { in native_setLastPoint()
585 private void rMoveTo(float dx, float dy) { in rMoveTo()
613 private void rLineTo(float dx, float dy) { in rLineTo()
773 public void offset(float dx, float dy, Path_Delegate dst) { in offset()
/frameworks/base/core/jni/android/graphics/
DLayerRasterizer.cpp10 …ddLayer(JNIEnv* env, jobject, SkLayerRasterizer* layer, const SkPaint* paint, float dx, float dy) { in addLayer()
DPath.cpp101 static void rMoveTo(JNIEnv* env, jobject clazz, SkPath* obj, jfloat dx, jfloat dy) { in rMoveTo()
113 static void rLineTo(JNIEnv* env, jobject clazz, SkPath* obj, jfloat dx, jfloat dy) { in rLineTo()
225 … void addPath__PathFF(JNIEnv* env, jobject clazz, SkPath* obj, SkPath* src, jfloat dx, jfloat dy) { in addPath__PathFF()
239 …static void offset__FFPath(JNIEnv* env, jobject clazz, SkPath* obj, jfloat dx, jfloat dy, SkPath* … in offset__FFPath()
245 static void offset__FF(JNIEnv* env, jobject clazz, SkPath* obj, jfloat dx, jfloat dy) { in offset__FF()
251 static void setLastPoint(JNIEnv* env, jobject clazz, SkPath* obj, jfloat dx, jfloat dy) { in setLastPoint()
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
Dmotion_comp.cpp128 int dx, dy; in eLumaMotionComp() local
783 int blkwidth, int blkheight, int dy) in eVertInterp1MC()
1152 int blkwidth, int blkheight, int dy) in eVertInterp3MC()
1814 int dx, dy; in eChromaMotionComp() local
1837 void eChromaDiagonalMC_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, in eChromaDiagonalMC_SIMD()
1929 void eChromaHorizontalMC_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, in eChromaHorizontalMC_SIMD()
1978 void eChromaVerticalMC_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, in eChromaVerticalMC_SIMD()
2021 void eChromaDiagonalMC2_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, in eChromaDiagonalMC2_SIMD()
2064 void eChromaHorizontalMC2_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, in eChromaHorizontalMC2_SIMD()
2086 void eChromaVerticalMC2_SIMD(uint8 *pRef, int srcPitch, int dx, int dy, in eChromaVerticalMC2_SIMD()
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dpp_semaphore_chroma_inter.cpp117 int dy, /* i */ in pp_semaphore_chroma_inter()
Dpp_semaphore_luma.cpp120 int dy, /* i */ in pp_semaphore_luma()
/frameworks/base/core/java/android/gesture/
DGestureStroke.java140 float dy = Math.abs(y - mY); in makePath() local
189 float dy = Math.abs(y - mY); in toPath() local
DGestureUtils.java381 float dy = points[i + 3] - points[i + 1]; in computeTotalLength() local
390 float dy = points[3] - points[1]; in computeStraightness() local
396 float dy = points[3] - points[1]; in computeStraightness() local
576 static float[] translate(float[] points, float dx, float dy) { in translate()
/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
DRsListRS.java105 int dy = mLastY - y; in onActionMove() local
/frameworks/base/core/java/android/widget/
DScroller.java317 public void startScroll(int startX, int startY, int dx, int dy) { in startScroll()
334 public void startScroll(int startX, int startY, int dx, int dy, int duration) { in startScroll()
374 float dy = (float) (mFinalY - mStartY); in fling() local
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/testapp/
DTouchHandler.java87 float dy = mLastY - y; in onActionMove() local
/frameworks/base/core/java/android/webkit/
DQuadF.java38 public void offset(float dx, float dy) { in offset()

1234