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

1 2 3 4 5

  /external/bison/lib/
frexpl.c 27 return frexp (x, expptr);
33 # include "frexp.c"
frexp.c 48 # define FUNC frexp
printf-frexp.c 25 # include "printf-frexp.h"
44 # define FREXP frexpl
57 # define FREXP frexp
75 /* frexp and ldexp are usually faster than the loop below. */
76 x = FREXP (x, &exponent);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_frexp.c 18 * x = frexp(arg,&exp);
22 * If arg is inf, 0.0, or NaN, then frexp(arg,&exp) returns arg
35 frexp(double x, int *eptr) function
55 __weak_reference(frexp, frexpl);
s_fma.c 200 xs = frexp(x, &ex);
201 ys = frexp(y, &ey);
202 zs = frexp(z, &ez);
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 56 using ::frexp;
  /bionic/libstdc++/include/
cmath 58 using ::frexp;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 58 using ::frexp;
  /ndk/sources/cxx-stl/system/include/
cmath 58 using ::frexp;
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 56 using ::frexp;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 56 using ::frexp;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cmath 58 using ::frexp;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cmath 58 using ::frexp;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cmath 58 using ::frexp;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cmath 58 using ::frexp;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cmath 58 using ::frexp;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cmath 58 using ::frexp;
  /external/compiler-rt/lib/asan/
asan_intercepted_functions.h 106 double frexp(double x, int *expptr);
  /external/stlport/test/unit/
cmath_test.cpp 98 double_val = std::frexp(8.0, &int_val);
123 float_val = std::frexp(8.0f, &int_val);
149 long_double_val = std::frexp(8.0l, &int_val);
  /ndk/tests/device/test-gnustl-full/unit/
cmath_test.cpp 98 double_val = std::frexp(8.0, &int_val);
123 float_val = std::frexp(8.0f, &int_val);
149 long_double_val = std::frexp(8.0l, &int_val);
  /ndk/tests/device/test-stlport/unit/
cmath_test.cpp 98 double_val = std::frexp(8.0, &int_val);
123 float_val = std::frexp(8.0f, &int_val);
149 long_double_val = std::frexp(8.0l, &int_val);
  /external/ceres-solver/internal/ceres/
polynomial_solver.cc 73 // of frexp), as only the exponent is needed.
75 std::frexp(row_norm / col_norm, &exponent);
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMathFuncs.cpp 60 float __attribute__((overloadable)) frexp(float v, int* ptr) {return SC_frexpf(v, ptr);} function
  /external/stlport/stlport/stl/
_cmath.h 372 _STLP_MATH_INLINE2X(double, int*, frexp, frexp)
443 _STLP_DEF_MATH_INLINE2PI(frexp, frexp)
565 using ::frexp;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 372 _STLP_MATH_INLINE2X(double, int*, frexp, frexp)
443 _STLP_DEF_MATH_INLINE2PI(frexp, frexp)
565 using ::frexp;

Completed in 631 milliseconds

1 2 3 4 5