/external/bison/m4/ |
D | frexp.m4 | 1 # 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 …]
|
D | printf-frexp.m4 | 1 # printf-frexp.m4 serial 5 17 [Define if the frexp function is available in libc.])
|
D | gnulib-comp.m4 | 85 # 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/ |
D | test-issues.txt | 18 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/ |
D | MatrixExponential.h | 286 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/ |
D | vulkan-test-issues.txt | 18 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/ |
D | config.h | 64 double val = frexp (d, &expon); in isinf() 81 double val = frexp (d, &expon); in isnan()
|
/external/libxml2/include/ |
D | win32config.h | 65 double val = frexp (d, &expon); in isinf() 82 double val = frexp (d, &expon); in isnan()
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | func_common.inl | 907 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 …]
|
D | func_common.hpp | 451 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.h | 95 __DEVICE__ double frexp(double, int *); 96 __DEVICE__ float frexp(float, int *); 213 using ::frexp;
|
D | __clang_cuda_cmath.h | 70 __DEVICE__ float frexp(float __arg, int *__exp) { in frexp() function
|
/external/bison/lib/ |
D | frexpl.c | 27 return frexp (x, expptr); in frexpl()
|
D | gnulib.mk | 423 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
|
D | frexp.c | 48 # define FUNC frexp
|
D | printf-frexp.c | 57 # define FREXP frexp
|
D | 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); 982 # undef frexp 984 _GL_WARN_ON_USE (frexp, "frexp is unportable - "
|
/external/compiler-rt/test/asan/TestCases/ |
D | frexp_interceptor.cc | 12 double y = frexp(x, exp); in main()
|
/external/mesa3d/src/mesa/main/ |
D | querymatrix.c | 163 normalizedFraction = (GLfloat)frexp(matrix[i], &exp); in _es_QueryMatrixxOES()
|
/external/deqp/framework/delibs/debase/ |
D | deMath.c | 117 double fract = frexp(x, &tmpExp); in deFractExp()
|
D | deMath.h | 96 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/ |
D | math.h | 1285 # 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/ |
D | math.h | 1285 # 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/ |
D | libcall-declarations.c | 25 double frexp(double, int *); 267 F(frexp), F(frexpf), F(frexpl), F(ldexp), F(ldexpf),
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 47 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 …]
|