HomeSort by relevance Sort by last modified time
    Searched refs:copysignf (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_csqrtf.c 67 return (CMPLXF(fabsf(b - b), copysignf(a, b)));
69 return (CMPLXF(a, copysignf(b - b, b)));
86 return (CMPLXF(fabsf(b) / (2.0 * t), copysignf(t, b)));
s_scalbnf.c 46 if (k > 0xfe) return huge*copysignf(huge,x); /* overflow */
51 return huge*copysignf(huge,x); /*overflow*/
52 else return tiny*copysignf(tiny,x); /*underflow*/
s_copysignf.c 20 * copysignf(float x, float y)
21 * copysignf(x,y) returns a value with the magnitude of x and
29 copysignf(float x, float y) function
s_cprojf.c 42 return (CMPLXF(INFINITY, copysignf(0.0, cimagf(z))));
s_ccoshf.c 66 return (CMPLXF(h * cosf(y), copysignf(h, x) * sinf(y)));
70 return (CMPLXF(crealf(z), cimagf(z) * copysignf(1, x)));
79 return (CMPLXF(y - y, x * copysignf(0, y)));
82 return (CMPLXF(x * x, copysignf(0, x) * y));
s_ctanhf.c 58 copysignf(0, isinf(y) ? y : sinf(y) * cosf(y))));
66 return (CMPLXF(copysignf(1, x),
catrigf.c 172 return (CMPLXF(copysignf(crealf(w), x),
173 copysignf(cimagf(w), y)));
189 return (CMPLXF(copysignf(rx, x), copysignf(ry, y)));
274 return (CMPLXF(fabsf(ry), copysignf(rx, cimagf(z))));
356 return (CMPLXF(copysignf(0, x), y + y));
358 return (CMPLXF(copysignf(0, x),
359 copysignf(pio2_hi + pio2_lo, y)));
365 copysignf(pio2_hi + pio2_lo, y)));
384 return (CMPLXF(copysignf(rx, x), copysignf(ry, y)))
    [all...]
s_csinhf.c 66 return (CMPLXF(copysignf(h, x) * cosf(y), h * sinf(y)));
70 return (CMPLXF(crealf(z) * copysignf(1, x), cimagf(z)));
  /device/google/contexthub/firmware/lib/libm/
sf_scalbn.c 60 if (k > FLT_LARGEST_EXP) return huge*copysignf(huge,x); /* overflow */
65 return huge*copysignf(huge,x); /*overflow*/
66 else return tiny*copysignf(tiny,x); /*underflow*/
  /external/bison/lib/
signbitf.c 46 return copysignf (1.0f, arg) < 0;
  /frameworks/native/services/sensorservice/
quat.h 75 q.x = copysignf(q.x, R[2].y - R[1].z);
76 q.y = copysignf(q.y, R[0].z - R[2].x);
77 q.z = copysignf(q.z, R[1].x - R[0].y);
  /device/google/contexthub/firmware/os/algos/common/math/
quat.c 30 q->x = copysignf(q->x, R->elem[1][2] - R->elem[2][1]);
31 q->y = copysignf(q->y, R->elem[2][0] - R->elem[0][2]);
32 q->z = copysignf(q->z, R->elem[0][1] - R->elem[1][0]);
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 96 _LIBCPP_ALWAYS_INLINE float copysignf( float x, float y ) function
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
math_win32.h 96 _LIBCPP_ALWAYS_INLINE float copysignf( float x, float y ) function
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/support/win32/
math_win32.h 98 _LIBCPP_ALWAYS_INLINE float copysignf( float x, float y ) function
  /external/compiler-rt/lib/builtins/
int_math.h 66 #define crt_copysignf(x, y) copysignf((x), (y))
  /external/llvm/lib/Support/Windows/
explicit_symbols.inc 95 INLINE_DEF_FLOAT_SYMBOL(copysignf, 2)
  /external/skia/include/private/
SkFloatingPoint.h 53 #define sk_float_copysign(x, y) copysignf(x, y)
  /external/clang/test/CodeGen/
libcall-declarations.c 17 float copysignf(float, float);
265 F(llabs), F(copysign), F(copysignf), F(copysignl), F(fabs),
322 // CHECK-NOERRNO: declare float @copysignf(float, float) [[NUW]]
537 // CHECK-ERRNO: declare float @copysignf(float, float) [[NUW]]
  /bionic/libc/include/
math.h 219 float copysignf(float, float) __attribute_const__;
  /development/ndk/platforms/android-13/include/
math.h 352 float copysignf(float, float) __pure2;
  /development/ndk/platforms/android-18/include/
math.h 354 float copysignf(float, float) __pure2;
  /development/ndk/platforms/android-9/include/
math.h 350 float copysignf(float, float) __pure2;
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 246 case LibFunc::copysign: case LibFunc::copysignf: case LibFunc::copysignl:
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp 116 EXPORT_F32_FN_F32_F32(copysignf)

Completed in 368 milliseconds

1 2 3 4 5 6 7