OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BytesPerSec
(Results
1 - 5
of
5
) sorted by null
/external/fsck_msdos/
boot.c
74
boot->
BytesPerSec
= block[11] + (block[12] << 8);
109
if (lseek(dosfs, boot->FSInfo * boot->
BytesPerSec
, SEEK_SET)
110
!= boot->FSInfo * boot->
BytesPerSec
136
if (lseek(dosfs, boot->FSInfo * boot->
BytesPerSec
, SEEK_SET)
137
!= boot->FSInfo * boot->
BytesPerSec
156
if (lseek(dosfs, boot->Backup * boot->
BytesPerSec
, SEEK_SET)
157
!= boot->Backup * boot->
BytesPerSec
196
boot->ClusterOffset = (boot->RootDirEnts * 32 + boot->
BytesPerSec
- 1)
197
/ boot->
BytesPerSec
202
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
;
556
last = boot->SecPerClust * boot->
BytesPerSec
;
560
off *= boot->
BytesPerSec
;
1060
+ boot->ClusterOffset * boot->
BytesPerSec
;
check.c
103
if (((boot.FATsecs * boot.
BytesPerSec
) / 1024) > FAT_COMPARE_MAX_KB)
Completed in 52 milliseconds