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

1 2 3 4

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fabsl.c 36 fabsl(long double x) function
s_csqrtl.c 76 return (CMPLXL(fabsl(b - b), copysignl(a, b)));
86 if (fabsl(a) >= THRESH || fabsl(b) >= THRESH) {
100 result = CMPLXL(fabsl(b) / (2 * t), copysignl(t, b));
s_asinhl.c 82 w = logl(fabsl(x))+ln2;
84 t = fabsl(x);
88 w =log1pl(fabsl(x)+t/(one+sqrtl(one+t)));
e_coshl.c 120 k_hexpl(fabsl(x), &hi, &lo);
125 if (fabsl(x) <= o_threshold)
126 RETURNI(hexpl(fabsl(x)));
e_sinhl.c 121 k_hexpl(fabsl(x), &hi, &lo);
126 if (fabsl(x) <= o_threshold)
127 RETURNI(s*hexpl(fabsl(x)));
e_atanhl.c 64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x));
e_hypotl.c 59 a = fabsl(a);
60 b = fabsl(b);
67 w = fabsl(x+0.0)-fabsl(y+0.0);
s_tanhl.c 131 if (ix < 0x4004 || fabsl(x) < 40) { /* |x|<40 */
160 k_hexpl(2*fabsl(x), &hi, &lo);
161 if (ix<0x4001 && fabsl(x) < 1.5) /* |x|<1.5 */
e_asinl.c 58 w = one-fabsl(x);
s_atanl.c 60 x = fabsl(x);
e_atan2l.c 112 else z=atanl(fabsl(y/x)); /* safe to do y/x */
math_private.h 365 assert(__ia == 0 || fabsl(__ia) >= fabsl(__ib)); \
s_remquol.c 160 y = fabsl(y);
  /bionic/libm/
builtins.cpp 25 // They get fabsf right, but we need to be careful in fabsl too.
40 long double fabsl(long double x) { return __builtin_fabsl(x); } function
42 long double fabsl(long double x) { function
  /bionic/libm/upstream-netbsd/lib/libm/complex/
cephes_subrl.c 44 if (fabsl(x) <= 0.5L) {
95 x = fabsl(2.0L * creall(z));
96 y = fabsl(2.0L * cimagl(z));
127 } while (fabsl(t/d) > MACHEPL);
ctanl.c 48 if (fabsl(d) < 0.25L)
casinl.c 52 if (fabsl(x) > 1.0L) {
95 b = fabsl(ct.r) + fabsl(ct.i);
  /external/clang/test/Sema/
warn-absolute-value.c 10 long double fabsl(long double);
29 (void)fabsl(x);
30 // expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of integer type}}
91 (void)fabsl(x);
92 // expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of integer type}}
160 (void)fabsl(x);
161 // expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of integer type}}
231 (void)fabsl(x);
296 (void)fabsl(x);
348 // expected-note@-2 {{use function 'fabsl' instead}
    [all...]
  /external/clang/test/SemaCXX/
warn-absolute-value.cpp 11 long double fabsl(long double);
50 (void)fabsl(x);
51 // expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of integer type}}
114 (void)fabsl(x);
115 // expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of integer type}}
185 (void)fabsl(x);
186 // expected-warning@-1 {{using floating point absolute value function 'fabsl' when argument is of integer type}}
258 (void)fabsl(x);
325 (void)fabsl(x);
398 (void)fabsl(x)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_tanl.c 72 if (fabsl(x) >= 0.67434) {
e_lgammal_r.c 244 return -logl(fabsl(x));
254 nadj = logl(pi/fabsl(t*x));
s_erfl.c 208 ax = fabsl(x);
269 ax = fabsl(x);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/m68k/
mcf-fpu.s 95 fabsl %d5,%fp0
96 fabsl %a4@,%fp0
97 fabsl %a3@+,%fp0
98 fabsl %a2@-,%fp0
99 fabsl %fp@(8),%fp0
100 fabsl %pc@(.+0x1238),%fp0
  /external/clang/test/CodeGen/
libcall-declarations.c 21 long double fabsl(long double);
266 F(fabsf), F(fabsl), F(fmod), F(fmodf), F(fmodl),
326 // CHECK-NOERRNO: declare x86_fp80 @fabsl(x86_fp80) [[NUW]]
541 // CHECK-ERRNO: declare x86_fp80 @fabsl(x86_fp80) [[NUW]]
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 247 case LibFunc::fabs: case LibFunc::fabsf: case LibFunc::fabsl:

Completed in 321 milliseconds

1 2 3 4