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

1 2

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_exp2f.c 69 * exp2f(x): compute the base 2 exponential of x
77 * Thus we have exp2f(x) = 2**k * exp2(y).
95 exp2f(float x) function
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 211 /// float exp2f(float x);
212 exp2f, enumerator in enum:llvm::LibFunc::Func
744 case LibFunc::exp2: case LibFunc::exp2f: case LibFunc::exp2l:
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 126 #define exp2f(f) ((float) exp2(f)) macro
150 static inline float exp2f(float x) { return powf(2.0f, x); } function
  /external/clang/test/CodeGen/
libcall-declarations.c 80 float exp2f(float);
278 F(exp2f), F(exp2l), F(expm1), F(expm1f), F(expm1l),
379 // CHECK-NOERRNO: declare float @exp2f(float) [[NUW]]
  /external/mesa3d/src/mesa/main/
imports.h 126 #define exp2f(f) ((float) exp2(f)) macro
149 static inline float exp2f(float x) { return powf(2.0f, x); } function
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_arit.c 230 {"exp2", &lp_build_exp2, &exp2f, exp2_values, Elements(exp2_values), 20.0 },
  /external/llvm/include/llvm/Transforms/Utils/
VectorUtils.h 137 case LibFunc::exp2f:
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_arit.c 230 {"exp2", &lp_build_exp2, &exp2f, exp2_values, Elements(exp2_values), 20.0 },
  /bionic/libm/include/
math.h 317 float exp2f(float);
  /external/bison/darwin-lib/
math.h 876 _GL_FUNCDECL_SYS (exp2f, float, (float x));
878 _GL_CXXALIAS_SYS (exp2f, float, (float x));
879 _GL_CXXALIASWARN (exp2f);
881 # undef exp2f macro
883 _GL_WARN_ON_USE (exp2f, "exp2f is unportable - "
884 "use gnulib module exp2f for portability");
    [all...]
  /external/bison/lib/
math.in.h 564 _GL_FUNCDECL_SYS (exp2f, float, (float x));
566 _GL_CXXALIAS_SYS (exp2f, float, (float x));
567 _GL_CXXALIASWARN (exp2f); variable
569 # undef exp2f macro
571 _GL_WARN_ON_USE (exp2f, "exp2f is unportable - "
572 "use gnulib module exp2f for portability");
    [all...]
  /external/bison/linux-lib/
math.h 876 _GL_FUNCDECL_SYS (exp2f, float, (float x));
878 _GL_CXXALIAS_SYS (exp2f, float, (float x));
879 _GL_CXXALIASWARN (exp2f);
881 # undef exp2f macro
883 _GL_WARN_ON_USE (exp2f, "exp2f is unportable - "
884 "use gnulib module exp2f for portability");
    [all...]
  /bionic/tests/
math_test.cpp 559 TEST(math, exp2f) {
560 ASSERT_FLOAT_EQ(8.0f, exp2f(3.0f));
    [all...]
  /external/ltrace/etc/
libm.so.conf 281 float exp2f(float);
  /development/ndk/platforms/android-13/include/
math.h 323 float exp2f(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 324 float exp2f(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 322 float exp2f(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 322 float exp2f(float) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 317 float exp2f(float) __NDK_FPABI_MATH__;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
nv50_ir_target_nvc0.cpp 534 return f == exp2f(static_cast<float>(e));
  /external/llvm/lib/Target/
TargetLibraryInfo.cpp 116 "exp2f",
472 TLI.setUnavailable(LibFunc::exp2f);
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_target_nvc0.cpp 534 return f == exp2f(static_cast<float>(e));
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 388 static_assert((std::is_same<decltype(exp2f(0)), float>::value), "");
  /external/clang/lib/Headers/
tgmath.h 666 __tg_exp2(float __x) {return exp2f(__x);}

Completed in 582 milliseconds

1 2