Home
last modified time | relevance | path

Searched refs:fabsl (Results 1 – 25 of 30) sorted by relevance

12

/external/clang/test/Sema/
Dwarn-absolute-value.c10 long double fabsl(long double);
29 (void)fabsl(x); in test_int()
91 (void)fabsl(x); in test_long()
160 (void)fabsl(x); in test_long_long()
231 (void)fabsl(x); in test_float()
296 (void)fabsl(x); in test_double()
367 (void)fabsl(x); in test_long_double()
441 (void)fabsl(x); in test_complex_float()
503 (void)fabsl(x); in test_complex_double()
571 (void)fabsl(x); in test_complex_long_double()
[all …]
/external/clang/test/SemaCXX/
Dwarn-absolute-value.cpp11 long double fabsl(long double);
50 (void)fabsl(x); in test_int()
114 (void)fabsl(x); in test_long()
185 (void)fabsl(x); in test_long_long()
258 (void)fabsl(x); in test_float()
325 (void)fabsl(x); in test_double()
398 (void)fabsl(x); in test_long_double()
472 (void)fabsl(x); in test_complex_float()
534 (void)fabsl(x); in test_complex_double()
602 (void)fabsl(x); in test_complex_long_double()
[all …]
/external/llvm/test/Transforms/InstCombine/
Dfabs.ll7 declare fp128 @fabsl(fp128)
31 %fabsl = tail call fp128 @fabsl(fp128 %mul)
32 ret fp128 %fabsl
68 %fabsl = tail call fp128 @llvm.fabs.f128(fp128 %mul)
69 ret fp128 %fabsl
/external/llvm/test/CodeGen/PowerPC/
D2008-07-15-Fabs.ll7 call ppc_fp128 @fabsl( ppc_fp128 %d ) nounwind readnone ; <ppc_fp128>:0 [#uses=1]
19 declare ppc_fp128 @fabsl(ppc_fp128) nounwind readnone
/external/llvm/test/CodeGen/X86/
Dfabs.ll8 declare x86_fp80 @fabsl(x86_fp80)
45 %Y = call x86_fp80 @fabsl(x86_fp80 %X) readnone
Dfp128-i128.ll272 %call = tail call fp128 @fabsl(fp128 %x) #2
279 declare fp128 @fabsl(fp128) #1
295 %call = tail call fp128 @fabsl(fp128 %sub) #2
/external/bison/lib/
Dmath.in.h704 # undef fabsl
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
712 _GL_FUNCDECL_SYS (fabsl, long double, (long double x));
714 _GL_CXXALIAS_SYS (fabsl, long double, (long double x));
716 _GL_CXXALIASWARN (fabsl);
718 # undef fabsl
720 _GL_WARN_ON_USE (fabsl, "fabsl is unportable - "
/external/bison/darwin-lib/
Dmath.h1016 # undef fabsl
1017 # define fabsl rpl_fabsl
1019 _GL_FUNCDECL_RPL (fabsl, long double, (long double x));
1020 _GL_CXXALIAS_RPL (fabsl, long double, (long double x));
1023 # undef fabsl
1024 _GL_FUNCDECL_SYS (fabsl, long double, (long double x));
1026 _GL_CXXALIAS_SYS (fabsl, long double, (long double x));
1028 _GL_CXXALIASWARN (fabsl);
1030 # undef fabsl
1032 _GL_WARN_ON_USE (fabsl, "fabsl is unportable - "
/external/bison/linux-lib/
Dmath.h1016 # undef fabsl
1017 # define fabsl rpl_fabsl
1019 _GL_FUNCDECL_RPL (fabsl, long double, (long double x));
1020 _GL_CXXALIAS_RPL (fabsl, long double, (long double x));
1023 # undef fabsl
1024 _GL_FUNCDECL_SYS (fabsl, long double, (long double x));
1026 _GL_CXXALIAS_SYS (fabsl, long double, (long double x));
1028 _GL_CXXALIASWARN (fabsl);
1030 # undef fabsl
1032 _GL_WARN_ON_USE (fabsl, "fabsl is unportable - "
/external/llvm/test/Transforms/TailCallElim/
Dinf-recursion.ll33 declare x86_fp80 @fabsl(x86_fp80 %f)
/external/clang/test/CodeGen/
Dlibcall-declarations.c21 long double fabsl(long double);
266 F(fabsf), F(fabsl), F(fmod), F(fmodf), F(fmodl),
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.h231 case LibFunc::fabs: case LibFunc::fabsf: case LibFunc::fabsl: in hasOptimizedCodeGen()
DTargetLibraryInfo.def435 /// long double fabsl(long double x);
436 TLI_DEFINE_ENUM_INTERNAL(fabsl)
437 TLI_DEFINE_STRING_INTERNAL("fabsl")
/external/llvm/lib/Target/SystemZ/
DREADME.txt68 We don't take full advantage of builtins like fabsl because the calling
/external/ltrace/etc/
Dlibm.so.conf322 ldouble fabsl(ldouble);
/external/llvm/test/CodeGen/Mips/
Dmips64-f128.ll251 %call = tail call fp128 @fabsl(fp128 %0) nounwind readnone
255 declare fp128 @fabsl(fp128) #1
/external/llvm/lib/Analysis/
DVectorUtils.cpp181 case LibFunc::fabsl: in getIntrinsicIDForCall()
DTargetLibraryInfo.cpp134 TLI.setUnavailable(LibFunc::fabsl); in initialize()
/external/llvm/lib/Target/PowerPC/
DPPCCTRLoops.cpp337 case LibFunc::fabsl: in mightUseCTR()
/external/bison/m4/
Dmath_h.m444 fabsf fabsl floorf floorl fma fmaf fmal
/external/libcxx/include/
Dcmath84 long double fabsl(long double x);
672 abs(long double __lcpp_x) _NOEXCEPT {return fabsl(__lcpp_x);}
819 inline _LIBCPP_INLINE_VISIBILITY long double fabs(long double __lcpp_x) _NOEXCEPT {return fabsl(__l…
1637 using ::fabsl;
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp88 static_assert((std::is_same<decltype(fabsl(0.L)), long double>::value), ""); in test_fabs()
/external/clang/lib/Headers/
Dtgmath.h541 __tg_fabs(long double __x) {return fabsl(__x);} in __tg_fabs()
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1157 LibFunc::fabsl)) { in optimizePow()
2246 case LibFunc::fabsl: in optimizeCall()
/external/clang/include/clang/Basic/
DBuiltins.def879 LIBBUILTIN(fabsl, "LdLd", "fnc", "math.h", ALL_LANGUAGES)

12