Searched defs:clusterSize (Results 1 - 3 of 3) sorted by relevance

/external/lzma/CPP/Windows/
H A DFileSystem.cpp86 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize) argument
120 clusterSize = (UInt64)bytesPerSector * (UInt64)numSectorsPerCluster;
123 totalSize = clusterSize * (UInt64)numClusters;
124 freeSize = clusterSize * (UInt64)numFreeClusters;
H A DFileFind.cpp51 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
331 UInt64 clusterSize, totalSize, freeSize; local
332 if (NSystem::MyGetDiskFreeSpace(drive, clusterSize, totalSize, freeSize))
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
H A DMatrixFunction.h165 void matrix_function_compute_cluster_size(const ListOfClusters& clusters, Matrix<Index, Dynamic, 1>& clusterSize) argument
168 clusterSize.setZero(numClusters);
171 clusterSize[clusterIndex] = cluster->size();
176 /** \brief Compute start of each block using clusterSize */
178 void matrix_function_compute_block_start(const VectorType& clusterSize, VectorType& blockStart) argument
180 blockStart.resize(clusterSize.rows());
182 for (typename VectorType::Index i = 1; i < clusterSize.rows(); i++) {
183 blockStart(i) = blockStart(i-1) + clusterSize(i-1);
243 * upper triangular), with the blocking given by \p blockStart and \p clusterSize. The matrix function of
247 void matrix_function_compute_block_atomic(const MatrixType& T, AtomicType& atomic, const VectorType& blockStart, const VectorType& clusterSize, MatrixTyp argument
329 matrix_function_compute_above_diagonal(const MatrixType& T, const VectorType& blockStart, const VectorType& clusterSize, MatrixType& fT) argument
441 Matrix<Index, Dynamic, 1> clusterSize; local
[all...]

Completed in 326 milliseconds