Searched defs:rx (Results 1 - 23 of 23) sorted by last modified time

/frameworks/native/opengl/libagl/
H A Dmatrix.cpp726 const GLfixed rx = rhs->x; local
728 lhs->x = mla2a(rx, m[ 0], ry, m[ 4], m[12]);
729 lhs->y = mla2a(rx, m[ 1], ry, m[ 5], m[13]);
730 lhs->z = mla2a(rx, m[ 2], ry, m[ 6], m[14]);
731 lhs->w = mla2a(rx, m[ 3], ry, m[ 7], m[15]);
736 const GLfixed rx = rhs->x; local
739 lhs->x = mla3a(rx, m[ 0], ry, m[ 4], rz, m[ 8], m[12]);
740 lhs->y = mla3a(rx, m[ 1], ry, m[ 5], rz, m[ 9], m[13]);
741 lhs->z = mla3a(rx, m[ 2], ry, m[ 6], rz, m[10], m[14]);
742 lhs->w = mla3a(rx,
747 const GLfixed rx = rhs->x; local
762 const GLfixed rx = rhs->x; local
776 const GLfixed rx = rhs->x; local
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBaseCanvas_Delegate.java293 final float rx, final float ry, long paint) {
304 2 * (int)rx, 2 * (int)ry);
312 2 * (int)rx, 2 * (int)ry);
291 nDrawRoundRect(long nativeCanvas, final float left, final float top, final float right, final float bottom, final float rx, final float ry, long paint) argument
H A DPath_Delegate.java379 float bottom, float rx, float ry, int dir) {
387 left, top, right - left, bottom - top, rx * 2, ry * 2), false);
378 nAddRoundRect(long nPath, float left, float top, float right, float bottom, float rx, float ry, int dir) argument
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/graphics/
H A DNopCanvas.java192 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { argument
196 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, argument
/frameworks/base/libs/hwui/
H A DPathCache.cpp444 float rx, float ry, const SkPaint* paint) {
448 entry.shape.roundRect.mRx = rx;
457 path.addRoundRect(r, rx, ry, SkPath::kCW_Direction);
443 getRoundRect(float width, float height, float rx, float ry, const SkPaint* paint) argument
H A DRecordedOp.h324 RoundRectOp(BASE_PARAMS, float rx, float ry) argument
326 , rx(rx)
328 const float rx; member in struct:android::uirenderer::RoundRectOp
334 float* left, float* top, float* right, float* bottom, float *rx, float *ry)
340 , rx(rx)
346 const float* rx; member in struct:android::uirenderer::RoundRectPropsOp
333 RoundRectPropsOp(const Matrix4& localMatrix, const ClipBase* localClip, const SkPaint* paint, float* left, float* top, float* right, float* bottom, float *rx, float *ry) argument
H A DRecordingCanvas.cpp364 float rx, float ry, const SkPaint& paint) {
367 if (CC_LIKELY(MathUtils::isPositive(rx) || MathUtils::isPositive(ry))) {
372 refPaint(&paint), rx, ry)); local
381 CanvasPropertyPrimitive* rx, CanvasPropertyPrimitive* ry,
387 mDisplayList->ref(rx);
396 &rx->value, &ry->value));
363 drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, const SkPaint& paint) argument
378 drawRoundRect( CanvasPropertyPrimitive* left, CanvasPropertyPrimitive* top, CanvasPropertyPrimitive* right, CanvasPropertyPrimitive* bottom, CanvasPropertyPrimitive* rx, CanvasPropertyPrimitive* ry, CanvasPropertyPaint* paint) argument
H A DSkiaCanvas.cpp495 float rx, float ry, const SkPaint& paint) {
498 mCanvas->drawRoundRect(rect, rx, ry, paint);
748 uirenderer::CanvasPropertyPrimitive* bottom, uirenderer::CanvasPropertyPrimitive* rx,
751 new uirenderer::skiapipeline::AnimatedRoundRect(left, top, right, bottom, rx, ry, paint));
494 drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, const SkPaint& paint) argument
746 drawRoundRect(uirenderer::CanvasPropertyPrimitive* left, uirenderer::CanvasPropertyPrimitive* top, uirenderer::CanvasPropertyPrimitive* right, uirenderer::CanvasPropertyPrimitive* bottom, uirenderer::CanvasPropertyPrimitive* rx, uirenderer::CanvasPropertyPrimitive* ry, uirenderer::CanvasPropertyPaint* paint) argument
H A DTessellationCache.cpp73 if (lRect.rx != rRect.rx) return false;
425 float rx = description.shape.roundRect.rx; local
430 rx += outset;
434 path.addRoundRect(rect, rx, ry);
440 float width, float height, float rx, float ry) {
444 entry.shape.roundRect.rx = rx;
449 float width, float height, float rx, floa
438 getRoundRectBuffer( const Matrix4& transform, const SkPaint& paint, float width, float height, float rx, float ry) argument
448 getRoundRect(const Matrix4& transform, const SkPaint& paint, float width, float height, float rx, float ry) argument
[all...]
H A DTessellationCache.h71 float rx; member in struct:android::uirenderer::TessellationCache::Description::Shape::RoundRect
157 float width, float height, float rx, float ry) {
158 getRoundRectBuffer(transform, paint, width, height, rx, ry);
161 float width, float height, float rx, float ry);
183 float width, float height, float rx, float ry);
156 precacheRoundRect(const Matrix4& transform, const SkPaint& paint, float width, float height, float rx, float ry) argument
/frameworks/base/libs/hwui/pipeline/skia/
H A DAnimatedDrawables.h32 uirenderer::CanvasPropertyPrimitive* bottom, uirenderer::CanvasPropertyPrimitive* rx,
38 , mRx(rx)
30 AnimatedRoundRect(uirenderer::CanvasPropertyPrimitive* left, uirenderer::CanvasPropertyPrimitive* top, uirenderer::CanvasPropertyPrimitive* right, uirenderer::CanvasPropertyPrimitive* bottom, uirenderer::CanvasPropertyPrimitive* rx, uirenderer::CanvasPropertyPrimitive* ry, uirenderer::CanvasPropertyPaint* p) argument
H A DSkiaRecordingCanvas.cpp63 uirenderer::CanvasPropertyPrimitive* bottom, uirenderer::CanvasPropertyPrimitive* rx,
66 rx, ry, paint));
61 drawRoundRect(uirenderer::CanvasPropertyPrimitive* left, uirenderer::CanvasPropertyPrimitive* top, uirenderer::CanvasPropertyPrimitive* right, uirenderer::CanvasPropertyPrimitive* bottom, uirenderer::CanvasPropertyPrimitive* rx, uirenderer::CanvasPropertyPrimitive* ry, uirenderer::CanvasPropertyPaint* paint) argument
/frameworks/base/graphics/java/android/graphics/
H A DBaseCanvas.java358 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, argument
361 nDrawRoundRect(mNativeCanvasWrapper, left, top, right, bottom, rx, ry,
365 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { argument
367 drawRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, paint);
595 float bottom, float rx, float ry, long nativePaint);
594 nDrawRoundRect(long nativeCanvas, float left, float top, float right, float bottom, float rx, float ry, long nativePaint) argument
H A DCanvas.java1775 * @param rx The x-radius of the oval used to round the corners
1779 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { argument
1780 super.drawRoundRect(rect, rx, ry, paint);
1787 * @param rx The x-radius of the oval used to round the corners
1791 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, argument
1793 super.drawRoundRect(left, top, right, bottom, rx, ry, paint);
H A DPath.java615 * @param rx The x-radius of the rounded corners on the round-rectangle
619 public void addRoundRect(RectF rect, float rx, float ry, Direction dir) { argument
620 addRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, dir);
626 * @param rx The x-radius of the rounded corners on the round-rectangle
630 public void addRoundRect(float left, float top, float right, float bottom, float rx, float ry, argument
633 nAddRoundRect(mNativePath, left, top, right, bottom, rx, ry, dir.nativeInt);
848 float right, float bottom, float rx, float ry, int dir);
847 nAddRoundRect(long nPath, float left, float top, float right, float bottom, float rx, float ry, int dir) argument
/frameworks/base/core/java/android/view/
H A DDisplayListCanvas.java216 CanvasProperty<Float> right, CanvasProperty<Float> bottom, CanvasProperty<Float> rx,
220 rx.getNativeContainer(), ry.getNativeContainer(),
215 drawRoundRect(CanvasProperty<Float> left, CanvasProperty<Float> top, CanvasProperty<Float> right, CanvasProperty<Float> bottom, CanvasProperty<Float> rx, CanvasProperty<Float> ry, CanvasProperty<Paint> paint) argument
H A DRecordingCanvas.java380 float rx, float ry, @NonNull Paint paint) {
381 nDrawRoundRect(mNativeCanvasWrapper, left, top, right, bottom, rx, ry,
386 public final void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { argument
387 drawRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, paint);
588 float bottom, float rx, float ry, long nativePaint);
379 drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, @NonNull Paint paint) argument
587 nDrawRoundRect(long nativeCanvas, float left, float top, float right, float bottom, float rx, float ry, long nativePaint) argument
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp164 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jint dirHandle) {
168 obj->addRoundRect(rect, rx, ry, dir);
163 addRoundRectXY(JNIEnv* env, jclass clazz, jlong objHandle, jfloat left, jfloat top, jfloat right, jfloat bottom, jfloat rx, jfloat ry, jint dirHandle) argument
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp281 jfloat right, jfloat bottom, jfloat rx, jfloat ry, jlong paintHandle) {
283 get_canvas(canvasHandle)->drawRoundRect(left, top, right, bottom, rx, ry, *paint);
280 drawRoundRect(JNIEnv* env, jobject, jlong canvasHandle, jfloat left, jfloat top, jfloat right, jfloat bottom, jfloat rx, jfloat ry, jlong paintHandle) argument
H A Dandroid_view_RenderNode.cpp224 static jboolean android_view_RenderNode_setRotationX(jlong renderNodePtr, float rx) { argument
225 return SET_AND_DIRTY(setRotationX, rx, RenderNode::ROTATION_X);
/frameworks/base/core/java/android/bluetooth/
H A DUidTraffic.java34 public UidTraffic(int appUid, long rx, long tx) { argument
36 mRxBytes = rx;
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmotion_est.cpp540 Int rx = video->currVop->pitch; local
541 Int rx2 = rx << 1;
542 Int rx3 = rx2 + rx;
603 offset2[4] = rx + 1;
605 offset2[6] = rx + 3;
607 offset2[8] = rx;
610 offset2[11] = rx + 2 ;
H A Dsad_halfpel.cpp24 Int SAD_MB_HalfPel_C(UChar *ref,UChar *blk,Int dmin,Int width,Int rx,Int xh,Int yh,void *extra_info)
25 Int SAD_MB_HP_HTFM_Collect(UChar *ref,UChar *blk,Int dmin,Int width,Int rx,Int xh,Int yh,void *extra_info)
26 Int SAD_MB_HP_HTFM(UChar *ref,UChar *blk,Int dmin,Int width,Int rx,Int xh,Int yh,void *extra_info)
27 Int SAD_Blk_HalfPel_C(UChar *ref,UChar *blk,Int dmin,Int width,Int rx,Int xh,Int yh,void *extra_info)
228 Int rx = dmin_rx & 0xFFFF; local
236 p3 = ref + rx;
237 p4 = ref + rx + 1;
254 p1 += rx;
255 p3 += rx;
256 p2 += rx;
269 Int rx = dmin_rx & 0xFFFF; local
305 Int rx = dmin_rx & 0xFFFF; local
340 Int rx = dmin_rx & 0xFFFF; local
419 Int rx = dmin_rx & 0xFFFF; local
497 Int rx = dmin_rx & 0xFFFF; local
574 Int rx = dmin_rx & 0xFFFF; local
642 Int rx = dmin_rx & 0xFFFF; local
708 Int rx = dmin_rx & 0xFFFF; local
780 SAD_Blk_HalfPel_C(UChar *ref, UChar *blk, Int dmin, Int width, Int rx, Int xh, Int yh, void *extra_info) argument
[all...]

Completed in 142 milliseconds