Searched refs:input1 (Results 1 - 12 of 12) sorted by relevance

/openjdk9/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 DFusedMultiplyAddTests.java362 private static int testFusedMacCase(double input1, double input2, double input3, double expected) { argument
364 failures += Tests.test("Math.fma(double)", input1, input2, input3,
365 Math.fma(input1, input2, input3), expected);
366 failures += Tests.test("StrictMath.fma(double)", input1, input2, input3,
367 StrictMath.fma(input1, input2, input3), expected);
370 failures += Tests.test("Math.fma(double)", input2, input1, input3,
371 Math.fma(input2, input1, input3), expected);
372 failures += Tests.test("StrictMath.fma(double)", input2, input1, input3,
373 StrictMath.fma(input2, input1, input3), expected);
377 private static int testFusedMacCase(float input1, floa argument
[all...]
H A DTests.java256 public static int test(String testName, float input1, float input2, argument
260 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
269 public static int test(String testName, double input1, double input2, argument
273 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
335 float input1, double input2,
339 "\tFor inputs " + input1 + "\t(" + toHexString(input1) + ") and "
350 double input1, doubl
334 test(String testName, float input1, double input2, float result, float expected) argument
349 test(String testName, double input1, double input2, double result, double expected) argument
364 test(String testName, float input1, int input2, float result, float expected) argument
379 test(String testName, double input1, int input2, double result, double expected) argument
394 test(String testName, float input1, float input2, float input3, float result, float expected) argument
410 test(String testName, double input1, double input2, double input3, double result, double expected) argument
467 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...]
H A DCubeRootTests.java124 double input1 =
129 failures += testCubeRootCase(input1*input1*input1, input1);
H A DHypotTests.java201 static int testHypotCase(double input1, double input2, double expected) { argument
202 return testHypotCase(input1,input2, expected, 1);
205 static int testHypotCase(double input1, double input2, double expected, argument
219 double x = i * input1;
/openjdk9/jdk/test/java/lang/StrictMath/
H A DTests.java49 static int test(String testName, double input1, double input2, argument
53 "\tFor input " + input1 + "\t(" + Double.toHexString(input1) + "), " +
H A DPowTests.java295 private static int testPowCase(double input1, double input2, double expected) { argument
297 failures += Tests.test("StrictMath.pow(double)", input1, input2,
298 StrictMath.pow(input1, input2), expected);
H A DHypotTests.java72 static int testHypotCase(double input1, double input2, double expected) { argument
74 failures += Tests.test("StrictMath.hypot(double)", input1, input2,
75 StrictMath.hypot(input1, input2), expected);
77 failures += Tests.test("StrictMath.hypot(double)", input2, input1,
78 StrictMath.hypot(input2, input1), expected);
80 failures += Tests.test("StrictMath.hypot(double)", -input1, input2,
81 StrictMath.hypot(-input1, input2), expected);
83 failures += Tests.test("StrictMath.hypot(double)", input2, -input1,
84 StrictMath.hypot(input2, -input1), expected);
86 failures += Tests.test("StrictMath.hypot(double)", input1,
[all...]
/openjdk9/langtools/test/tools/javac/lambda/
H A DLambdaParenGenericOrig.java41 R apply(A1 input1, A2 input2); argument
/openjdk9/jdk/test/sun/security/provider/MessageDigest/
H A DTestSHAClone.java44 private static byte[] input1 = { field in class:TestSHAClone
59 md.update(input1);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.amd64/src/org/graalvm/compiler/core/amd64/
H A DAMD64ArithmeticLIRGenerator.java1064 public Value emitMathPow(Value input1, Value input2) { argument
1065 Variable result = getLIRGen().newVariable(LIRKind.combine(input1));
1066 getLIRGen().append(new AMD64MathIntrinsicBinaryOp(getAMD64LIRGen(), POW, result, getLIRGen().asAllocatable(input1), getLIRGen().asAllocatable(input2)));

Completed in 181 milliseconds