Searched refs:bpb (Results 1 - 25 of 27) sorted by relevance

12

/freebsd-current/sbin/newfs_msdos/
H A Dmkfs_msdos.c148 struct bpb { struct
171 struct bpb bpb; member in struct:__anon5
224 static int getstdfmt(const char *, struct bpb *);
225 static int getdiskinfo(int, const char *, const char *, int, struct bpb *);
226 static void print_bpb(struct bpb *);
239 struct bpb bpb; local
312 memset(&bpb, 0, sizeof(bpb));
888 getstdfmt(const char *fmt, struct bpb *bpb) argument
923 getdiskinfo(int fd, const char *fname, const char *dtype, __unused int oflag, struct bpb *bpb) argument
1016 print_bpb(struct bpb *bpb) argument
[all...]
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_uuencode.c138 size_t bs = 65536, bpb; local
143 bpb = archive_write_get_bytes_per_block(f->archive);
144 if (bpb > bs)
145 bs = bpb;
146 else if (bpb != 0)
147 bs -= bs % bpb;
H A Darchive_write_add_filter_bzip2.c169 size_t bs = 65536, bpb; local
173 bpb = archive_write_get_bytes_per_block(f->archive);
174 if (bpb > bs)
175 bs = bpb;
176 else if (bpb != 0)
177 bs -= bs % bpb;
H A Darchive_write_add_filter_b64encode.c149 size_t bs = 65536, bpb; local
154 bpb = archive_write_get_bytes_per_block(f->archive);
155 if (bpb > bs)
156 bs = bpb;
157 else if (bpb != 0)
158 bs -= bs % bpb;
H A Darchive_write_add_filter_compress.c148 size_t bs = 65536, bpb; local
163 bpb = archive_write_get_bytes_per_block(f->archive);
164 if (bpb > bs)
165 bs = bpb;
166 else if (bpb != 0)
167 bs -= bs % bpb;
H A Darchive_write_add_filter_gzip.c186 size_t bs = 65536, bpb; local
190 bpb = archive_write_get_bytes_per_block(f->archive);
191 if (bpb > bs)
192 bs = bpb;
193 else if (bpb != 0)
194 bs -= bs % bpb;
H A Darchive_write_add_filter_xz.c311 size_t bs = 65536, bpb; local
315 bpb = archive_write_get_bytes_per_block(f->archive);
316 if (bpb > bs)
317 bs = bpb;
318 else if (bpb != 0)
319 bs -= bs % bpb;
H A Darchive_write_add_filter_zstd.c363 size_t bs = ZSTD_CStreamOutSize(), bpb; local
367 bpb = archive_write_get_bytes_per_block(f->archive);
368 if (bpb > bs)
369 bs = bpb;
370 else if (bpb != 0)
371 bs -= bs % bpb;
H A Darchive_write_add_filter_lz4.c236 size_t bs = required_size, bpb; local
241 bpb = archive_write_get_bytes_per_block(f->archive);
242 if (bpb > bs)
243 bs = bpb;
244 else if (bpb != 0) {
245 bs += bpb;
246 bs -= bs % bpb;
/freebsd-current/usr.sbin/makefs/msdos/
H A Dmsdosfs_conv.c57 #include <fs/msdosfs/bpb.h>
H A Dmsdosfs_lookup.c59 #include <fs/msdosfs/bpb.h>
H A Dmsdosfs_denode.c61 #include <fs/msdosfs/bpb.h>
H A Dmsdosfs_vfsops.c63 #include <fs/msdosfs/bpb.h>
106 * Compute several useful quantities from the bpb in the
107 * bootsector. Copy in the dos 5 variant of the bpb then fix up
H A Dmsdosfs_vnops.c64 #include <fs/msdosfs/bpb.h>
H A Dmsdosfs_fat.c61 #include <fs/msdosfs/bpb.h>
/freebsd-current/stand/libsa/
H A Ddosfs.c106 DOS_BPB bpb; /* BPB */ member in struct:__anon47
589 bs->bpb.media < 0xf0)
591 if (cv2(bs->bpb.secsiz) != SECSIZ)
593 if (!(fs->spc = bs->bpb.spc) || fs->spc & (fs->spc - 1))
597 if ((fs->spf = cv2(bs->bpb.spf))) {
598 if (bs->bpb.fats != 2)
600 if (!(fs->dirents = cv2(bs->bpb.dirents)))
603 if (!(fs->spf = cv4(bs->bpb.lspf)))
605 if (!bs->bpb.fats || bs->bpb
[all...]
/freebsd-current/lib/libprocstat/
H A Dmsdosfs.c52 #include <fs/msdosfs/bpb.h>
/freebsd-current/sys/geom/part/
H A Dg_part_mbr.c175 mbr_probe_bpb(u_char *bpb) argument
181 secsz = le16dec(bpb);
184 clstsz = bpb[2];
/freebsd-current/usr.sbin/makefs/
H A Dmsdos.c54 #include <fs/msdosfs/bpb.h>
/freebsd-current/stand/i386/boot2/
H A Dboot1.S63 bpb: .word 512 # sector size (T) label
/freebsd-current/tools/build/
H A DMakefile271 MSDOSFSINCS+= ${SRCTOP}/sys/fs/msdosfs/bpb.h
/freebsd-current/sys/fs/msdosfs/
H A Dmsdosfs_denode.c65 #include <fs/msdosfs/bpb.h>
H A Dmsdosfs_lookup.c59 #include <fs/msdosfs/bpb.h>
H A Dmsdosfs_fat.c59 #include <fs/msdosfs/bpb.h>
H A Dmsdosfs_conv.c58 #include <fs/msdosfs/bpb.h>

Completed in 178 milliseconds

12