HomeSort by relevance Sort by last modified time
    Searched refs:scalbnf (Results 1 - 17 of 17) sorted by null

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_scalbf.c 31 return scalbnf(x,fn);
39 if ( fn > (float)65000.0) return scalbnf(x, 65000);
40 if (-fn > (float)65000.0) return scalbnf(x,-65000);
41 return scalbnf(x,(int)fn);
s_scalbnf.c 32 scalbnf (float x, int n) function
58 __strong_reference(scalbnf, ldexpf);
s_scalbln.c 60 return (scalbnf(x, in));
e_powf.c 246 if((j>>23)<=0) z = scalbnf(z,n); /* subnormal output */
  /external/clang/test/CodeGen/
libcall-declarations.c 158 float scalbnf(float, int exp);
293 F(scalblnf), F(scalblnl), F(scalbn), F(scalbnf), F(scalbnl),
457 // CHECK-NOERRNO: declare float @scalbnf(float, i32) [[NUW]]
  /bionic/libm/include/
math.h 361 float scalbnf(float, int);
  /bionic/tests/
math_test.cpp 1137 TEST(math, scalbnf) {
1138 ASSERT_FLOAT_EQ(12.0f, scalbnf(3.0f, 2));
1278 ASSERT_FLOAT_EQ(1024.0f, scalbnf(fr, exp));
1333 ASSERT_FLOAT_EQ(14.1f, scalbnf(fr, exp));
    [all...]
  /external/ltrace/etc/
libm.so.conf 369 float scalbnf(float, int);
  /development/ndk/platforms/android-13/include/
math.h 366 float scalbnf(float, int) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-18/include/
math.h 368 float scalbnf(float, int) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-3/include/
math.h 363 float scalbnf(float, int) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-9/include/
math.h 363 float scalbnf(float, int) __NDK_FPABI_MATH__;
  /development/ndk/platforms/android-L/include/
math.h 361 float scalbnf(float, int) __NDK_FPABI_MATH__;
  /external/chromium_org/v8/test/mjsunit/tools/
tickprocessor.js 104 '0002aaa0 0000000d W scalbnf',
  /external/libcxx/test/depr/depr.c.headers/
math_h.disabled.cpp 589 static_assert((std::is_same<decltype(scalbnf(0, (int)0)), float>::value), "");
  /external/clang/lib/Headers/
tgmath.h 1161 __tg_scalbn(float __x, int __y) {return scalbnf(__x, __y);}
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp     [all...]

Completed in 498 milliseconds