HomeSort by: relevance | last modified time | path
    Searched refs:NumClusters (Results 1 - 4 of 4) sorted by relevancy

  /src/sbin/fsck_msdos/
fat.c 65 || (*next >= boot->NumClusters && *next < CLUST_EOFS)) {
132 fat = malloc(len = boot->NumClusters * sizeof(struct fatEntry));
200 for (cl = CLUST_FIRST; cl < boot->NumClusters;) {
220 if (cl >= boot->NumClusters)
331 for (cl = CLUST_FIRST; cl < boot->NumClusters; cl++)
342 for (p = head; p >= CLUST_FIRST && p < boot->NumClusters; p = q) {
362 p >= CLUST_FIRST && p < boot->NumClusters;
386 for (head = CLUST_FIRST; head < boot->NumClusters; head++) {
395 p >= CLUST_FIRST && p < boot->NumClusters &&
411 for (head = CLUST_FIRST; head < boot->NumClusters; head++)
    [all...]
boot.c 252 boot->NumClusters =
257 else if (boot->NumClusters < (CLUST_RSRVD&CLUST12_MASK))
259 else if (boot->NumClusters < (CLUST_RSRVD&CLUST16_MASK))
263 boot->NumClusters);
279 if (boot->NumFatEntries < boot->NumClusters) {
281 boot->NumClusters, boot->FATsecs);
287 * time we perform boundary checks, we increment the NumClusters by 2,
290 boot->NumClusters += CLUST_FIRST;
dosfs.h 69 cl_t NumClusters; /* # of entries in a FAT */
dir.c 248 if (boot->RootCl < CLUST_FIRST || boot->RootCl >= boot->NumClusters) {
323 while (startcl >= CLUST_FIRST && startcl < boot->NumClusters) {
402 if (dir->head < CLUST_FIRST || dir->head >= boot->NumClusters)
480 if (dir->parent && (cl < CLUST_FIRST || cl >= boot->NumClusters)) {
711 || dirent.head >= boot->NumClusters
720 || dirent.head >= boot->NumClusters)
754 if (dirent.head >= CLUST_FIRST && dirent.head < boot->NumClusters)
865 } while ((cl = fat[cl].next) >= CLUST_FIRST && cl < boot->NumClusters);
966 if (lfcl < CLUST_FIRST || lfcl >= boot->NumClusters) {

Completed in 13 milliseconds