Home
last modified time | relevance | path

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

/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
DStrictMathTest.java194 .copySign(magnitude, Double.NaN))); in test_copySign_DD()
196 .copySign(Double.NaN, magnitude))); in test_copySign_DD()
201 .copySign(magnitude, sign)); in test_copySign_DD()
218 .copySign(Double.NaN, Double.NaN))); in test_copySign_DD()
221 StrictMath.copySign((Double) null, 2.3); in test_copySign_DD()
227 StrictMath.copySign(2.3, (Double) null); in test_copySign_DD()
233 StrictMath.copySign((Double) null, (Double) null); in test_copySign_DD()
240 assertEquals(1.0, StrictMath.copySign(1.0, d), 0d); in test_copySign_DD()
258 absMagnitudeBits, Float.floatToIntBits(StrictMath.copySign( in test_copySign_FF()
261 .copySign(Float.NaN, magnitude))); in test_copySign_FF()
[all …]
DMathTest.java190 absMagnitudeBits, Double.doubleToLongBits(Math.copySign( in test_copySign_DD()
192 assertTrue("The result should be NaN.", Double.isNaN(Math.copySign( in test_copySign_DD()
197 final long resultBits = Double.doubleToLongBits(Math.copySign( in test_copySign_DD()
214 assertTrue("The result should be NaN.", Double.isNaN(Math.copySign( in test_copySign_DD()
218 Math.copySign((Double) null, 2.3); in test_copySign_DD()
224 Math.copySign(2.3, (Double) null); in test_copySign_DD()
230 Math.copySign((Double) null, (Double) null); in test_copySign_DD()
262 absMagnitudeBits, Float.floatToIntBits(Math.copySign( in test_copySign_FF()
264 assertTrue("The result should be NaN.", Float.isNaN(Math.copySign( in test_copySign_FF()
269 final int resultBits = Float.floatToIntBits(Math.copySign( in test_copySign_FF()
[all …]
/external/llvm/include/llvm/ADT/
DAPFloat.h281 void copySign(const APFloat &);
/external/llvm/lib/Support/
DAPFloat.cpp1546 APFloat::copySign(const APFloat &rhs) in copySign() function in APFloat
/external/clang/lib/AST/
DExprConstant.cpp2042 Result.copySign(RHS); in VisitCallExpr()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAG.cpp2978 V1.copySign(V2); in getNode()