HomeSort by relevance Sort by last modified time
    Searched defs:copysign (Results 1 - 13 of 13) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_copysign.c 17 * copysign(double x, double y)
18 * copysign(x,y) returns a value with the magnitude of x and
26 copysign(double x, double y) function
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
s_copysign.c 19 * copysign(double x, double y)
20 * copysign(x,y) returns a value with the magnitude of x and
28 copysign(double x, double y) function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pymath.c 57 copysign(double x, double y) function
77 return copysign(y, x);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pymath.c 57 copysign(double x, double y) function
77 return copysign(y, x);
  /external/python/cpython2/Python/
pymath.c 57 copysign(double x, double y) function
77 return copysign(y, x);
  /external/python/cpython3/Python/
pymath.c 59 copysign(double x, double y) function
79 return copysign(y, x);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
Dfp.java 2219 public static Dfp copysign(final Dfp x, final Dfp y) { method in class:Dfp
    [all...]
  /external/clang/lib/Headers/
tgmath.h 610 // copysign
618 __tg_copysign(double __x, double __y) {return copysign(__x, __y);}
624 #undef copysign macro
625 #define copysign(__x, __y) __tg_copysign(__tg_promote2((__x), (__y))(__x), \ macro
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 70 Ambiguous copysign(Ambiguous, Ambiguous){ return Ambiguous(); } function
    [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp 72 Ambiguous copysign(Ambiguous, Ambiguous){ return Ambiguous(); } function
    [all...]
  /external/python/cpython2/PC/
pyconfig.h 227 #define copysign _copysign macro
447 /* Define to 1 if you have the `copysign' function. */
  /external/python/cpython3/PC/
pyconfig.h 193 #define copysign _copysign macro
356 /* Define to 1 if you have the `copysign' function. */
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java 417 static private Target.Floaty copysign(double magnitude, double sign, Target t) { method in class:CoreMathVerifier
418 return t.newFloaty(Math.copySign(magnitude, sign));
    [all...]

Completed in 7187 milliseconds