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

1 2 3 4

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_scalb.c 20 * should use scalbn() instead.
35 return scalbn(x,fn);
43 if ( fn > 65000.0) return scalbn(x, 65000);
44 if (-fn > 65000.0) return scalbn(x,-65000);
45 return scalbn(x,(int)fn);
s_scalbn.c 18 * scalbn (double x, int n)
19 * scalbn(x,n) returns x* 2**n computed by exponent
37 scalbn (double x, int n) function
64 __weak_reference(scalbn, ldexpl);
65 __weak_reference(scalbn, scalbnl);
s_scalbln.c 45 return (scalbn(x, in));
k_rem_pio2.c 42 * z = scalbn(z,-e0)
75 * double scalbn(), floor();
327 z = scalbn(z,q0); /* actual value of z */
360 if(carry!=0) z -= scalbn(one,q0);
386 z = scalbn(z,-q0);
396 fw = scalbn(one,q0);
  /external/qemu/distrib/sdl-1.2.15/src/video/
e_sqrt.h 105 double SDL_NAME(scalbn) (double x, int n) function
107 double SDL_NAME(scalbn) (x,n)
  /bionic/libm/
fake_long_double.c 65 long double scalbnl(long double a1, int a2) { return scalbn(a1, a2); }
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 158 #define scalbn(x,y) __TGMATH_REAL_1_2(x, y, scalbn) macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 158 #define scalbn(x,y) __TGMATH_REAL_1_2(x, y, scalbn) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 169 #define scalbn(x,y) __TGMATH_REAL_1_2(x, y, scalbn) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 169 #define scalbn(x,y) __TGMATH_REAL_1_2(x, y, scalbn) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 158 #define scalbn(x,y) __TGMATH_REAL_1_2(x, y, scalbn) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 158 #define scalbn(x,y) __TGMATH_REAL_1_2(x, y, scalbn) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mathcalls.h 293 __MATHCALL (scalbn,, (_Mdouble_ __x, int __n));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 404 #define scalbn(Val1, Val2) __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, scalbn) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/
tgmath.h 413 #define scalbn(Val1, Val2) __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, scalbn) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathcalls.h 293 __MATHCALL (scalbn,, (_Mdouble_ __x, int __n));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 404 #define scalbn(Val1, Val2) __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, scalbn) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/
tgmath.h 413 #define scalbn(Val1, Val2) __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, scalbn) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
mathcalls.h 293 __MATHCALL (scalbn,, (_Mdouble_ __x, int __n));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 404 #define scalbn(Val1, Val2) __TGMATH_BINARY_FIRST_REAL_ONLY (Val1, Val2, scalbn) macro
  /development/ndk/platforms/android-3/include/
math.h 282 double scalbn(double, int);
  /development/ndk/platforms/android-9/include/
math.h 282 double scalbn(double, int);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
math.h 83 using std::tr1::scalbn;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
math.h 83 using std::tr1::scalbn;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
math.h 83 using std::tr1::scalbn;

Completed in 731 milliseconds

1 2 3 4