Home
last modified time | relevance | path

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

/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixFunction.h165 …nction_compute_cluster_size(const ListOfClusters& clusters, Matrix<Index, Dynamic, 1>& clusterSize) in matrix_function_compute_cluster_size() argument
168 clusterSize.setZero(numClusters); in matrix_function_compute_cluster_size()
171 clusterSize[clusterIndex] = cluster->size(); in matrix_function_compute_cluster_size()
178 void matrix_function_compute_block_start(const VectorType& clusterSize, VectorType& blockStart) in matrix_function_compute_block_start() argument
180 blockStart.resize(clusterSize.rows()); in matrix_function_compute_block_start()
182 for (typename VectorType::Index i = 1; i < clusterSize.rows(); i++) { in matrix_function_compute_block_start()
183 blockStart(i) = blockStart(i-1) + clusterSize(i-1); in matrix_function_compute_block_start()
247 …T, AtomicType& atomic, const VectorType& blockStart, const VectorType& clusterSize, MatrixType& fT) in matrix_function_compute_block_atomic() argument
250 for (typename VectorType::Index i = 0; i < clusterSize.rows(); ++i) { in matrix_function_compute_block_atomic()
251 fT.block(blockStart(i), blockStart(i), clusterSize(i), clusterSize(i)) in matrix_function_compute_block_atomic()
[all …]
/external/lzma/CPP/Windows/
DFileSystem.cpp86 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize) in MyGetDiskFreeSpace() argument
120 clusterSize = (UInt64)bytesPerSector * (UInt64)numSectorsPerCluster; in MyGetDiskFreeSpace()
123 totalSize = clusterSize * (UInt64)numClusters; in MyGetDiskFreeSpace()
124 freeSize = clusterSize * (UInt64)numFreeClusters; in MyGetDiskFreeSpace()
DFileIO.cpp27 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
267 UInt64 clusterSize, totalSize, freeSize; in CalcDeviceSize() local
268 if (NSystem::MyGetDiskFreeSpace(path, clusterSize, totalSize, freeSize)) in CalcDeviceSize()
DFileSystem.h23 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
DFileFind.cpp52 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
431 UInt64 clusterSize, totalSize, freeSize; in Find() local
432 if (NSystem::MyGetDiskFreeSpace(drive, clusterSize, totalSize, freeSize)) in Find()
DFileLink.cpp350 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);