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

/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dulaalgo.h34 for (uoff_t rx = 0; rx < NY; ++ rx) {
37 dpv += m1[ry][x] * m2[x][rx];
38 mr[ry][rx] = dpv;
/frameworks/base/awt/java/awt/geom/
H A DArc2D.java1081 public boolean contains(double rx, double ry, double rw, double rh) { argument
1083 if (!(contains(rx, ry) && contains(rx + rw, ry) && contains(rx + rw, ry + rh) && contains(
1084 rx, ry + rh))) {
1093 Rectangle2D r = new Rectangle2D.Double(rx, ry, rw, rh);
1113 public boolean intersects(double rx, double ry, double rw, double rh) { argument
1120 if (contains(rx, ry) || contains(rx + rw, ry) || contains(rx, r
[all...]
H A DRectangularShape.java200 double rx, ry, rw, rh;
202 rx = x1;
205 rx = x2;
215 setFrame(rx, ry, rw, rh);
H A DLine2D.java159 float rx, ry, rw, rh;
161 rx = x1;
164 rx = x2;
174 return new Rectangle2D.Float(rx, ry, rw, rh);
280 double rx, ry, rw, rh;
282 rx = x1;
285 rx = x2;
295 return new Rectangle2D.Double(rx, ry, rw, rh);
919 public boolean contains(double rx, double ry, double rw, double rh) { argument
923 public boolean intersects(double rx, doubl argument
[all...]
H A DEllipse2D.java423 public boolean intersects(double rx, double ry, double rw, double rh) { argument
431 double rx1 = rx;
433 double rx2 = rx + rw;
442 public boolean contains(double rx, double ry, double rw, double rh) { argument
447 double rx1 = rx;
449 double rx2 = rx + rw;
H A DRoundRectangle2D.java590 public boolean intersects(double rx, double ry, double rw, double rh) { argument
600 double rx1 = rx;
602 double rx2 = rx + rw;
618 public boolean contains(double rx, double ry, double rw, double rh) { argument
623 double rx1 = rx;
625 double rx2 = rx + rw;
H A DGeneralPath.java582 public boolean contains(double rx, double ry, double rw, double rh) { argument
583 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
587 public boolean intersects(double rx, double ry, double rw, double rh) { argument
588 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
H A DQuadCurve2D.java875 public boolean contains(double rx, double ry, double rw, double rh) { argument
876 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
880 public boolean intersects(double rx, double ry, double rw, double rh) { argument
881 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
H A DCubicCurve2D.java1005 public boolean contains(double rx, double ry, double rw, double rh) { argument
1006 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
1010 public boolean intersects(double rx, double ry, double rw, double rh) { argument
1011 int cross = Crossing.intersectShape(this, rx, ry, rw, rh);
/frameworks/base/services/java/com/android/server/
H A DNetworkManagementService.java658 private long getInterfaceCounter(String iface, boolean rx) { argument
665 String.format("interface read%scounter %s", (rx ? "rx" : "tx"), iface)).get(0);
674 (rx ? "rx" : "tx")));
685 if ((rx && code != NetdResponseCode.InterfaceRxCounterResult) || (
686 !rx && code != NetdResponseCode.InterfaceTxCounterResult)) {
693 "Failed to read interface %s counters", (rx ? "rx" : "tx")), e);
717 private int getInterfaceThrottle(String iface, boolean rx) { argument
[all...]
/frameworks/base/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/awt/java/awt/
H A DRectangle.java513 * Determines whether or not the rectangle specified by [rx, ry, rw, rh]
516 * @param rx
524 * @return true, if a rectangle with [rx, ry, rw, rh] parameters is entirely
527 public boolean contains(int rx, int ry, int rw, int rh) { argument
528 return contains(rx, ry) && contains(rx + rw - 1, ry + rh - 1);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java414 * @param rx The x-radius of the rounded corners on the round-rectangle
418 public void addRoundRect(RectF rect, float rx, float ry, Direction dir) { argument
422 native_addRoundRect(mNativePath, rect, rx, ry, dir.nativeInt);
580 float rx, float ry, int dir);
579 native_addRoundRect(int nPath, RectF rect, float rx, float ry, int dir) argument
H A DCanvas.java930 * @param rx The x-radius of the oval used to round the corners
934 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { argument
938 native_drawRoundRect(mNativeCanvas, rect, rx, ry,
1520 RectF rect, float rx,
1519 native_drawRoundRect(int nativeCanvas, RectF rect, float rx, float ry, int paint) argument
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DCrossing.java234 double rx = t * (t * Ax + Bx);
235 if (minX <= rx && rx <= maxX) {
237 bound[bc++] = rx;
344 double rx = t * (t * (t * Ax + Bx) + Cx);
345 if (minX <= rx && rx <= maxX) {
347 bound[bc++] = rx;
/frameworks/base/media/libstagefright/codecs/aacdec/
H A Dfxp_mul32_arm_gcc.h194 register Int32 rx = (Int32)x; local
201 : "r"(rx),
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath.java485 * @param rx The x-radius of the rounded corners on the round-rectangle
489 public void addRoundRect(RectF rect, float rx, float ry, Direction dir) { argument
H A DCanvas.java830 public void drawRoundRect(RectF rect, float rx, float ry, Paint paint) { argument
839 int arcWidth = (int)(rx * 2);
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp195 jfloat rx, jfloat ry, SkPath::Direction dir) {
198 SkScalar rx_ = SkFloatToScalar(rx);
194 addRoundRectXY(JNIEnv* env, jobject clazz, SkPath* obj, jobject rect, jfloat rx, jfloat ry, SkPath::Direction dir) argument
H A DCanvas.cpp439 jobject jrect, jfloat rx, jfloat ry,
443 canvas->drawRoundRect(rect, SkFloatToScalar(rx), SkFloatToScalar(ry),
438 drawRoundRect(JNIEnv* env, jobject, SkCanvas* canvas, jobject jrect, jfloat rx, jfloat ry, SkPaint* paint) argument
/frameworks/base/core/java/android/os/
H A DBatteryStats.java892 long rx = u.getTcpBytesReceived(which);
898 if (rx > 0 || tx > 0) dumpLine(pw, uid, category, NETWORK_DATA, rx, tx);

Completed in 6893 milliseconds