Home
last modified time | relevance | path

Searched refs:m_row (Results 1 – 7 of 7) sorted by relevance

/external/eigen/Eigen/src/Core/
DCommaInitializer.h34 : m_xpr(xpr), m_row(0), m_col(1), m_currentBlockRows(1) in CommaInitializer()
42 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows()) in CommaInitializer()
52 : m_xpr(o.m_xpr), m_row(o.m_row), m_col(o.m_col), m_currentBlockRows(o.m_currentBlockRows) { in CommaInitializer()
54 const_cast<CommaInitializer&>(o).m_row = m_xpr.rows(); in CommaInitializer()
65 m_row+=m_currentBlockRows;
68 eigen_assert(m_row<m_xpr.rows()
74 m_xpr.coeffRef(m_row, m_col++) = s;
85 m_row+=m_currentBlockRows;
88 eigen_assert(m_row+m_currentBlockRows<=m_xpr.rows()
95 (m_row, m_col, other.rows(), other.cols()) = other;
[all …]
/external/pdfium/fxbarcode/pdf417/
DBC_PDF417BarcodeRow.cpp26 : m_row(width), m_currentLocation(0) {} in CBC_BarcodeRow()
31 m_row[x] = value; in set()
35 m_row[x] = black ? 1 : 0; in set()
44 return m_row; in getRow()
48 m_output.resize(m_row.size() * scale); in getScaledRow()
50 m_output[i] = m_row[i / scale]; in getScaledRow()
DBC_PDF417BarcodeRow.h26 std::vector<uint8_t> m_row;
/external/testng/src/main/java/org/testng/reporters/
DEmailableReporter.java47 private int m_row; field in EmailableReporter
140 m_row += 1; in resultSummary()
210 m_row = 0; in startResultSummaryTable()
419 m_row += 1; in startSummaryRow()
420 m_out.print("<tr" + (m_row % 2 == 0 ? " class=\"stripe\"" : "") in startSummaryRow()
436 m_row = 0; in tableStart()
453 m_row = 0; in titleRow()
/external/eigen/Eigen/src/SparseCore/
DSparseUtil.h157 Triplet() : m_row(0), m_col(0), m_value(0) {}
160 : m_row(i), m_col(j), m_value(v)
164 const StorageIndex& row() const { return m_row; }
172 StorageIndex m_row, m_col;
/external/eigen/Eigen/src/SparseLU/
DSparseLU_SupernodalMatrix.h64 m_row = m; in setInfos()
78 Index rows() { return m_row; } in rows()
164 Index m_row; // Number of rows
/external/deqp/external/openglcts/modules/gl/
Dgl4cShaderImageLoadStoreTests.cpp9108 imageStoreCall(GLuint index, GLuint row) : m_index(index), m_row(row) in imageStoreCall()
9113 GLuint m_row; member
9132 writeCoordinatesVariableNameToStream(stream, store.m_index, store.m_row); in operator <<()
9134 if (0 == store.m_row) in operator <<()
9151 coordinatesVariableDeclaration(GLuint index, GLuint row) : m_index(index), m_row(row) in coordinatesVariableDeclaration()
9155 GLuint m_row; member
9169 writeCoordinatesVariableNameToStream(stream, declaration.m_index, declaration.m_row); in operator <<()
9171 stream << " = ivec2(" << declaration.m_index << ", " << declaration.m_row << ");"; in operator <<()