Searched defs:d1 (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
787 * <li>If {@code d1} represents {@code +0.0} while
987 * new Double(d1).compareTo(new Double(d2))
990 * @param d1 the first {@code double} to compare
992 * @return the value {@code 0} if {@code d1} is
994 * {@code 0} if {@code d1} is numerically less than
996 * if {@code d1} i
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
803 synchronized (d1.data) {
805 d1.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
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 161 milliseconds