Home
last modified time | relevance | path

Searched refs:allocatedSize (Results 1 – 6 of 6) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DSparseMatrix.h1141 if(m_data.allocatedSize()==0)
1152 StorageIndex end = convert_index(m_data.allocatedSize());
1167 Index data_end = m_data.allocatedSize();
1187 if(data_end != m_data.allocatedSize())
1192 eigen_internal_assert(data_end < m_data.allocatedSize());
1193 StorageIndex new_end = convert_index(m_data.allocatedSize());
1212 if(data_end != m_data.allocatedSize())
1217 eigen_internal_assert(data_end < m_data.allocatedSize());
1218 StorageIndex new_end = convert_index(m_data.allocatedSize());
1238 if(m_data.size() != m_data.allocatedSize())
[all …]
DCompressedStorage.h110 inline Index allocatedSize() const { return m_allocatedSize; } in allocatedSize() function
DSparseBlock.h139 ? Index(matrix.data().allocatedSize()) + block_size
148 … typename SparseMatrixType::Storage newdata(m_matrix.data().allocatedSize() - block_size + nnz);
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineStorage.h128 inline Index allocatedSize() const { in allocatedSize() function
/external/deqp/modules/gles3/performance/
Des3pBufferDataUploadTests.cpp206 int allocatedSize; member
1075 DE_ASSERT(samples[sampleNdx].allocatedSize != 0); in bucketizeSamplesUniformly()
1077 if (!minBufferSize || samples[sampleNdx].allocatedSize < minBufferSize) in bucketizeSamplesUniformly()
1078 minBufferSize = samples[sampleNdx].allocatedSize; in bucketizeSamplesUniformly()
1079 if (!maxBufferSize || samples[sampleNdx].allocatedSize > maxBufferSize) in bucketizeSamplesUniformly()
1080 maxBufferSize = samples[sampleNdx].allocatedSize; in bucketizeSamplesUniformly()
1085 …const float bucketNdxFloat = (float)(samples[sampleNdx].allocatedSize - minBufferSize) / (float)(m… in bucketizeSamplesUniformly()
1953 m_results[sampleNdx].allocatedSize = allocatedBufferSize; in BasicBufferCase()
2346 const int allocatedBufferSize = sample.allocatedSize; in runSample()
/external/eigen/test/
Dsparse_basic.cpp684 VERIFY(mat.data().allocatedSize()<20*n); in test_sparse_basic()