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

1 2 3 4 5 6 7 8

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fabsl.c 36 fabsl(long double x) function
s_csqrtl.c 76 return (cpackl(fabsl(b - b), copysignl(a, b)));
86 if (fabsl(a) >= THRESH || fabsl(b) >= THRESH) {
100 result = cpackl(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_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);
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)); \
  /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...]
  /external/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs macro
130 # define fabsl fabs macro
169 # define fabsl fabs macro
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs macro
130 # define fabsl fabs macro
169 # define fabsl fabs macro
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs macro
130 # define fabsl fabs macro
169 # define fabsl fabs macro
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs macro
130 # define fabsl fabs macro
169 # define fabsl fabs macro
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs macro
130 # define fabsl fabs macro
169 # define fabsl fabs macro
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs macro
130 # define fabsl fabs macro
169 # define fabsl fabs macro
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs macro
130 # define fabsl fabs macro
169 # define fabsl fabs macro
  /bionic/libm/
fake_long_double.c 28 long double fabsl(long double a1) { return fabs(a1); } function
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_tanl.c 72 if (fabsl(x) >= 0.67434) {
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 229 /// long double fabsl(long double x);
230 fabsl, enumerator in enum:llvm::LibFunc::Func
729 case LibFunc::fabs: case LibFunc::fabsf: case LibFunc::fabsl:
  /external/bison/darwin-lib/
math.h 1030 # undef fabsl macro
    [all...]
  /external/bison/lib/
math.in.h 704 # undef fabsl macro
705 # define fabsl rpl_fabsl macro
707 _GL_FUNCDECL_RPL (fabsl, long double, (long double x));
708 _GL_CXXALIAS_RPL (fabsl, long double, (long double x));
711 # undef fabsl macro
712 _GL_FUNCDECL_SYS (fabsl, long double, (long double x));
714 _GL_CXXALIAS_SYS (fabsl, long double, (long double x));
716 _GL_CXXALIASWARN (fabsl); variable
718 # undef fabsl macro
720 _GL_WARN_ON_USE (fabsl, "fabsl is unportable -
    [all...]
  /external/bison/linux-lib/
math.h 1030 # undef fabsl macro
    [all...]
  /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]]

Completed in 642 milliseconds

1 2 3 4 5 6 7 8