HomeSort by relevance Sort by last modified time
    Searched refs:BytesPerSec (Results 1 - 5 of 5) sorted by null

  /external/fsck_msdos/
boot.c 74 boot->BytesPerSec = block[11] + (block[12] << 8);
117 (boot->BytesPerSec % DOSBOOTBLOCKSIZE != 0) ||
118 (boot->BytesPerSec / DOSBOOTBLOCKSIZE == 0) ||
128 if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)
129 != boot->FSInfo * boot->BytesPerSec
155 if (lseek(dosfs, boot->FSInfo * boot->BytesPerSec, SEEK_SET)
156 != boot->FSInfo * boot->BytesPerSec
175 if (lseek(dosfs, boot->Backup * boot->BytesPerSec, SEEK_SET)
176 != boot->Backup * boot->BytesPerSec
215 if (boot->BytesPerSec % DOSBOOTBLOCKSIZE != 0)
    [all...]
fat.c 84 off *= boot->BytesPerSec;
86 buffer = malloc(boot->BytesPerSec);
97 if (read(fs, buffer, boot->BytesPerSec) != boot->BytesPerSec) {
174 (boot->FATsecs * boot->BytesPerSec) / 1024);
176 *buffer = malloc(boot->FATsecs * boot->BytesPerSec);
183 off *= boot->BytesPerSec;
190 if (read(fs, *buffer, boot->FATsecs * boot->BytesPerSec)
191 != boot->FATsecs * boot->BytesPerSec) {
562 buffer = malloc(fatsz = boot->FATsecs * boot->BytesPerSec);
    [all...]
dosfs.h 49 u_int BytesPerSec; /* bytes per sector */
dir.c 231 b2 = boot->SecPerClust * boot->BytesPerSec;
312 int clsz = boot->SecPerClust * boot->BytesPerSec;
323 off *= boot->BytesPerSec;
464 last = boot->SecPerClust * boot->BytesPerSec;
468 off *= boot->BytesPerSec;
558 last = boot->SecPerClust * boot->BytesPerSec;
562 off *= boot->BytesPerSec;
1062 + boot->ClusterOffset * boot->BytesPerSec;
check.c 103 if (((boot.FATsecs * boot.BytesPerSec) / 1024) > FAT_COMPARE_MAX_KB)

Completed in 109 milliseconds