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

/libcore/ojluni/src/main/native/
H A DMath.c84 Math_atan2(jdouble d1, jdouble d2) { argument
85 return atan2(d1, d2);
89 Math_pow(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.java770 * {@code Double}, {@code d1} and {@code d2}, the
771 * value of {@code d1.equals(d2)} is {@code true} if and
775 * {@code d1.doubleValue() == d2.doubleValue()}
781 * <li>If {@code d1} and {@code d2} both represent
786 * <li>If {@code d1} represents {@code +0.0} while
986 * new Double(d1).compareTo(new Double(d2))
989 * @param d1 the first {@code double} to compare
991 * @return the value {@code 0} if {@code d1} is
993 * {@code 0} if {@code d1} is numerically less than
995 * if {@code d1} i
999 compare(double d1, double d2) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerValue.java806 private static boolean doEquals(DerValue d1, DerValue d2) { argument
807 synchronized (d1.data) {
809 d1.data.reset();
811 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
527 LocalDate start = LocalDate.of(y1, m1, d1);
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
1867 LocalDate start = LocalDate.of(y1, m1, d1);

Completed in 329 milliseconds