/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
D | MatrixFunction.h | 165 …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/ |
D | FileSystem.cpp | 86 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()
|
D | FileIO.cpp | 27 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()
|
D | FileSystem.h | 23 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
|
D | FileFind.cpp | 52 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()
|
D | FileLink.cpp | 354 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
|
/external/skia/src/core/ |
D | SkTextBlob.cpp | 773 clusterSize = pe.extended ? safe.mul(glyphCount, sizeof(uint32_t)) : 0; in MakeFromBuffer() local 775 safe.add(safe.add(glyphSize, posSize), safe.add(clusterSize, textSize)); in MakeFromBuffer() 811 if (!reader.readByteArray(buf->clusters, clusterSize) || in MakeFromBuffer()
|
/external/skqp/src/core/ |
D | SkTextBlob.cpp | 773 clusterSize = pe.extended ? safe.mul(glyphCount, sizeof(uint32_t)) : 0; in MakeFromBuffer() local 775 safe.add(safe.add(glyphSize, posSize), safe.add(clusterSize, textSize)); in MakeFromBuffer() 811 if (!reader.readByteArray(buf->clusters, clusterSize) || in MakeFromBuffer()
|
/external/skia/tools/viewer/ |
D | Viewer.cpp | 1106 size_t clusterSize = sizeof(decltype(*it.clusters())); in filterTextBlob() local 1107 memcpy(runBuffer.clusters, it.clusters(), glyphCount * clusterSize); in filterTextBlob()
|
/external/skqp/tools/viewer/ |
D | Viewer.cpp | 1055 size_t clusterSize = sizeof(decltype(*it.clusters())); in filterTextBlob() local 1056 memcpy(runBuffer.clusters, it.clusters(), glyphCount * clusterSize); in filterTextBlob()
|