OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FSNext
(Results
1 - 3
of
3
) sorted by null
/external/fsck_msdos/
dosfs.h
65
cl_t
FSNext
; /* Next free cluster acc. FSInfo */
fat.c
706
if ((boot->
FSNext
>= boot->NumClusters) || (fat[boot->
FSNext
].next != CLUST_FREE)) {
708
boot->
FSNext
);
712
boot->
FSNext
= head;
719
if (boot->
FSNext
> boot->NumClusters ) {
720
pwarn("
FSNext
block (%d) not correct NumClusters (%d)\n",
721
boot->
FSNext
, boot->NumClusters);
722
boot->
FSNext
=CLUST_FIRST; // boot->
FSNext
can have -1 value.
725
if (boot->NumFree && fat[boot->
FSNext
].next != CLUST_FREE)
[
all
...]
boot.c
151
boot->
FSNext
= fsinfo[0x1ec] + (fsinfo[0x1ed] << 8)
271
fsinfo[0x1ec] = (u_char)boot->
FSNext
;
272
fsinfo[0x1ed] = (u_char)(boot->
FSNext
>> 8);
273
fsinfo[0x1ee] = (u_char)(boot->
FSNext
>> 16);
274
fsinfo[0x1ef] = (u_char)(boot->
FSNext
>> 24);
Completed in 829 milliseconds