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()
1291 PyModule_AddObject(m, "inf", PyFloat_FromDouble(m_inf())); in PyInit_cmath()
Dmathmodule.c238 m_inf(void) in m_inf() function
2402 PyModule_AddObject(m, "inf", PyFloat_FromDouble(m_inf())); in PyInit_math()