Searched refs:rx (Results 1 - 25 of 37) sorted by relevance

12

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
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...]
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 ;
/frameworks/base/core/java/android/bluetooth/
H A DUidTraffic.java35 public UidTraffic(int appUid, long rx, long tx) { argument
37 mRxBytes = rx;
/frameworks/base/libs/hwui/
H A DTessellationCache.h71 float rx; member in struct:android::uirenderer::TessellationCache::Description::Shape::RoundRect
156 float height, float rx, float ry) {
157 getRoundRectBuffer(transform, paint, width, height, rx, ry);
160 float height, float rx, float ry);
181 float height, float rx, float ry);
155 precacheRoundRect(const Matrix4& transform, const SkPaint& paint, float width, float height, float rx, float ry) argument
H A DRecordedOp.h307 RoundRectOp(BASE_PARAMS, float rx, float ry) : SUPER(RoundRectOp), rx(rx), ry(ry) {} argument
308 const float rx; member in struct:android::uirenderer::RoundRectOp
314 float* left, float* top, float* right, float* bottom, float* rx, float* ry)
320 , rx(rx)
326 const float* rx; member in struct:android::uirenderer::RoundRectPropsOp
313 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 DTessellationCache.cpp74 if (lRect.rx != rRect.rx) return false;
415 float rx = description.shape.roundRect.rx; local
420 rx += outset;
424 path.addRoundRect(rect, rx, ry);
430 float height, float rx, float ry) {
434 entry.shape.roundRect.rx = rx;
439 float width, float height, float rx, floa
428 getRoundRectBuffer(const Matrix4& transform, const SkPaint& paint, float width, float height, float rx, float ry) argument
438 getRoundRect(const Matrix4& transform, const SkPaint& paint, float width, float height, float rx, float ry) argument
[all...]
H A DPathCache.h183 PathTexture* getRoundRect(float width, float height, float rx, float ry, const SkPaint* paint);
H A DSkiaCanvas.h106 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
136 uirenderer::CanvasPropertyPrimitive* rx,
H A DRecordingCanvas.cpp345 void RecordingCanvas::drawRoundRect(float left, float top, float right, float bottom, float rx, argument
349 if (CC_LIKELY(MathUtils::isPositive(rx) || MathUtils::isPositive(ry))) {
352 getRecordedClip(), refPaint(&paint), rx, ry)); local
360 CanvasPropertyPrimitive* rx, CanvasPropertyPrimitive* ry,
366 mDisplayList->ref(rx);
372 &top->value, &right->value, &bottom->value, &rx->value, &ry->value));
358 drawRoundRect(CanvasPropertyPrimitive* left, CanvasPropertyPrimitive* top, CanvasPropertyPrimitive* right, CanvasPropertyPrimitive* bottom, CanvasPropertyPrimitive* rx, CanvasPropertyPrimitive* ry, CanvasPropertyPaint* paint) argument
H A DPathCache.cpp437 PathTexture* PathCache::getRoundRect(float width, float height, float rx, float ry, argument
442 entry.shape.roundRect.mRx = rx;
451 path.addRoundRect(r, rx, ry, SkPath::kCW_Direction);
H A DRecordingCanvas.h79 CanvasPropertyPrimitive* rx, CanvasPropertyPrimitive* ry,
160 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,
H A DSkiaCanvas.cpp499 void SkiaCanvas::drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, argument
503 mCanvas->drawRoundRect(rect, rx, ry, paint);
809 uirenderer::CanvasPropertyPrimitive* rx,
813 new uirenderer::skiapipeline::AnimatedRoundRect(left, top, right, bottom, rx, ry,
805 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/libs/hwui/pipeline/skia/
H A DAnimatedDrawables.h34 uirenderer::CanvasPropertyPrimitive* rx,
36 : mLeft(left), mTop(top), mRight(right), mBottom(bottom), mRx(rx), mRy(ry), mPaint(p) {}
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.cpp65 uirenderer::CanvasPropertyPrimitive* rx,
69 drawDrawable(mDisplayList->allocateDrawable<AnimatedRoundRect>(left, top, right, bottom, rx, ry,
61 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 DSkiaRecordingCanvas.h62 uirenderer::CanvasPropertyPrimitive* rx,
/frameworks/native/opengl/libagl/
H A Dmatrix.cpp715 const GLfixed rx = rhs->x; local
717 lhs->x = mla2a(rx, m[ 0], ry, m[ 4], m[12]);
718 lhs->y = mla2a(rx, m[ 1], ry, m[ 5], m[13]);
719 lhs->z = mla2a(rx, m[ 2], ry, m[ 6], m[14]);
720 lhs->w = mla2a(rx, m[ 3], ry, m[ 7], m[15]);
725 const GLfixed rx = rhs->x; local
728 lhs->x = mla3a(rx, m[ 0], ry, m[ 4], rz, m[ 8], m[12]);
729 lhs->y = mla3a(rx, m[ 1], ry, m[ 5], rz, m[ 9], m[13]);
730 lhs->z = mla3a(rx, m[ 2], ry, m[ 6], rz, m[10], m[14]);
731 lhs->w = mla3a(rx,
736 const GLfixed rx = rhs->x; local
751 const GLfixed rx = rhs->x; local
765 const GLfixed rx = rhs->x; local
[all...]
/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.java381 float rx, float ry, @NonNull Paint paint) {
382 nDrawRoundRect(mNativeCanvasWrapper, left, top, right, bottom, rx, ry,
387 public final void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { argument
388 drawRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, paint);
598 float bottom, float rx, float ry, long nativePaint);
380 drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, @NonNull Paint paint) argument
597 nDrawRoundRect(long nativeCanvas, float left, float top, float right, float bottom, float rx, float ry, long nativePaint) argument
/frameworks/base/graphics/java/android/graphics/
H A DPath.java623 * @param rx The x-radius of the rounded corners on the round-rectangle
627 public void addRoundRect(RectF rect, float rx, float ry, Direction dir) { argument
628 addRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, dir);
634 * @param rx The x-radius of the rounded corners on the round-rectangle
638 public void addRoundRect(float left, float top, float right, float bottom, float rx, float ry, argument
641 nAddRoundRect(mNativePath, left, top, right, bottom, rx, ry, dir.nativeInt);
847 float right, float bottom, float rx, float ry, int dir);
846 nAddRoundRect(long nPath, float left, float top, float right, float bottom, float rx, float ry, int dir) argument
H A DBaseCanvas.java365 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, argument
368 nDrawRoundRect(mNativeCanvasWrapper, left, top, right, bottom, rx, ry,
372 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { argument
374 drawRoundRect(rect.left, rect.top, rect.right, rect.bottom, rx, ry, paint);
620 float bottom, float rx, float ry, long nativePaint);
619 nDrawRoundRect(long nativeCanvas, float left, float top, float right, float bottom, float rx, float ry, long nativePaint) argument
H A DCanvas.java1849 * @param rx The x-radius of the oval used to round the corners
1853 public void drawRoundRect(@NonNull RectF rect, float rx, float ry, @NonNull Paint paint) { argument
1854 super.drawRoundRect(rect, rx, ry, paint);
1861 * @param rx The x-radius of the oval used to round the corners
1865 public void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry, argument
1867 super.drawRoundRect(left, top, right, bottom, rx, ry, paint);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonRipple.java111 final float rx = horizontal ? radius : cx;
115 canvas.drawRoundRect(cx - rx, cy - ry,
116 cx + rx, cy + ry,
/frameworks/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/core/tests/bandwidthtests/src/com/android/bandwidthtest/
H A DBandwidthTest.java260 int rx = BandwidthTestUtil.parseIntValueFromFile(rcv_stat);
265 NetworkStats.TAG_NONE, rx, 0, tx, 0, 0);
332 results.putLong(label + "rx", totalStats.rxBytes);
/frameworks/base/libs/hwui/hwui/
H A DCanvas.h161 uirenderer::CanvasPropertyPrimitive* rx,
229 virtual void drawRoundRect(float left, float top, float right, float bottom, float rx, float ry,

Completed in 2980 milliseconds

12