HomeSort by relevance Sort by last modified time
    Searched refs:m_row (Results 1 - 6 of 6) sorted by null

  /external/eigen/Eigen/src/Core/
CommaInitializer.h 34 : m_xpr(xpr), m_row(0), m_col(1), m_currentBlockRows(1)
41 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows())
51 m_row+=m_currentBlockRows;
54 eigen_assert(m_row<m_xpr.rows()
60 m_xpr.coeffRef(m_row, m_col++) = s;
70 m_row+=m_currentBlockRows;
73 eigen_assert(m_row+m_currentBlockRows<=m_xpr.rows()
82 (m_row, m_col) = other;
84 m_xpr.block(m_row, m_col, other.rows(), other.cols()) = other;
91 eigen_assert((m_row+m_currentBlockRows) == m_xpr.rows(
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
Minor.h 63 : m_matrix(matrix), m_row(row), m_col(col)
76 return m_matrix.const_cast_derived().coeffRef(row + (row >= m_row), col + (col >= m_col));
81 return m_matrix.coeff(row + (row >= m_row), col + (col >= m_col));
86 const Index m_row, m_col; member in class:Eigen::Minor
  /external/webkit/Source/WebCore/rendering/
RenderTableCell.h 48 int row() const { return m_row; }
49 void setRow(int row) { m_row = row; }
154 int m_row; member in class:WebCore::RenderTableCell
RenderTableCell.cpp 51 , m_row(-1)
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseUtil.h 152 Triplet() : m_row(0), m_col(0), m_value(0) {}
155 : m_row(i), m_col(j), m_value(v)
159 const Index& row() const { return m_row; }
167 Index m_row, m_col; member in class:Eigen::Triplet
  /external/webkit/Source/WebKit/efl/ewk/
ewk_tiled_backing_store.c 143 static inline void _ewk_tiled_backing_store_item_request_add(Ewk_Tiled_Backing_Store_Data *priv, Ewk_Tiled_Backing_Store_Item *it, int m_col, int m_row, float zoom);
455 static inline void _ewk_tiled_backing_store_item_request_add(Ewk_Tiled_Backing_Store_Data *priv, Ewk_Tiled_Backing_Store_Item *it, int m_col, int m_row, float zoom)
461 it->update.row = m_row;
497 long m_row = priv->model.base.row + row; local
500 if (m_col < 0 || m_row < 0
502 || (unsigned long)(m_row) >= priv->model.cur.rows) {
514 if (it->update.row == (unsigned long)(m_row)
524 if (old->row != (unsigned long)(m_row)
531 } else if (old->row == (unsigned long)(m_row)
538 (priv->model.matrix, m_col, m_row, zoom)
    [all...]

Completed in 654 milliseconds