/frameworks/base/media/libstagefright/codecs/avc/enc/src/ |
D | sad_halfpel.cpp | 77 int rx = dmin_rx & 0xFFFF; in AVCSAD_MB_HalfPel_Cxhyh() local 83 p3 = ref + rx; in AVCSAD_MB_HalfPel_Cxhyh() 84 p4 = ref + rx + 1; in AVCSAD_MB_HalfPel_Cxhyh() 101 p1 += rx; in AVCSAD_MB_HalfPel_Cxhyh() 102 p3 += rx; in AVCSAD_MB_HalfPel_Cxhyh() 103 p2 += rx; in AVCSAD_MB_HalfPel_Cxhyh() 104 p4 += rx; in AVCSAD_MB_HalfPel_Cxhyh() 118 int rx = dmin_rx & 0xFFFF; in AVCSAD_MB_HalfPel_Cyh() local 123 p2 = ref + rx; /* either left/right or top/bottom pixel */ in AVCSAD_MB_HalfPel_Cyh() 139 p1 += rx; in AVCSAD_MB_HalfPel_Cyh() [all …]
|
D | motion_est.cpp | 608 int rx = video->currPic->pitch; in InitHTFM() local 609 int rx2 = rx << 1; in InitHTFM() 610 int rx3 = rx2 + rx; in InitHTFM() 671 offset2[4] = rx + 1; in InitHTFM() 673 offset2[6] = rx + 3; in InitHTFM() 675 offset2[8] = rx; in InitHTFM() 678 offset2[11] = rx + 2 ; in InitHTFM()
|
/frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | sad_halfpel.cpp | 228 Int rx = dmin_rx & 0xFFFF; in SAD_MB_HalfPel_Cxhyh() local 236 p3 = ref + rx; in SAD_MB_HalfPel_Cxhyh() 237 p4 = ref + rx + 1; in SAD_MB_HalfPel_Cxhyh() 254 p1 += rx; in SAD_MB_HalfPel_Cxhyh() 255 p3 += rx; in SAD_MB_HalfPel_Cxhyh() 256 p2 += rx; in SAD_MB_HalfPel_Cxhyh() 257 p4 += rx; in SAD_MB_HalfPel_Cxhyh() 269 Int rx = dmin_rx & 0xFFFF; in SAD_MB_HalfPel_Cyh() local 276 p2 = ref + rx; /* either left/right or top/bottom pixel */ in SAD_MB_HalfPel_Cyh() 292 p1 += rx; in SAD_MB_HalfPel_Cyh() [all …]
|
D | motion_est.cpp | 540 Int rx = video->currVop->pitch; in InitHTFM() local 541 Int rx2 = rx << 1; in InitHTFM() 542 Int rx3 = rx2 + rx; in InitHTFM() 603 offset2[4] = rx + 1; in InitHTFM() 605 offset2[6] = rx + 3; in InitHTFM() 607 offset2[8] = rx; in InitHTFM() 610 offset2[11] = rx + 2 ; in InitHTFM()
|
D | mp4lib_int.h | 238 …Int(*SAD_Blk_HalfPel)(UChar *ref, UChar *blk, Int dmin, Int lx, Int rx, Int xh, Int yh, void *extr…
|
D | mp4enc_lib.h | 149 …Int SAD_Blk_HalfPel_C(UChar *ref, UChar *blk, Int dmin, Int lx, Int rx, Int xh, Int yh, void *extr…
|
/frameworks/base/opengl/libagl/ |
D | matrix.cpp | 726 const GLfixed rx = rhs->x; 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() 736 const GLfixed rx = rhs->x; 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/base/libs/hwui/ |
D | ShapeCache.cpp | 33 float rx, float ry, SkPaint* paint) { in getRoundRect() argument 34 RoundRectShapeCacheEntry entry(width, height, rx, ry, paint); in getRoundRect() 41 path.addRoundRect(r, rx, ry, SkPath::kCW_Direction); in getRoundRect()
|
D | ShapeCache.h | 149 RoundRectShapeCacheEntry(float width, float height, float rx, float ry, SkPaint* paint): in RoundRectShapeCacheEntry() 153 mRx = *(uint32_t*) ℞ in RoundRectShapeCacheEntry() 367 PathTexture* getRoundRect(float width, float height, float rx, float ry, SkPaint* paint);
|
D | OpenGLRenderer.h | 115 float rx, float ry, SkPaint* paint);
|
D | DisplayListRenderer.h | 282 float rx, float ry, SkPaint* paint);
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
D | ThrottleServiceTest.java | 292 public void expectGetInterfaceCounter(long rx, long tx) throws Exception { in expectGetInterfaceCounter() argument 295 stats.addValues(TEST_IFACE, UID_ALL, SET_DEFAULT, TAG_NONE, rx, 0L, tx, 0L, 0); in expectGetInterfaceCounter() 304 public void expectSetInterfaceThrottle(int rx, int tx) throws Exception { in expectSetInterfaceThrottle() argument 305 mMockNMService.setInterfaceThrottle(isA(String.class), eq(rx), eq(tx)); in expectSetInterfaceThrottle()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | KeyButtonView.java | 159 final float rx = (w * (GLOW_MAX_SCALE_FACTOR - 1.0f)) / 2.0f + 1.0f; in setGlowScale() local 163 new RectF(getLeft() - rx, in setGlowScale() 165 getRight() + rx, in setGlowScale()
|
/frameworks/base/services/java/com/android/server/ |
D | NetworkManagementService.java | 1000 private long getInterfaceCounter(String iface, boolean rx) { in getInterfaceCounter() argument 1007 … String.format("interface read%scounter %s", (rx ? "rx" : "tx"), iface)).get(0); in getInterfaceCounter() 1016 (rx ? "rx" : "tx"))); in getInterfaceCounter() 1027 if ((rx && code != NetdResponseCode.InterfaceRxCounterResult) || ( in getInterfaceCounter() 1028 !rx && code != NetdResponseCode.InterfaceTxCounterResult)) { in getInterfaceCounter() 1035 "Failed to read interface %s counters", (rx ? "rx" : "tx")), e); in getInterfaceCounter() 1315 private int getInterfaceThrottle(String iface, boolean rx) { in getInterfaceThrottle() argument 1323 (rx ? "rx" : "tx"))).get(0); in getInterfaceThrottle() 1342 if ((rx && code != NetdResponseCode.InterfaceRxThrottleResult) || ( in getInterfaceThrottle() 1343 !rx && code != NetdResponseCode.InterfaceTxThrottleResult)) { in getInterfaceThrottle() [all …]
|
/frameworks/base/graphics/java/android/graphics/ |
D | Path.java | 476 public void addRoundRect(RectF rect, float rx, float ry, Direction dir) { in addRoundRect() argument 481 native_addRoundRect(mNativePath, rect, rx, ry, dir.nativeInt); in addRoundRect() 644 float rx, float ry, int dir); in native_addRoundRect() argument
|
D | Canvas.java | 1017 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { in drawRoundRect() argument 1021 native_drawRoundRect(mNativeCanvas, rect, rx, ry, in drawRoundRect() 1709 RectF rect, float rx, in native_drawRoundRect() argument
|
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/ |
D | BandwidthTest.java | 203 int rx = BandwidthTestUtil.parseIntValueFromFile(rcv_stat); in fetchDataFromProc() local 208 NetworkStats.TAG_NONE, rx, 0, tx, 0, 0); in fetchDataFromProc()
|
/frameworks/base/media/libstagefright/codecs/aacdec/ |
D | fxp_mul32_arm_gcc.h | 194 register Int32 rx = (Int32)x; in cmplx_mul32_by_16() local 201 : "r"(rx), in cmplx_mul32_by_16()
|
/frameworks/base/core/java/android/view/ |
D | GLES20RecordingCanvas.java | 243 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { in drawRoundRect() argument 244 super.drawRoundRect(rect, rx, ry, paint); in drawRoundRect()
|
D | GLES20Canvas.java | 932 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { in drawRoundRect() argument 935 rx, ry, paint.mNativePaint); in drawRoundRect() 940 float right, float bottom, float rx, float y, int paint); in nDrawRoundRect() argument
|
/frameworks/base/core/jni/android/graphics/ |
D | Path.cpp | 203 jfloat rx, jfloat ry, SkPath::Direction dir) { in addRoundRectXY() argument 206 SkScalar rx_ = SkFloatToScalar(rx); in addRoundRectXY()
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
D | Path_Delegate.java | 373 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()
|
D | Canvas_Delegate.java | 756 final RectF rect, final float rx, final float ry, int paint) { in native_drawRoundRect() argument 769 (int)rx, (int)ry); in native_drawRoundRect() 777 (int)rx, (int)ry); in native_drawRoundRect()
|
/frameworks/base/core/java/android/widget/ |
D | StackView.java | 724 float rx = deltaX / (mSlideAmount * 1.0f); 729 mStackSlider.setXProgress(rx); 735 mStackSlider.setXProgress(rx);
|
/frameworks/base/core/jni/ |
D | android_view_GLES20Canvas.cpp | 395 jfloat rx, jfloat ry, SkPaint* paint) { in android_view_GLES20Canvas_drawRoundRect() argument 396 renderer->drawRoundRect(left, top, right, bottom, rx, ry, paint); in android_view_GLES20Canvas_drawRoundRect()
|