Home
last modified time | relevance | path

Searched refs:fma (Results 1 – 6 of 6) sorted by relevance

/libcore/ojluni/src/test/java/lang/Math/
DFusedMultiplyAddTests.java344 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/
DStrictMath.java1993 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()
DMath.java2521 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/
DStrictMath.annotated.java201 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
DMath.annotated.java202 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/
Dcurrent.txt3602 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);