OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full: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)
240
+ boot->FATs * boot->
FATsecs
259
boot->NumFatEntries = (boot->
FATsecs
* boot->BytesPerSec) / 4;
262
boot->NumFatEntries = (boot->
FATsecs
* boot->BytesPerSec) / 2;
265
boot->NumFatEntries = (boot->
FATsecs
* boot->BytesPerSec * 2) / 3;
271
boot->NumClusters, boot->
FATsecs
);
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)
dosfs.h
78
u_int32_t
FATsecs
; /* how many sectors are in FAT */
dir.c
462
off = boot->ResSectors + boot->FATs * boot->
FATsecs
;
556
off = boot->ResSectors + boot->FATs * boot->
FATsecs
;
Completed in 150 milliseconds