Searched refs:rank_ (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/boost/numeric/ublas/ |
D | vector_of_vector.hpp | 524 container_const_reference<self_type> (), rank_ (), i_ (), j_ (), itv_ (), it_ () {} in const_iterator1() 527 … container_const_reference<self_type> (m), rank_ (rank), i_ (i), j_ (j), itv_ (itv), it_ (it) {} in const_iterator1() 530 …container_const_reference<self_type> (it ()), rank_ (it.rank_), i_ (it.i_), j_ (it.j_), itv_ (it.i… in const_iterator1() 535 if (rank_ == 1 && layout_type::fast_i ()) in operator ++() 540 if (rank_ == 1 && ++ itv_ == m.end1 ().itv_) in operator ++() 541 *this = m.find1 (rank_, i_, j_, 1); in operator ++() 542 else if (rank_ == 1) { in operator ++() 545 *this = m.find1 (rank_, i_, j_, 1); in operator ++() 552 if (rank_ == 1 && layout_type::fast_i ()) in operator --() 557 if (rank_ == 1 && -- itv_ == m.end1 ().itv_) in operator --() [all …]
|
D | matrix_sparse.hpp | 694 container_const_reference<self_type> (), rank_ (), i_ (), j_ (), it_ () {} in const_iterator1() 697 container_const_reference<self_type> (m), rank_ (rank), i_ (i), j_ (j), it_ (it) {} in const_iterator1() 700 …container_const_reference<self_type> (it ()), rank_ (it.rank_), i_ (it.i_), j_ (it.j_), it_ (it.it… in const_iterator1() 705 if (rank_ == 1 && layout_type::fast_i ()) in operator ++() 708 *this = (*this) ().find1 (rank_, index1 () + 1, j_, 1); in operator ++() 713 if (rank_ == 1 && layout_type::fast_i ()) in operator --() 716 *this = (*this) ().find1 (rank_, index1 () - 1, j_, -1); in operator --() 725 if (rank_ == 1) { in operator *() 797 if (rank_ == 1) { in index1() 807 if (rank_ == 1) { in index2() [all …]
|
/third_party/boost/libs/mpi/src/ |
D | communicator.cpp | 66 int rank_; in rank() local 67 BOOST_MPI_CHECK_RESULT(MPI_Comm_rank, (MPI_Comm(*this), &rank_)); in rank() 68 return rank_; in rank()
|