OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FATsecs
(Results
1 - 5
of
5
) sorted by null
/external/fsck_msdos/
boot.c
87
boot->
FATsecs
= boot->FATsmall;
92
boot->
FATsecs
= block[36] + (block[37] << 8)
199
+ boot->FATs * boot->
FATsecs
231
boot->NumFatEntries = (boot->
FATsecs
* boot->BytesPerSec) / 4;
234
boot->NumFatEntries = (boot->
FATsecs
* boot->BytesPerSec) / 2;
237
boot->NumFatEntries = (boot->
FATsecs
* boot->BytesPerSec * 2) / 3;
243
boot->NumClusters, boot->
FATsecs
);
dosfs.h
78
u_int32_t
FATsecs
; /* how many sectors are in FAT */
fat.c
174
(boot->
FATsecs
* boot->BytesPerSec) / 1024);
176
*buffer = malloc(boot->
FATsecs
* boot->BytesPerSec);
182
off = boot->ResSectors + no * boot->
FATsecs
;
190
if (read(fs, *buffer, boot->
FATsecs
* boot->BytesPerSec)
191
!= boot->
FATsecs
* boot->BytesPerSec) {
562
buffer = malloc(fatsz = boot->
FATsecs
* boot->BytesPerSec);
645
off = boot->ResSectors + i * boot->
FATsecs
;
check.c
103
if (((boot.
FATsecs
* boot.BytesPerSec) / 1024) > FAT_COMPARE_MAX_KB)
dir.c
462
off = boot->ResSectors + boot->FATs * boot->
FATsecs
;
554
off = boot->ResSectors + boot->FATs * boot->
FATsecs
;
Completed in 757 milliseconds