Searched refs:frexp (Results 1 - 25 of 37) sorted by relevance

12

/external/bison/lib/
H A Dfrexpl.c27 return frexp (x, expptr);
33 # include "frexp.c"
H A Dfrexp.c48 # define FUNC frexp
H A Dprintf-frexp.c25 # include "printf-frexp.h"
57 # define FREXP frexp
75 /* frexp and ldexp are usually faster than the loop below. */
H A Dgnulib.mk420 ## 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
1348 ## begin gnulib module printf-frexp
1350 libbison_a_SOURCES += printf-frexp.c
1352 EXTRA_DIST += printf-frexp.h
1354 ## end gnulib module printf-frexp
[all...]
H A Dmath.in.h973 # 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 fo
[all...]
/external/compiler-rt/test/asan/TestCases/
H A Dfrexp_interceptor.cc3 // Test the frexp() interceptor.
12 double y = frexp(x, exp);
/external/libxml2/include/
H A Dwin32config.h65 double val = frexp (d, &expon);
82 double val = frexp (d, &expon);
/external/libxml2/win32/VC10/
H A Dconfig.h64 double val = frexp (d, &expon);
81 double val = frexp (d, &expon);
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixExponential.h286 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/
H A DdeMath.c117 double fract = frexp(x, &tmpExp);
H A DdeMath.h96 DE_INLINE float deFloatFrExp (float x, int* exponent) { return (float)frexp(x, exponent); }
111 DE_INLINE double deFrExp (double x, int* exponent) { return frexp(x, exponent); }
112 /* Like frexp, except the returned fraction is in range [1.0, 2.0) */
/external/mesa3d/src/mesa/main/
H A Dquerymatrix.c163 normalizedFraction = (GLfloat)frexp(matrix[i], &exp);
H A Dimports.h276 #define FREXPF(x,y) ((GLfloat) frexp(x,y))
/external/bison/
H A DAndroid.mk74 lib/printf-frexp.c \
/external/clang/test/CodeGen/
H A Dlibcall-declarations.c25 double frexp(double, int *);
267 F(frexp), F(frexpf), F(frexpl), F(ldexp), F(ldexpf),
/external/bison/darwin-lib/
H A Dmath.h1285 # define frexp rpl_frexp
1287 _GL_FUNCDECL_RPL (frexp, double, (double x, int *expptr) _GL_ARG_NONNULL ((2)));
1288 _GL_CXXALIAS_RPL (frexp, double, (double x, int *expptr));
1290 _GL_CXXALIAS_SYS (frexp, double, (double x, int *expptr));
1292 _GL_CXXALIASWARN (frexp); variable
1294 # undef frexp macro
1295 /* Assume frexp is always declared. */
1296 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
1297 "use gnulib module frexp fo
[all...]
/external/bison/linux-lib/
H A Dmath.h1285 # define frexp rpl_frexp
1287 _GL_FUNCDECL_RPL (frexp, double, (double x, int *expptr) _GL_ARG_NONNULL ((2)));
1288 _GL_CXXALIAS_RPL (frexp, double, (double x, int *expptr));
1290 _GL_CXXALIAS_SYS (frexp, double, (double x, int *expptr));
1292 _GL_CXXALIASWARN (frexp); variable
1294 # undef frexp macro
1295 /* Assume frexp is always declared. */
1296 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
1297 "use gnulib module frexp fo
[all...]
/external/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp47 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } function
332 static_assert((std::is_same<decltype(std::frexp((float)0, &ip)), float>::value), "");
333 static_assert((std::is_same<decltype(std::frexp((bool)0, &ip)), double>::value), "");
334 static_assert((std::is_same<decltype(std::frexp((unsigned short)0, &ip)), double>::value), "");
335 static_assert((std::is_same<decltype(std::frexp((int)0, &ip)), double>::value), "");
336 static_assert((std::is_same<decltype(std::frexp((unsigned int)0, &ip)), double>::value), "");
337 static_assert((std::is_same<decltype(std::frexp((long)0, &ip)), double>::value), "");
338 static_assert((std::is_same<decltype(std::frexp((unsigned long)0, &ip)), double>::value), "");
339 static_assert((std::is_same<decltype(std::frexp((long long)0, &ip)), double>::value), "");
340 static_assert((std::is_same<decltype(std::frexp((unsigne
[all...]
/external/ceres-solver/internal/ceres/
H A Dpolynomial.cc77 // of frexp), as only the exponent is needed.
79 std::frexp(row_norm / col_norm, &exponent);
/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc372 INTERCEPT_LIBRARY_FUNCTION(frexp); variable
/external/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp201 frexp(largest, &largeBits);
/external/clang/lib/Headers/
H A Dtgmath.h808 // frexp
816 __tg_frexp(double __x, int* __y) {return frexp(__x, __y);}
822 #undef frexp macro
823 #define frexp(__x, __y) __tg_frexp(__tg_promote1((__x))(__x), __y) macro
/external/libvorbis/lib/
H A Dlsp.c102 q=frexp(p+q,&qexp);
/external/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp111 static_assert((std::is_same<decltype(frexp((double)0, &ip)), double>::value), "");
114 assert(frexp(0, &ip) == 0);
/external/ltrace/etc/
H A Dlibm.so.conf288 double frexp(double, +int *);

Completed in 1101 milliseconds

12