Home
last modified time | relevance | path

Searched refs:m_inf (Results 1 – 3 of 3) sorted by relevance

/external/eigen/doc/examples/
Dclass_CwiseUnaryOp.cpp9 CwiseClampOp(const Scalar& inf, const Scalar& sup) : m_inf(inf), m_sup(sup) {} in CwiseClampOp()
10 const Scalar operator()(const Scalar& x) const { return x<m_inf ? m_inf : (x>m_sup ? m_sup : x); } in operator ()()
11 Scalar m_inf, m_sup; member
/external/python/cpython3/Modules/
Dcmathmodule.c91 m_inf(void) in m_inf() function
105 r.imag = m_inf(); in c_infj()
1270 if (PyModule_AddObject(mod, "inf", PyFloat_FromDouble(m_inf())) < 0) { in cmath_exec()
Dmathmodule.c264 m_inf(void) in m_inf() function
3510 double inf = m_inf(); in math_ulp_impl()
3533 if (PyModule_AddObject(module, "inf", PyFloat_FromDouble(m_inf())) < 0) { in math_exec()