Searched refs:m_indices (Results 1 - 17 of 17) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
H A DCompressedStorage.h36 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
40 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
46 : m_values(0), m_indices(0), m_size(0), m_allocatedSize(0)
55 internal::smart_copy(other.m_indices, other.m_indices + m_size, m_indices);
62 std::swap(m_indices, other.m_indices);
70 delete[] m_indices;
98 m_indices[i
223 Index* m_indices; member in class:Eigen::internal::CompressedStorage
[all...]
H A DSparseMatrix.h873 : m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer), m_id(mat.m_outerIndex[outer])
886 inline Index index() const { return m_indices[m_id]; }
895 const Index* m_indices; member in class:Eigen::SparseMatrix::InnerIterator
906 : m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer), m_start(mat.m_outerIndex[outer])
919 inline Index index() const { return m_indices[m_id-1]; }
928 const Index* m_indices; member in class:Eigen::SparseMatrix::ReverseInnerIterator
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
H A DContentDistribution.cpp37 m_indices.swap(other.m_indices);
45 m_indices.set(node.get(), size);
51 WillBeHeapHashMap<RawPtrWillBeMember<const Node>, size_t>::const_iterator it = m_indices.find(node);
52 if (it == m_indices.end())
78 visitor->trace(m_indices);
H A DContentDistribution.h53 void clear() { m_nodes.clear(); m_indices.clear(); }
56 bool contains(const Node* node) const { return m_indices.contains(node); }
69 WillBeHeapHashMap<RawPtrWillBeMember<const Node>, size_t> m_indices; member in class:blink::FINAL
/external/eigen/Eigen/src/Core/
H A DTranspositions.h122 if(m_indices(k)!=k)
123 mat.row(k).swap(mat.row(m_indices(k)));
130 if(m_indices(k)!=k)
131 mat.row(k).swap(mat.row(m_indices(k)));
170 : m_indices(other.indices()) {}
175 inline Transpositions(const Transpositions& other) : m_indices(other.indices()) {}
180 explicit inline Transpositions(const MatrixBase<Other>& a_indices) : m_indices(a_indices)
196 m_indices = other.m_indices;
203 inline Transpositions(Index size) : m_indices(siz
213 IndicesType m_indices; member in class:Eigen::Transpositions
271 IndicesType m_indices; member in class:Eigen::Map
324 const typename IndicesType::Nested m_indices; member in class:Eigen::TranspositionsWrapper
[all...]
H A DPermutationMatrix.h298 inline PermutationMatrix(int size) : m_indices(size)
304 : m_indices(other.indices()) {}
309 inline PermutationMatrix(const PermutationMatrix& other) : m_indices(other.indices()) {}
320 explicit inline PermutationMatrix(const MatrixBase<Other>& a_indices) : m_indices(a_indices)
326 : m_indices(tr.size())
335 m_indices = other.indices();
352 m_indices = other.m_indices;
358 const IndicesType& indices() const { return m_indices; }
360 IndicesType& indices() { return m_indices; }
382 IndicesType m_indices; member in class:Eigen::PermutationMatrix
445 IndicesType m_indices; member in class:Eigen::Map
503 typename IndicesType::Nested m_indices; member in class:Eigen::PermutationWrapper
[all...]
/external/deqp/modules/glshared/
H A DglsRandomShaderCase.cpp199 m_indices.resize(numIndices);
205 m_indices[quadNdx*6+0] = quadX + quadY*(m_gridWidth+1);
206 m_indices[quadNdx*6+1] = quadX + (quadY+1)*(m_gridWidth+1);
207 m_indices[quadNdx*6+2] = quadX + quadY*(m_gridWidth+1) + 1;
208 m_indices[quadNdx*6+3] = m_indices[quadNdx*6+2];
209 m_indices[quadNdx*6+4] = m_indices[quadNdx*6+1];
210 m_indices[quadNdx*6+5] = quadX + (quadY+1)*(m_gridWidth+1) + 1;
303 m_indices
[all...]
H A DglsRandomShaderCase.hpp104 std::vector<deUint16> m_indices; member in class:deqp::gls::RandomShaderCase
H A DglsStateChangePerfTestCases.hpp102 std::vector<deUint16> m_indices; member in class:deqp::gls::StateChangePerformanceCase
H A DglsShaderRenderCase.cpp168 const deUint16* getIndices (void) const { return &m_indices[0]; }
190 vector<deUint16> m_indices; member in class:deqp::gls::QuadGrid
234 m_indices.resize(3 * m_numTriangles);
245 m_indices[baseNdx + 0] = v10;
246 m_indices[baseNdx + 1] = v00;
247 m_indices[baseNdx + 2] = v01;
249 m_indices[baseNdx + 3] = v10;
250 m_indices[baseNdx + 4] = v01;
251 m_indices[baseNdx + 5] = v11;
H A DglsStateChangePerfTestCases.cpp229 genIndices(m_indices, m_triangleCount);
481 m_indices.clear();
633 case DRAWTYPE_INDEXED_USER_PTR: gl.drawElements(GL_TRIANGLES, m_triangleCount * 3, GL_UNSIGNED_SHORT, &m_indices[0]); break;
/external/deqp/framework/referencerenderer/
H A DrrRenderer.hpp102 const void* const m_indices; // !< if indices is NULL, indices is interpreted as [first (== baseVertex) + 0, first + 1, first + 2, ...] member in class:rr::PrimitiveList
H A DrrRenderer.cpp1677 , m_indices (DE_NULL)
1688 , m_indices (indices.indices)
1698 if (m_indices)
1700 int index = m_baseVertex + (int)readIndexArray(m_indexType, m_indices, elementNdx);
1712 if (m_indices)
1713 return readIndexArray(m_indexType, m_indices, elementNdx) == restartIndex;
/external/deqp/modules/gles2/functional/
H A Des2fVertexTextureTests.cpp196 const deUint16* getIndexPtr (void) const { return &m_indices[0]; }
204 vector<deUint16> m_indices; member in class:deqp::gles2::Functional::__anon19944::PosTexCoordQuadGrid
234 m_indices.reserve(m_gridSize*m_gridSize*3*2);
251 m_indices.push_back(firstNdx + 0);
252 m_indices.push_back(firstNdx + 1);
253 m_indices.push_back(firstNdx + 2);
255 m_indices.push_back(firstNdx + 1);
256 m_indices.push_back(firstNdx + 3);
257 m_indices.push_back(firstNdx + 2);
264 DE_ASSERT((int)m_indices
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fVertexArrayObjectTests.cpp162 deUint8* m_indices; member in class:deqp::gles3::Functional::VertexArrayObjectTest
184 , m_indices (NULL)
255 m_indices = generateIndices();
264 delete[] m_indices;
577 GLU_CHECK_CALL(glDrawElements(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices));
579 GLU_CHECK_CALL(glDrawElementsInstanced(GL_TRIANGLES, m_spec.count, m_spec.indexType, m_indices, m_spec.instances));
681 deUint8* m_indices; member in class:deqp::gles3::Functional::MultiVertexArrayObjectTest
702 , m_indices (NULL)
831 m_indices = generateIndices();
840 delete[] m_indices;
[all...]
H A Des3fVertexTextureTests.cpp246 const deUint16* getIndexPtr (void) const { return &m_indices[0]; }
254 vector<deUint16> m_indices; member in class:deqp::gles3::Functional::__anon20153::PosTexCoordQuadGrid
284 m_indices.reserve(m_gridSize*m_gridSize*3*2);
301 m_indices.push_back(firstNdx + 0);
302 m_indices.push_back(firstNdx + 1);
303 m_indices.push_back(firstNdx + 2);
305 m_indices.push_back(firstNdx + 1);
306 m_indices.push_back(firstNdx + 3);
307 m_indices.push_back(firstNdx + 2);
314 DE_ASSERT((int)m_indices
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fGeometryShaderTests.cpp1815 std::vector<deUint16> m_indices; member in class:deqp::gles31::Functional::__anon20266::GeometryShaderRenderTest
2055 ctx.bufferData(GL_ELEMENT_ARRAY_BUFFER, m_indices.size() * sizeof(deUint16), &m_indices[0], GL_STATIC_DRAW);
2527 m_indices.resize(4);
2528 m_indices[0] = 3;
2529 m_indices[1] = 2;
2530 m_indices[2] = 0xFFFF; // restart
2531 m_indices[3] = 1;

Completed in 1046 milliseconds