Home
last modified time | relevance | path

Searched refs:m_c (Results 1 – 10 of 10) sorted by relevance

/external/eigen/Eigen/src/Jacobi/
DJacobi.h43 JacobiRotation(const Scalar& c, const Scalar& s) : m_c(c), m_s(s) {} in JacobiRotation()
45 Scalar& c() { return m_c; } in c()
46 Scalar c() const { return m_c; } in c()
54 return JacobiRotation(m_c * other.m_c - conj(m_s) * other.m_s,
55 conj(m_c * conj(other.m_s) + conj(m_s) * conj(other.m_c)));
59 JacobiRotation transpose() const { using numext::conj; return JacobiRotation(m_c, -conj(m_s)); } in transpose()
62 JacobiRotation adjoint() const { using numext::conj; return JacobiRotation(conj(m_c), -m_s); } in adjoint()
74 Scalar m_c, m_s; variable
91 m_c = Scalar(1); in makeJacobi()
111 m_c = n; in makeJacobi()
[all …]
/external/v8/tools/clang/blink_gc_plugin/tests/
Dcycle_sub.cpp10 visitor->trace(m_c); in trace()
Dcycle_super_neg.cpp14 visitor->trace(m_c); in trace()
Dcycle_super.txt3 ./cycle_super.h:36:5: blink::D (m_c) => blink::C
Dcycle_sub.txt5 ./cycle_sub.h:26:5: blink::B (m_c) => blink::C
Dcycle_sub.h26 RefPtr<C> m_c;
Dcycle_ptrs.txt5 ./cycle_ptrs.h:34:5: blink::B (m_c) => blink::C
Dcycle_super_neg.h39 RefPtr<C> m_c;
Dcycle_super.h36 Persistent<C> m_c;
Dcycle_ptrs.h34 RefPtr<C> m_c; variable