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

1 2

  /bionic/libm/src/
e_scalbf.c 32 return scalbnf(x,fn);
40 if ( fn > (float)65000.0) return scalbnf(x, 65000);
41 if (-fn > (float)65000.0) return scalbnf(x,-65000);
42 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));
k_rem_pio2f.c 81 z = scalbnf(z,q0); /* actual value of z */
114 if(carry!=0) z -= scalbnf(one,q0);
140 z = scalbnf(z,-q0);
150 fw = scalbnf(one,q0);
e_powf.c 244 if((j>>23)<=0) z = scalbnf(z,n); /* subnormal output */
  /bionic/libm/amd64/
s_scalbnf.S 30 ENTRY(scalbnf) function
42 .set CNAME(ldexpf),CNAME(scalbnf)
  /bionic/libm/i387/
s_scalbnf.S 11 ENTRY(scalbnf) function
19 .set CNAME(ldexpf),CNAME(scalbnf)
  /frameworks/compile/libbcc/runtime/lib/
divsc3.c 29 __c = scalbnf(__c, -__ilogbw);
30 __d = scalbnf(__d, -__ilogbw);
34 __real__ z = scalbnf((__a * __c + __b * __d) / __denom, -__ilogbw);
35 __imag__ z = scalbnf((__b * __c - __a * __d) / __denom, -__ilogbw);
  /bionic/libm/include/
math.h 366 float scalbnf(float, int);
  /development/ndk/platforms/android-3/include/
math.h 363 float scalbnf(float, int);
  /development/ndk/platforms/android-9/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r5/platforms/android-9/arch-arm/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-arm/usr/include/
math.h 363 float scalbnf(float, int);
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/
math.h 363 float scalbnf(float, int);
  /external/qemu/fpu/
softfloat-native.h 289 return scalbnf(a, n);
  /external/v8/test/mjsunit/tools/
tickprocessor.js 104 '0002aaa0 0000000d W scalbnf',

Completed in 2330 milliseconds

1 2