/libcore/ojluni/src/test/java/lang/Math/ |
D | FusedMultiplyAddTests.java | 344 Math.fma(input1, input2, input3), expected); in testFusedMacCase() 346 StrictMath.fma(input1, input2, input3), expected); in testFusedMacCase() 350 Math.fma(input2, input1, input3), expected); in testFusedMacCase() 352 StrictMath.fma(input2, input1, input3), expected); in testFusedMacCase() 357 Math.fma(input1, input2, input3), expected); in testFusedMacCase() 359 StrictMath.fma(input1, input2, input3), expected); in testFusedMacCase() 363 Math.fma(input2, input1, input3), expected); in testFusedMacCase() 365 StrictMath.fma(input2, input1, input3), expected); in testFusedMacCase()
|
/libcore/ojluni/src/main/java/java/lang/ |
D | StrictMath.java | 1993 public static double fma(double a, double b, double c) { in fma() method in StrictMath 1994 return Math.fma(a, b, c); in fma() 2047 public static float fma(float a, float b, float c) { in fma() method in StrictMath 2048 return Math.fma(a, b, c); in fma()
|
D | Math.java | 2521 public static double fma(double a, double b, double c) { in fma() method in Math 2638 public static float fma(float a, float b, float c) { in fma() method in Math 2652 return (float)fma((double)a, (double)b, (double)c); in fma()
|
/libcore/ojluni/annotations/flagged_api/java/lang/ |
D | StrictMath.annotated.java | 201 public static double fma(double a, double b, double c) { throw new RuntimeException("Stub!"); } in fma() method in StrictMath 203 public static float fma(float a, float b, float c) { throw new RuntimeException("Stub!"); } in fma() method in StrictMath
|
D | Math.annotated.java | 202 public static double fma(double a, double b, double c) { throw new RuntimeException("Stub!"); } in fma() method in Math 204 public static float fma(float a, float b, float c) { throw new RuntimeException("Stub!"); } in fma() method in Math
|
/libcore/api/ |
D | current.txt | 3602 method public static double fma(double, double, double); 3603 method public static float fma(float, float, float); 4044 method public static double fma(double, double, double); 4045 method public static float fma(float, float, float);
|