Home
last modified time | relevance | path

Searched refs:ClusterSize (Results 1 – 5 of 5) sorted by relevance

/third_party/FreeBSD/sbin/fsck_msdosfs/
Ddir.c422 physicalSize = (u_int64_t)chainsize * boot->ClusterSize; in checksize()
436 } else if (physicalSize - dir->size >= boot->ClusterSize) { in checksize()
444 (sz += boot->ClusterSize) < dir->size; len++) in checksize()
1098 lfbuf = malloc(boot->ClusterSize); in reconnect()
1108 for (; p < lfbuf + boot->ClusterSize; p += 32) in reconnect()
1112 if (p && p < lfbuf + boot->ClusterSize) in reconnect()
1121 lfoff = (lfcl - CLUST_FIRST) * boot->ClusterSize in reconnect()
1125 || (size_t)read(dosfs, lfbuf, boot->ClusterSize) != boot->ClusterSize) { in reconnect()
1139 d.size = length * boot->ClusterSize; in reconnect()
1155 || (size_t)write(dosfs, lfbuf, boot->ClusterSize) != boot->ClusterSize) { in reconnect()
Dcheck.c134 freebytes = (int64_t)boot.NumFree * boot.ClusterSize; in checkfilesys()
135 badbytes = (int64_t)boot.NumBad * boot.ClusterSize; in checkfilesys()
Ddosfs.h78 u_int ClusterSize; /* Cluster size in bytes */ member
Dboot.c330 boot->ClusterSize = boot->bpbBytesPerSec * boot->bpbSecPerClust; in readboot()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSwitchLoweringUtils.cpp217 uint64_t ClusterSize = (High - Low).getLimitedValue() + 1; in buildJumpTable() local
218 for (uint64_t J = 0; J < ClusterSize; ++J) in buildJumpTable()