OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NumClusters
(Results
1 - 4
of
4
) sorted by null
/external/fsck_msdos/
fat.c
151
|| (*next >= boot->
NumClusters
&& *next < CLUST_EOFS)) {
219
fat = calloc(boot->
NumClusters
, sizeof(struct fatEntry));
286
for (cl = CLUST_FIRST; cl < boot->
NumClusters
;) {
306
if (cl >= boot->
NumClusters
)
413
for (cl = CLUST_FIRST; cl < boot->
NumClusters
; cl++)
424
for (p = head; p >= CLUST_FIRST && p < boot->
NumClusters
; p = q) {
460
for (head = CLUST_FIRST; head < boot->
NumClusters
; head++) {
469
p >= CLUST_FIRST && p < boot->
NumClusters
;
472
if (len > boot->
NumClusters
) {
490
for (head = CLUST_FIRST; head < boot->
NumClusters
; head++)
[
all
...]
boot.c
215
boot->
NumClusters
= (boot->NumSectors - boot->ClusterOffset) / boot->SecPerClust;
219
else if (boot->
NumClusters
< (CLUST_RSRVD&CLUST12_MASK))
221
else if (boot->
NumClusters
< (CLUST_RSRVD&CLUST16_MASK))
225
boot->
NumClusters
);
241
if (boot->NumFatEntries < boot->
NumClusters
) {
243
boot->
NumClusters
, boot->FATsecs);
dosfs.h
76
cl_t
NumClusters
; /* # of entries in a FAT */
dir.c
241
if (boot->RootCl < CLUST_FIRST || boot->RootCl >= boot->
NumClusters
) {
316
while (startcl >= CLUST_FIRST && startcl < boot->
NumClusters
) {
401
if (dir->head < CLUST_FIRST || dir->head >= boot->
NumClusters
)
455
if (dir->parent && (cl < CLUST_FIRST || cl >= boot->
NumClusters
)) {
503
} while ((cl = fat[cl].next) >= CLUST_FIRST && cl < boot->
NumClusters
);
540
if (dir->parent && (cl < CLUST_FIRST || cl >= boot->
NumClusters
)) {
789
|| dirent.head >= boot->
NumClusters
798
|| dirent.head >= boot->
NumClusters
)
832
if (dirent.head >= CLUST_FIRST && dirent.head < boot->
NumClusters
)
966
} while ((cl = fat[cl].next) >= CLUST_FIRST && cl < boot->
NumClusters
);
[
all
...]
Completed in 17 milliseconds