Home
last modified time | relevance | path

Searched refs:frexp (Results 1 – 25 of 82) sorted by relevance

1234

/external/bison/m4/
Dfrexp.m41 # frexp.m4 serial 14
13 AC_CACHE_CHECK([whether frexp() can be used with libm],
22 [[int e; return frexp (x, &e) > 0;]])],
46 [Define if the frexp() function is available and works.])
63 dnl Set REPLACE_FREXP here because the system may have frexp in libm.
68 [Define if the frexp() function is available in libc.])
72 dnl Test whether frexp() can be used without linking with libm.
76 AC_CACHE_CHECK([whether frexp() can be used without linking with libm],
83 [[int e; return frexp (x, &e) > 0;]])],
89 dnl Test whether frexp() works also on denormalized numbers (this fails e.g. on
[all …]
Dprintf-frexp.m41 # printf-frexp.m4 serial 5
17 [Define if the frexp function is available in libc.])
Dgnulib-comp.m485 # Code from module frexp-nolibm:
159 # Code from module printf-frexp:
329 AC_LIBOBJ([frexp])
331 gl_MATH_MODULE_INDICATOR([frexp])
972 lib/frexp.c
1034 lib/printf-frexp.c
1035 lib/printf-frexp.h
1176 m4/frexp.m4
1244 m4/printf-frexp.m4
/external/deqp/external/vulkancts/mustpass/1.0.0/src/
Dtest-issues.txt18 dEQP-VK.glsl.builtin.function.common.frexp.float_highp_vertex
19 dEQP-VK.glsl.builtin.function.common.frexp.vec2_highp_vertex
20 dEQP-VK.glsl.builtin.function.common.frexp.vec3_highp_vertex
21 dEQP-VK.glsl.builtin.function.common.frexp.vec4_highp_vertex
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixExponential.h286 using std::frexp; in computeUV()
294 frexp(m_l1norm / maxnorm, &m_squarings); in computeUV()
304 using std::frexp; in computeUV()
316 frexp(m_l1norm / maxnorm, &m_squarings); in computeUV()
326 using std::frexp; in computeUV()
341 frexp(m_l1norm / maxnorm, &m_squarings); in computeUV()
359 frexp(m_l1norm / maxnorm, &m_squarings); in computeUV()
377 frexp(m_l1norm / maxnorm, &m_squarings); in computeUV()
/external/deqp/android/cts/master/src/
Dvulkan-test-issues.txt18 dEQP-VK.glsl.builtin.function.common.frexp.float_highp_vertex
19 dEQP-VK.glsl.builtin.function.common.frexp.vec2_highp_vertex
20 dEQP-VK.glsl.builtin.function.common.frexp.vec3_highp_vertex
21 dEQP-VK.glsl.builtin.function.common.frexp.vec4_highp_vertex
/external/libxml2/win32/VC10/
Dconfig.h64 double val = frexp (d, &expon); in isinf()
81 double val = frexp (d, &expon); in isnan()
/external/libxml2/include/
Dwin32config.h65 double val = frexp (d, &expon); in isinf()
82 double val = frexp (d, &expon); in isnan()
/external/vulkan-validation-layers/libs/glm/detail/
Dfunc_common.inl907 GLM_FUNC_QUALIFIER genType frexp function
915 "'frexp' only accept floating-point inputs");
917 return std::frexp(x, exp);
921 GLM_FUNC_QUALIFIER detail::tvec2<T, P> frexp function
929 "'frexp' only accept floating-point inputs");
932 frexp(x.x, exp.x),
933 frexp(x.y, exp.y));
937 GLM_FUNC_QUALIFIER detail::tvec3<T, P> frexp function
945 "'frexp' only accept floating-point inputs");
948 frexp(x.x, exp.x),
[all …]
Dfunc_common.hpp451 GLM_FUNC_DECL genType frexp(genType const & x, genIType & exp);
/external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
D__clang_cuda_math_forward_declares.h95 __DEVICE__ double frexp(double, int *);
96 __DEVICE__ float frexp(float, int *);
213 using ::frexp;
D__clang_cuda_cmath.h70 __DEVICE__ float frexp(float __arg, int *__exp) { in frexp() function
/external/bison/lib/
Dfrexpl.c27 return frexp (x, expptr); in frexpl()
Dgnulib.mk423 EXTRA_DIST += frexp.c
425 EXTRA_libbison_a_SOURCES += frexp.c
432 EXTRA_DIST += frexp.c frexpl.c
434 EXTRA_libbison_a_SOURCES += frexp.c frexpl.c
1350 libbison_a_SOURCES += printf-frexp.c
1352 EXTRA_DIST += printf-frexp.h
1360 EXTRA_DIST += printf-frexp.c printf-frexpl.h
1362 EXTRA_libbison_a_SOURCES += printf-frexp.c
Dfrexp.c48 # define FUNC frexp
Dprintf-frexp.c57 # define FREXP frexp
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);
982 # undef frexp
984 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
/external/compiler-rt/test/asan/TestCases/
Dfrexp_interceptor.cc12 double y = frexp(x, exp); in main()
/external/mesa3d/src/mesa/main/
Dquerymatrix.c163 normalizedFraction = (GLfloat)frexp(matrix[i], &exp); in _es_QueryMatrixxOES()
/external/deqp/framework/delibs/debase/
DdeMath.c117 double fract = frexp(x, &tmpExp); in deFractExp()
DdeMath.h96 DE_INLINE float deFloatFrExp (float x, int* exponent) { return (float)frexp(x, exponent); } in deFloatFrExp()
111 DE_INLINE double deFrExp (double x, int* exponent) { return frexp(x, exponent); } in deFrExp()
/external/bison/linux-lib/
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);
1294 # undef frexp
1296 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
/external/bison/darwin-lib/
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);
1294 # undef frexp
1296 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
/external/clang/test/CodeGen/
Dlibcall-declarations.c25 double frexp(double, int *);
267 F(frexp), F(frexpf), F(frexpl), F(ldexp), F(ldexpf),
/external/libcxx/test/std/numerics/c.math/
Dcmath.pass.cpp47 Ambiguous frexp(Ambiguous, int*){ return Ambiguous(); } in frexp() function
332 static_assert((std::is_same<decltype(std::frexp((float)0, &ip)), float>::value), ""); in test_frexp()
333 static_assert((std::is_same<decltype(std::frexp((bool)0, &ip)), double>::value), ""); in test_frexp()
334 static_assert((std::is_same<decltype(std::frexp((unsigned short)0, &ip)), double>::value), ""); in test_frexp()
335 static_assert((std::is_same<decltype(std::frexp((int)0, &ip)), double>::value), ""); in test_frexp()
336 static_assert((std::is_same<decltype(std::frexp((unsigned int)0, &ip)), double>::value), ""); in test_frexp()
337 static_assert((std::is_same<decltype(std::frexp((long)0, &ip)), double>::value), ""); in test_frexp()
338 static_assert((std::is_same<decltype(std::frexp((unsigned long)0, &ip)), double>::value), ""); in test_frexp()
339 static_assert((std::is_same<decltype(std::frexp((long long)0, &ip)), double>::value), ""); in test_frexp()
340 …static_assert((std::is_same<decltype(std::frexp((unsigned long long)0, &ip)), double>::value), ""); in test_frexp()
[all …]

1234