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

1 2 3

  /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);
gnulib.mk 420 ## begin gnulib module frexp-nolibm
423 EXTRA_DIST += frexp.c
425 EXTRA_libbison_a_SOURCES += frexp.c
427 ## end gnulib module frexp-nolibm
432 EXTRA_DIST += frexp.c frexpl.c
434 EXTRA_libbison_a_SOURCES += frexp.c frexpl.c
    [all...]
math.in.h 973 # define frexp rpl_frexp macro
975 _GL_FUNCDECL_RPL (frexp, double, (double x, int *expptr) _GL_ARG_NONNULL ((2)));
976 _GL_CXXALIAS_RPL (frexp, double, (double x, int *expptr));
978 _GL_CXXALIAS_SYS (frexp, double, (double x, int *expptr));
980 _GL_CXXALIASWARN (frexp); variable
982 # undef frexp macro
983 /* Assume frexp is always declared. */
984 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
985 "use gnulib module frexp for portability")
    [all...]
  /external/compiler-rt/test/asan/TestCases/
frexp_interceptor.cc 3 // Test the frexp() interceptor.
12 double y = frexp(x, exp);
  /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);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestFrexp.rs 26 float out = frexp(inV, &outIptr);
33 float2 out = frexp(inV, &outIptr);
40 float3 out = frexp(inV, &outIptr);
47 float4 out = frexp(inV, &outIptr);
  /bionic/libstdc++/include/
cmath 58 using ::frexp;
  /external/chromium_org/third_party/libxml/src/include/
win32config.h 63 double val = frexp (d, &expon);
80 double val = frexp (d, &expon);
  /external/chromium_org/third_party/libxml/win32/
config.h 63 double val = frexp (d, &expon);
80 double val = frexp (d, &expon);
  /external/chromium_org/third_party/libxslt/libxslt/
win32config.h 49 double val = frexp (d, &expon);
64 double val = frexp (d, &expon);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixExponential.h 286 using std::frexp;
294 frexp(m_l1norm / maxnorm, &m_squarings);
304 using std::frexp;
316 frexp(m_l1norm / maxnorm, &m_squarings);
326 using std::frexp;
341 frexp(m_l1norm / maxnorm, &m_squarings);
359 frexp(m_l1norm / maxnorm, &m_squarings);
377 frexp(m_l1norm / maxnorm, &m_squarings);
  /external/deqp/framework/delibs/debase/
deMath.c 116 double fract = frexp(x, &tmpExp);
deMath.h 94 DE_INLINE float deFloatFrExp (float x, int* exponent) { return (float)frexp(x, exponent); }
109 DE_INLINE double deFrExp (double x, int* exponent) { return frexp(x, exponent); }
110 /* Like frexp, except the returned fraction is in range [1.0, 2.0) */
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
querymatrix.c 165 normalizedFraction = (GLfloat)frexp(matrix[i], &exp);
  /external/mesa3d/src/mesa/main/
querymatrix.c 163 normalizedFraction = (GLfloat)frexp(matrix[i], &exp);
  /external/bison/
Android.mk 74 lib/printf-frexp.c \
  /external/clang/test/CodeGen/
libcall-declarations.c 25 double frexp(double, int *);
267 F(frexp), F(frexpf), F(frexpl), F(ldexp), F(ldexpf),
  /external/chromium_org/third_party/skia/third_party/lua/src/
llimits.h 285 n = l_mathop(frexp)(n, &e) * (lua_Number)(INT_MAX - DBL_MAX_EXP); \
lmathlib.c 156 lua_pushnumber(L, l_mathop(frexp)(luaL_checknumber(L, 1), &e));
246 {"frexp", math_frexp},
  /external/compiler-rt/lib/asan/
asan_dll_thunk.cc 310 INTERCEPT_LIBRARY_FUNCTION(frexp); variable
  /external/bison/darwin-lib/
math.h 1292 _GL_CXXALIASWARN (frexp); variable
1294 # undef frexp macro
    [all...]
  /external/bison/linux-lib/
math.h 1292 _GL_CXXALIASWARN (frexp); variable
1294 # undef frexp macro
    [all...]

Completed in 400 milliseconds

1 2 3