HomeSort by relevance Sort by last modified time
    Searched refs:scalbn (Results 76 - 94 of 94) sorted by null

1 2 34

  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
math.h 282 double scalbn(double, int);
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
math.h 282 double scalbn(double, int);
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
math.h 282 double scalbn(double, int);
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
math.h 83 using std::tr1::scalbn;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
math.h 83 using std::tr1::scalbn;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/
math.h 83 using std::tr1::scalbn;
  /bionic/libm/include/
math.h 272 double scalbn(double, int);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_pow.c 303 if((j>>20)<=0) z = scalbn(z,n); /* subnormal output */
  /external/qemu/distrib/sdl-1.2.15/src/video/
e_pow.h 299 if((j>>20)<=0) z = SDL_NAME(scalbn)(z,n); /* subnormal output */
  /bionic/tests/
math_test.cpp 979 TEST(math, scalbn) {
980 ASSERT_FLOAT_EQ(12.0, scalbn(3.0, 2));
1114 ASSERT_FLOAT_EQ(1024.0, scalbn(dr, exp));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
cmath.pass.cpp     [all...]
  /external/clang/lib/Headers/
tgmath.h 1157 // scalbn
1165 __tg_scalbn(double __x, int __y) {return scalbn(__x, __y);}
1171 #undef scalbn macro
1172 #define scalbn(__x, __y) __tg_scalbn(__tg_promote1((__x))(__x), __y) macro
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 1157 // scalbn
1165 __tg_scalbn(double __x, int __y) {return scalbn(__x, __y);}
1171 #undef scalbn macro
1172 #define scalbn(__x, __y) __tg_scalbn(__tg_promote1((__x))(__x), __y) macro
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
math_h.pass.cpp 588 static_assert((std::is_same<decltype(scalbn((double)0, (int)0)), double>::value), "");
591 assert(scalbn(1, 1) == 2);
  /external/qemu/fpu/
softfloat-native.h 411 return scalbn(a, n);
  /external/compiler-rt/test/Unit/ppc/
qdiv_test.c     [all...]
qmul_test.c     [all...]
qadd_test.c     [all...]
qsub_test.c     [all...]

Completed in 3610 milliseconds

1 2 34