Home
last modified time | relevance | path

Searched refs:ry (Results 1 – 20 of 20) sorted by relevance

/frameworks/native/opengl/libagl/
Dmatrix.cpp727 const GLfixed ry = rhs->y; in point2__generic() local
728 lhs->x = mla2a(rx, m[ 0], ry, m[ 4], m[12]); in point2__generic()
729 lhs->y = mla2a(rx, m[ 1], ry, m[ 5], m[13]); in point2__generic()
730 lhs->z = mla2a(rx, m[ 2], ry, m[ 6], m[14]); in point2__generic()
731 lhs->w = mla2a(rx, m[ 3], ry, m[ 7], m[15]); in point2__generic()
737 const GLfixed ry = rhs->y; in point3__generic() local
739 lhs->x = mla3a(rx, m[ 0], ry, m[ 4], rz, m[ 8], m[12]); in point3__generic()
740 lhs->y = mla3a(rx, m[ 1], ry, m[ 5], rz, m[ 9], m[13]); in point3__generic()
741 lhs->z = mla3a(rx, m[ 2], ry, m[ 6], rz, m[10], m[14]); in point3__generic()
742 lhs->w = mla3a(rx, m[ 3], ry, m[ 7], rz, m[11], m[15]); in point3__generic()
[all …]
/frameworks/compile/slang/tests/F_mix_vector/
Dmix_vector.rs7 (void)f4.ry;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DKeyButtonView.java164 final float ry = (h * (GLOW_MAX_SCALE_FACTOR - 1.0f)) / 2.0f + 1.0f; in setGlowScale() local
168 getTop() - ry, in setGlowScale()
170 getBottom() + ry)); in setGlowScale()
/frameworks/base/graphics/java/android/graphics/
DPath.java480 public void addRoundRect(RectF rect, float rx, float ry, Direction dir) { in addRoundRect() argument
485 native_addRoundRect(mNativePath, rect, rx, ry, dir.nativeInt); in addRoundRect()
652 float rx, float ry, int dir); in native_addRoundRect() argument
DCanvas.java1037 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { in drawRoundRect() argument
1041 native_drawRoundRect(mNativeCanvas, rect, rx, ry, in drawRoundRect()
1727 float ry, int paint); in native_drawRoundRect() argument
/frameworks/base/core/jni/
Dandroid_view_GLES20DisplayList.cpp123 jobject clazz, DisplayList* displayList, float ry) { in android_view_GLES20DisplayList_setRotationY() argument
124 displayList->setRotationY(ry); in android_view_GLES20DisplayList_setRotationY()
Dandroid_view_GLES20Canvas.cpp452 jfloat rx, jfloat ry, SkPaint* paint) { in android_view_GLES20Canvas_drawRoundRect() argument
453 renderer->drawRoundRect(left, top, right, bottom, rx, ry, paint); in android_view_GLES20Canvas_drawRoundRect()
/frameworks/base/core/java/android/view/
DGLES20RecordingCanvas.java226 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { in drawRoundRect() argument
227 super.drawRoundRect(rect, rx, ry, paint); in drawRoundRect()
DGLES20Canvas.java1145 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { in drawRoundRect() argument
1149 rx, ry, paint.mNativePaint); in drawRoundRect()
/frameworks/base/libs/hwui/
DPathCache.cpp487 float rx, float ry, SkPaint* paint) { in getRoundRect() argument
492 entry.shape.roundRect.mRy = ry; in getRoundRect()
500 path.addRoundRect(r, rx, ry, SkPath::kCW_Direction); in getRoundRect()
DPathCache.h210 PathTexture* getRoundRect(float width, float height, float rx, float ry, SkPaint* paint);
DDisplayListRenderer.cpp346 float rx, float ry, SkPaint* paint) { in drawRoundRect() argument
348 addDrawOp(new (alloc()) DrawRoundRectOp(left, top, right, bottom, rx, ry, paint)); in drawRoundRect()
DDisplayListRenderer.h112 float rx, float ry, SkPaint* paint);
DOpenGLRenderer.h260 float rx, float ry, SkPaint* paint);
DDisplayListOp.h1039 float rx, float ry, SkPaint* paint) in DrawRoundRectOp() argument
1040 : DrawStrokableOp(left, top, right, bottom, paint), mRx(rx), mRy(ry) {} in DrawRoundRectOp()
DOpenGLRenderer.cpp2557 float rx, float ry, SkPaint* p) { in drawRoundRect() argument
2566 right - left, bottom - top, rx, ry, p); in drawRoundRect()
2576 ry += outset; in drawRoundRect()
2578 path.addRoundRect(rect, rx, ry); in drawRoundRect()
/frameworks/base/core/jni/android/graphics/
DPath.cpp203 jfloat rx, jfloat ry, SkPath::Direction dir) { in addRoundRectXY() argument
207 SkScalar ry_ = SkFloatToScalar(ry); in addRoundRectXY()
DCanvas.cpp453 jobject jrect, jfloat rx, jfloat ry, in drawRoundRect() argument
457 canvas->drawRoundRect(rect, SkFloatToScalar(rx), SkFloatToScalar(ry), in drawRoundRect()
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
DPath_Delegate.java373 int nPath, RectF rect, float rx, float ry, int dir) { in native_addRoundRect() argument
381 rect.left, rect.top, rect.width(), rect.height(), rx * 2, ry * 2), false); in native_addRoundRect()
DCanvas_Delegate.java763 final RectF rect, final float rx, final float ry, int paint) { in native_drawRoundRect() argument
777 (int)rx, (int)ry); in native_drawRoundRect()
785 (int)rx, (int)ry); in native_drawRoundRect()