HomeSort by relevance Sort by last modified time
    Searched full:powl (Results 1 - 25 of 338) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
le32-libcall-pow.c 10 long double powl(long double, long double);
20 // CHECK: call double @powl
21 long double l2 = powl(a2, a2);
26 // CHECK: declare double @powl(double, double)
libcalls.c 47 // CHECK-YES: call x86_fp80 @powl
49 long double l2 = powl(a2, a2);
54 // CHECK-YES: declare x86_fp80 @powl(x86_fp80, x86_fp80)
libcall-declarations.c 39 long double powl(long double, long double);
269 F(nanf), F(nanl), F(pow), F(powf), F(powl),
338 // CHECK-NOERRNO: declare x86_fp80 @powl(x86_fp80, x86_fp80) [[NUW]]
  /development/ndk/platforms/android-L/arch-arm/symbols/
libm.so.functions.txt 192 powl
  /development/ndk/platforms/android-L/arch-arm64/symbols/
libm.so.functions.txt 164 powl
  /development/ndk/platforms/android-L/arch-mips/symbols/
libm.so.functions.txt 171 powl
  /development/ndk/platforms/android-L/arch-mips64/symbols/
libm.so.functions.txt 164 powl
  /development/ndk/platforms/android-L/arch-x86/symbols/
libm.so.functions.txt 167 powl
  /development/ndk/platforms/android-L/arch-x86_64/symbols/
libm.so.functions.txt 164 powl
  /bionic/libm/upstream-freebsd/lib/msun/src/
imprecise.c 57 DECLARE_WEAK(powl); variable
  /ndk/sources/android/support/include/
math.h 55 long double powl(long double, long double);
  /prebuilts/ndk/9/sources/android/support/include/
math.h 55 long double powl(long double, long double);
  /ndk/sources/android/support/src/
math_support.c 62 __attribute__((weak)) long double powl(long double x, long double y) { return pow((double)x, (double)y); } function
  /bionic/tests/
math_test.cpp 591 TEST(math, powl) {
592 ASSERT_TRUE(__isnanl(powl(nanl(""), 3.0L)));
593 ASSERT_DOUBLE_EQ(1.0L, (powl(1.0L, nanl(""))));
594 ASSERT_TRUE(__isnanl(powl(2.0L, nanl(""))));
595 ASSERT_DOUBLE_EQ(8.0L, powl(2.0L, 3.0L));
  /external/llvm/include/llvm/Transforms/Utils/
VectorUtils.h 186 case LibFunc::powl:
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
config.hpp 61 // calling ::powl is OK, but std::pow(long double, long double)
  /external/llvm/test/CodeGen/Mips/
mips64-f128.ll 436 ; ALL: ld $25, %call16(powl)
442 %call = tail call fp128 @powl(fp128 %0, fp128 %1) nounwind
446 declare fp128 @powl(fp128, fp128) #2
  /external/llvm/test/CodeGen/AArch64/
arm64-illegal-float-ops.ll 178 ; CHECK: bl powl
illegal-float-ops.ll 178 ; CHECK: bl powl
  /external/ltrace/etc/
libm.so.conf 150 ldouble powl(ldouble, ldouble);
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 466 /// long double powl(long double x, long double y);
467 powl, enumerator in enum:llvm::LibFunc::Func
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 144 EnsureFPIntrinsicsExist(M, I, "powf", "pow", "powl");
527 ReplaceFPIntrinsicWithCall(CI, "powf", "pow", "powl");
  /external/llvm/lib/Target/
TargetLibraryInfo.cpp 243 "powl",
451 TLI.setUnavailable(LibFunc::powl);
  /external/libcxx/include/
cmath 116 long double powl(long double x, long double y);
950 inline _LIBCPP_INLINE_VISIBILITY long double pow(long double __x, long double __y) _NOEXCEPT {return powl(__x, __y);}
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
cmath 116 long double powl(long double x, long double y);
950 inline _LIBCPP_INLINE_VISIBILITY long double pow(long double __x, long double __y) _NOEXCEPT {return powl(__x, __y);}
    [all...]

Completed in 616 milliseconds

1 2 3 4 5 6 7 8 91011>>