Searched defs:input1 (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/lang/Math/
H A DAtan2Tests.java34 static int testAtan2Case(double input1, double input2, double expected) { argument
36 failures += Tests.test("StrictMath.atan2(double, double)", input1, input2,
37 StrictMath.atan2(input1, input2), expected);
38 failures += Tests.test("Math.atan2(double, double)", input1, input2,
39 Math.atan2(input1, input2), expected);
H A DHypotTests.java198 static int testHypotCase(double input1, double input2, double expected) { argument
199 return testHypotCase(input1,input2, expected, 1);
202 static int testHypotCase(double input1, double input2, double expected, argument
216 double x = i * input1;
H A DTests.java78 public static int test(String testName, float input1, float input2, argument
82 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
91 public static int test(String testName, double input1, double input2, argument
95 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
157 float input1, double input2,
161 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
172 double input1, doubl
156 test(String testName, float input1, double input2, float result, float expected) argument
171 test(String testName, double input1, double input2, double result, double expected) argument
186 test(String testName, float input1, int input2, float result, float expected) argument
201 test(String testName, double input1, int input2, double result, double expected) argument
257 testUlpDiff(String testName, double input1, double input2, double result, double expected, double ulps) argument
[all...]
H A DPowTests.java36 static int testPowCase(double input1, double input2, double expected) { argument
38 failures += Tests.test("StrictMath.pow(double, double)", input1, input2,
39 StrictMath.pow(input1, input2), expected);
40 failures += Tests.test("Math.pow(double, double)", input1, input2,
41 Math.pow(input1, input2), expected);
46 static int testStrictPowCase(double input1, double input2, double expected) { argument
48 failures += Tests.test("StrictMath.pow(double, double)", input1, input2,
49 StrictMath.pow(input1, input2), expected);
53 static int testNonstrictPowCase(double input1, double input2, double expected) { argument
55 failures += Tests.test("Math.pow(double, double)", input1, input
[all...]
/openjdk7/jdk/test/java/lang/StrictMath/
H A DHypotTests.java45 static int testHypotCase(double input1, double input2, double expected) { argument
46 return Tests.test("StrictMath.hypot(double)", input1, input2,
47 StrictMath.hypot(input1, input2), expected);
H A DTests.java49 static int test(String testName, double input1, double input2, argument
53 "\tFor input " + input1 + "\t(" + Double.toHexString(input1) + "), " +
/openjdk7/jdk/test/sun/security/provider/MessageDigest/
H A DTestSHAClone.java39 private static byte[] input1 = { field in class:TestSHAClone
54 md.update(input1);

Completed in 3748 milliseconds