Searched defs:frexp (Results 1 - 7 of 7) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_win_dll_thunk.cc372 INTERCEPT_LIBRARY_FUNCTION(frexp); variable
/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/lib/
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/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/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/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/deqp/modules/gles31/functional/
H A Des31fShaderCommonFunctionTests.cpp1705 static inline void frexp (float in, float* significand, int* exponent) function
1740 : CommonFunctionCase(context, getCommonFuncCaseName(baseType, precision, shaderType).c_str(), "frexp", shaderType)
1748 m_spec.source = "out0 = frexp(in0, out1);";
1812 frexp(in0, &refOut0, &refOut1);
1867 frexp(easySpecialCases[caseNdx], &in0, &in1);
1892 frexp(in, &in0, &in1);
2190 addFunctionCases<FrexpCase> (this, "frexp", true, false, false, ALL_SHADERS);

Completed in 355 milliseconds