/external/eigen/Eigen/src/SparseCore/ |
CompressedStorage.h | 36 : 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[id] = i 223 Index* m_indices; member in class:Eigen::internal::CompressedStorage [all...] |
SparseMatrix.h | 873 : 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 928 const Index* m_indices; member in class:Eigen::SparseMatrix::ReverseInnerIterator [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/ |
ContentDistribution.cpp | 37 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()) 77 visitor->trace(m_indices);
|
ContentDistribution.h | 53 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:WebCore::FINAL
|
/external/eigen/Eigen/src/Core/ |
Transpositions.h | 122 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(size 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...] |
PermutationMatrix.h | 298 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/ |
glsRandomShaderCase.cpp | 199 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.clear() [all...] |
glsShaderRenderCase.cpp | 168 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;
|
glsRandomShaderCase.hpp | 104 std::vector<deUint16> m_indices; member in class:deqp::gls::RandomShaderCase
|
glsStateChangePerfTestCases.hpp | 102 std::vector<deUint16> m_indices; member in class:deqp::gls::StateChangePerformanceCase
|
glsStateChangePerfTestCases.cpp | 229 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/ |
rrRenderer.hpp | 102 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
|
rrRenderer.cpp | [all...] |
/external/deqp/modules/gles2/functional/ |
es2fVertexTextureTests.cpp | 196 const deUint16* getIndexPtr (void) const { return &m_indices[0]; } 204 vector<deUint16> m_indices; member in class:deqp::gles2::Functional::__anon23755::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.size() == m_gridSize*m_gridSize*3*2) [all...] |
/external/deqp/modules/gles3/functional/ |
es3fVertexArrayObjectTests.cpp | 162 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...] |
es3fVertexTextureTests.cpp | 246 const deUint16* getIndexPtr (void) const { return &m_indices[0]; } 254 vector<deUint16> m_indices; member in class:deqp::gles3::Functional::__anon23963::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.size() == m_gridSize*m_gridSize*3*2) [all...] |
/external/deqp/modules/gles31/functional/ |
es31fGeometryShaderTests.cpp | 1815 std::vector<deUint16> m_indices; member in class:deqp::gles31::Functional::__anon24076::GeometryShaderRenderTest [all...] |