Lines Matching refs:input

335             double input = Double.longBitsToDouble(i);
338 StrictMath.exp(input + offset) *
339 StrictMath.exp( offset - ((input + offset) - input) );
341 failures += testSinhCaseWithUlpDiff(input, expected, 4.0);
357 public static int testSinhCaseWithTolerance(double input,
362 input, Math.sinh(input),
365 -input, Math.sinh(-input),
369 input, StrictMath.sinh(input),
372 -input, StrictMath.sinh(-input),
377 public static int testSinhCaseWithUlpDiff(double input,
382 input, Math.sinh(input),
385 -input, Math.sinh(-input),
389 input, StrictMath.sinh(input),
392 -input, StrictMath.sinh(-input),
694 double input = Double.longBitsToDouble(i);
697 StrictMath.exp(input + offset) *
698 StrictMath.exp( offset - ((input + offset) - input) );
700 failures += testCoshCaseWithUlpDiff(input, expected, 4.0);
715 public static int testCoshCaseWithTolerance(double input,
720 input, Math.cosh(input),
723 -input, Math.cosh(-input),
727 input, StrictMath.cosh(input),
730 -input, StrictMath.cosh(-input),
735 public static int testCoshCaseWithUlpDiff(double input,
740 input, Math.cosh(input),
743 -input, Math.cosh(-input),
747 input, StrictMath.cosh(input),
750 -input, StrictMath.cosh(-input),
1009 public static int testTanhCaseWithTolerance(double input,
1014 input, Math.tanh(input),
1017 -input, Math.tanh(-input),
1021 input, StrictMath.tanh(input),
1024 -input, StrictMath.tanh(-input),
1029 public static int testTanhCaseWithUlpDiff(double input,
1035 input, Math.tanh(input),
1038 -input, Math.tanh(-input),
1042 input, StrictMath.tanh(input),
1045 -input, StrictMath.tanh(-input),