HomeSort by relevance Sort by last modified time
    Searched full:clustersize (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/lzma/CPP/Windows/
FileSystem.h 23 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
FileSystem.cpp 86 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize)
120 clusterSize = (UInt64)bytesPerSector * (UInt64)numSectorsPerCluster;
123 totalSize = clusterSize * (UInt64)numClusters;
124 freeSize = clusterSize * (UInt64)numFreeClusters;
FileIO.cpp 27 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
267 UInt64 clusterSize, totalSize, freeSize;
268 if (NSystem::MyGetDiskFreeSpace(path, clusterSize, totalSize, freeSize))
FileFind.cpp 52 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
431 UInt64 clusterSize, totalSize, freeSize;
432 if (NSystem::MyGetDiskFreeSpace(drive, clusterSize, totalSize, freeSize))
FileLink.cpp 350 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
ClusterChain.java 35 private final int clusterSize;
66 this.clusterSize = fat.getBootSector().getBytesPerCluster();
70 return clusterSize;
102 ((cluster - Fat.FIRST_CLUSTER) * clusterSize);
113 return getChainLength() * clusterSize;
128 final long nrClusters = ((size + clusterSize - 1) / clusterSize);
134 return clusterSize * nrClusters;
207 int chainIdx = (int) (offset / clusterSize);
208 if (offset % clusterSize != 0)
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 165 void matrix_function_compute_cluster_size(const ListOfClusters& clusters, Matrix<Index, Dynamic, 1>& clusterSize)
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)
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, MatrixType& fT
    [all...]
  /external/syslinux/libinstaller/
fs.c 59 int rootdirents, clustersize; local
63 clustersize = get_8(&sectbuf->bsSecPerClust);
64 if (clustersize == 0 || (clustersize & (clustersize - 1)))
83 clusters = dsectors / clustersize;
  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
FileSpace.c 339 if ((Size & (Volume->ClusterSize - 1)) > 0) {
559 UINTN ClusterSize;
565 ClusterSize = Volume->ClusterSize;
596 while (StartPos + ClusterSize <= Position) {
597 StartPos += ClusterSize;
619 Run = StartPos + ClusterSize - Position;
622 Run += ClusterSize;
669 Size += Volume->ClusterSize;
695 ClusterSizeMask = Volume->ClusterSize - 1;
    [all...]
Init.c 323 Volume->ClusterSize = (UINTN)1 << (Volume->ClusterAlignment);
  /device/linaro/bootloader/edk2/FatPkg/FatPei/
FatLiteAccess.c 144 Volume->ClusterSize = Bpb.SectorSize * Bpb.SectorsPerCluster;
293 DivU64x32Remainder (File->CurrentPos, File->Volume->ClusterSize, &Offset);
299 AlignedPos + File->Volume->ClusterSize <= File->CurrentPos + Pos
301 AlignedPos += File->Volume->ClusterSize;
325 File->StraightReadAmount += File->Volume->ClusterSize;
337 DivU64x32Remainder (File->CurrentPos, File->Volume->ClusterSize, &Offset);
402 DivU64x32Remainder (File->CurrentPos, File->Volume->ClusterSize, &Offset);
403 PhysicalAddr = File->Volume->FirstClusterPos + MultU64x32 (File->Volume->ClusterSize, File->CurrentCluster - 2);
  /external/deqp/external/vulkancts/modules/vulkan/subgroups/
vktSubgroupsClusteredTests.cpp 398 << " const uint clusterSize = " << i << ";\n"
399 << " if (clusterSize <= gl_SubgroupSize)\n"
402 << getOpTypeName(caseDef.opType) + "(data[gl_SubgroupInvocationID], clusterSize);\n"
403 << " for (uint clusterOffset = 0; clusterOffset < gl_SubgroupSize; clusterOffset += clusterSize)\n"
407 << " for (uint index = clusterOffset; index < (clusterOffset + clusterSize); index++)\n"
414 << " if ((clusterOffset <= gl_SubgroupInvocationID) && (gl_SubgroupInvocationID < (clusterOffset + clusterSize)))\n"
475 << " const uint clusterSize = " << i << ";\n"
476 << " if (clusterSize <= gl_SubgroupSize)\n"
479 << getOpTypeName(caseDef.opType) + "(data[gl_SubgroupInvocationID], clusterSize);\n"
480 << " for (uint clusterOffset = 0; clusterOffset < gl_SubgroupSize; clusterOffset += clusterSize)\n
    [all...]
  /external/fsck_msdos/
check.c 188 boot.NumFree * boot.ClusterSize / 1024, boot.NumFree,
189 boot.NumBad * boot.ClusterSize / 1024, boot.NumBad);
193 boot.NumFree * boot.ClusterSize / 1024, boot.NumFree);
dir.c 403 physicalSize = fat[dir->head].length * boot->ClusterSize;
417 } else if (physicalSize - dir->size >= boot->ClusterSize) {
424 for (cl = dir->head; (sz += boot->ClusterSize) < dir->size;)
1038 lfbuf = malloc(boot->ClusterSize);
1048 for (; p < lfbuf + boot->ClusterSize; p += 32)
1052 if (p && p < lfbuf + boot->ClusterSize)
1061 lfoff = lfcl * boot->ClusterSize
1064 || read(dosfs, lfbuf, boot->ClusterSize) != boot->ClusterSize) {
1077 d.size = fat[head].length * boot->ClusterSize;
    [all...]
dosfs.h 81 u_int ClusterSize; /* Cluster size in bytes */
boot.c 274 boot->ClusterSize = boot->BytesPerSec * boot->SecPerClust;
  /prebuilts/devtools/tools/lib/
jobb.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.4.0-beta3/
jobb-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.4.0-beta6/
jobb-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/24.5.0/
jobb-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0/
jobb-25.0.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha1/
jobb-25.0.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha3/
jobb-25.0.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha5/
jobb-25.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/jobb/25.0.0-alpha7/
jobb-25.0.0-alpha7.jar 

Completed in 747 milliseconds

1 2 3