Searched defs:d2 (Results 1 - 6 of 6) sorted by relevance

/libcore/ojluni/src/main/native/
H A DMath.c84 Math_atan2(JNIEnv *env, jclass unused, jdouble d1, jdouble d2) { argument
85 return atan2(d1, d2);
89 Math_pow(JNIEnv *env, jclass unused, jdouble d1, jdouble d2) { argument
90 return pow(d1, d2);
H A DStrictMath.c102 StrictMath_atan2(JNIEnv *env, jclass unused, jdouble d1, jdouble d2) argument
104 return (jdouble) ieee_atan2((double)d1, (double)d2);
108 StrictMath_pow(JNIEnv *env, jclass unused, jdouble d1, jdouble d2) argument
110 return (jdouble) ieee_pow((double)d1, (double)d2);
/libcore/ojluni/src/main/java/java/lang/
H A DDouble.java771 * {@code Double}, {@code d1} and {@code d2}, the
772 * value of {@code d1.equals(d2)} is {@code true} if and
776 * {@code d1.doubleValue() == d2.doubleValue()}
782 * <li>If {@code d1} and {@code d2} both represent
788 * {@code d2} represents {@code -0.0}, or vice versa,
987 * new Double(d1).compareTo(new Double(d2))
991 * @param d2 the second {@code double} to compare
993 * numerically equal to {@code d2}; a value less than
995 * {@code d2}; and a value greater than {@code 0}
997 * {@code d2}
1000 compare(double d1, double d2) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerValue.java802 private static boolean doEquals(DerValue d1, DerValue d2) { argument
804 synchronized (d2.data) {
806 d2.data.reset();
807 return d1.buffer.equals(d2.buffer);
/libcore/ojluni/src/test/java/time/tck/java/time/
H A DTCKPeriod.java526 public void factory_between_LocalDate(int y1, int m1, int d1, int y2, int m2, int d2, int ye, int me, int de) { argument
528 LocalDate end = LocalDate.of(y2, m2, d2);
H A DTCKLocalDate.java1866 public void test_periodUntil_LocalDate(int y1, int m1, int d1, int y2, int m2, int d2, int ye, int me, int de) { argument
1868 LocalDate end = LocalDate.of(y2, m2, d2);

Completed in 133 milliseconds