Searched refs:bpbSecPerClust (Results 1 - 7 of 7) sorted by relevance

/freebsd-12-stable/sys/fs/msdosfs/
H A Dbpb.h28 uint8_t bpbSecPerClust; /* sectors per cluster */ member in struct:bpb33
46 uint8_t bpbSecPerClust; /* sectors per cluster */ member in struct:bpb50
64 uint8_t bpbSecPerClust; /* sectors per cluster */ member in struct:bpb710
106 int8_t bpbSecPerClust; /* sectors per cluster */ member in struct:byte_bpb33
124 int8_t bpbSecPerClust; /* sectors per cluster */ member in struct:byte_bpb50
142 uint8_t bpbSecPerClust; /* sectors per cluster */ member in struct:byte_bpb710
H A Dmsdosfs_vfsops.c477 SecPerClust = b50->bpbSecPerClust;
/freebsd-12-stable/sbin/newfs_msdos/
H A Dmkfs_msdos.c106 u_int8_t bpbSecPerClust; /* sectors per cluster */ member in struct:bsbpb
150 u_int bpbSecPerClust; /* sectors per cluster */ member in struct:bpb
328 if (bpb.bpbSecPerClust == 0) { /* set defaults */
330 bpb.bpbSecPerClust = 1;
332 bpb.bpbSecPerClust = 8;
334 bpb.bpbSecPerClust = 16;
336 bpb.bpbSecPerClust = 32;
338 bpb.bpbSecPerClust = 64; /* otherwise 32k */
387 bpb.bpbSecPerClust = o.block_size / bpb.bpbBytesPerSec;
395 bpb.bpbSecPerClust
[all...]
/freebsd-12-stable/sbin/fsck_msdosfs/
H A Dboot.c80 boot->bpbSecPerClust = block[13];
81 if (boot->bpbSecPerClust == 0 || !powerof2(boot->bpbSecPerClust)) {
82 pfatal("Invalid cluster size: %u", boot->bpbSecPerClust);
263 if (boot->FirstCluster + boot->bpbSecPerClust > boot->NumSectors) {
274 (boot->NumSectors - boot->FirstCluster) / boot->bpbSecPerClust;
330 boot->ClusterSize = boot->bpbBytesPerSec * boot->bpbSecPerClust;
H A Ddosfs.h47 u_int bpbSecPerClust; /* sectors per cluster */ member in struct:bootblock
H A Ddir.c232 cluster_size = boot->bpbSecPerClust * boot->bpbBytesPerSec;
308 clsz = boot->bpbSecPerClust * boot->bpbBytesPerSec;
318 off = (startcl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
485 off = (cl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
579 iosize = boot->bpbSecPerClust * boot->bpbBytesPerSec;
597 off = (cl - CLUST_FIRST) * boot->bpbSecPerClust + boot->FirstCluster;
/freebsd-12-stable/usr.sbin/makefs/msdos/
H A Dmsdosfs_vfsops.c117 SecPerClust = b50->bpbSecPerClust;

Completed in 76 milliseconds