Searched refs:MAXBSIZE (Results 1 - 25 of 41) sorted by relevance

12

/freebsd-13-stable/sys/contrib/openzfs/lib/libspl/include/os/linux/sys/
H A Dparam.h36 * The file system is made out of blocks of at most MAXBSIZE units,
38 * MAXBSIZE primarily determines the size of buffers in the buffer
46 #define MAXBSIZE 8192 macro
/freebsd-13-stable/tools/build/cross-build/include/linux/
H A Dlimits.h58 #ifndef MAXBSIZE
59 #define MAXBSIZE 65536 /* must be power of 2 */ macro
/freebsd-13-stable/sys/fs/cd9660/
H A Dcd9660_bmap.c96 else if (nblk >= (MAXBSIZE >> bshift))
97 *ap->a_runp = (MAXBSIZE >> bshift) - 1;
/freebsd-13-stable/lib/libufs/
H A Dlibufs.h59 char d_sb[MAXBSIZE]; /* superblock as buffer */
63 char d_buf[MAXBSIZE]; /* cylinder group storage */
H A Dcgroup.c158 char block[MAXBSIZE];
/freebsd-13-stable/sbin/dump/
H A Dcache.c59 if ((BlockSize = sblock->fs_bsize * BLKFACTOR) > MAXBSIZE)
60 BlockSize = MAXBSIZE;
H A Dtraverse.c340 ufs1_daddr_t ufs1[MAXBSIZE / sizeof(ufs1_daddr_t)];
341 ufs2_daddr_t ufs2[MAXBSIZE / sizeof(ufs2_daddr_t)];
589 ufs1_daddr_t ufs1[MAXBSIZE / sizeof(ufs1_daddr_t)];
590 ufs2_daddr_t ufs2[MAXBSIZE / sizeof(ufs2_daddr_t)];
/freebsd-13-stable/sys/sys/
H A Dparam.h246 * MAXBSIZE - Filesystems are made out of blocks of at most MAXBSIZE bytes
247 * per block. MAXBSIZE may be made larger without effecting
250 * filesystems which require a block size exceeding MAXBSIZE.
253 * be >= MAXBSIZE and can be set differently for different
273 #define MAXBSIZE 65536 /* must be power of 2 */ macro
275 #define MAXBCACHEBUF MAXBSIZE /* must be a power of 2 >= MAXBSIZE */
286 * and must be less than or equal to MAXBSIZE. MAXSYMLINKS defines the
/freebsd-13-stable/contrib/netbsd-tests/fs/ffs/
H A Dt_mount.c94 "blocksize > MAXBSIZE");
108 "ffs.img > /dev/null", MAXBSIZE * 2);
/freebsd-13-stable/usr.bin/wc/
H A Dwc.c230 u_char buf[MAXBSIZE];
268 while ((len = read(fd, buf, MAXBSIZE))) {
303 while ((len = read(fd, buf, MAXBSIZE)) != 0) {
/freebsd-13-stable/usr.bin/split/
H A Dsplit.c73 static char bfr[MAXBSIZE]; /* I/O buffer. */
214 switch ((len = read(ifd, bfr, MAXBSIZE))) {
/freebsd-13-stable/sbin/pfctl/tests/
H A Dpfctl_test.c95 char buffer[MAXBSIZE];
/freebsd-13-stable/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dsysmacros.h70 #define MAXBSIZE 8192 macro
/freebsd-13-stable/sys/compat/cloudabi/
H A Dcloudabi_file.c413 readbuf = malloc(MAXBSIZE, M_TEMP, M_WAITOK);
419 .iov_len = MAXBSIZE
427 .uio_resid = MAXBSIZE,
460 readbuflen = MAXBSIZE - readuio.uio_resid;
/freebsd-13-stable/sbin/tunefs/
H A Dtunefs.c77 static char clrbuf[MAXBSIZE];
660 char block[MAXBSIZE];
750 char block[MAXBSIZE];
778 char block[MAXBSIZE];
875 char indirbuf[MAXBSIZE];
/freebsd-13-stable/sbin/ffsinfo/
H A Dffsinfo.c97 static char i1blk[MAXBSIZE];
98 static char i2blk[MAXBSIZE];
99 static char i3blk[MAXBSIZE];
/freebsd-13-stable/sbin/newfs/
H A Dmkfs.c197 if (sblock.fs_bsize > MAXBSIZE) {
199 sblock.fs_bsize, MAXBSIZE);
200 sblock.fs_bsize = MAXBSIZE;
207 if (sblock.fs_fsize > MAXBSIZE) {
209 sblock.fs_fsize, MAXBSIZE);
210 sblock.fs_fsize = MAXBSIZE;
H A Dnewfs.c210 if (bsize > MAXBSIZE)
212 optarg, MAXBSIZE);
/freebsd-13-stable/usr.bin/random/
H A Drandomize_fd.c114 buflen = sizeof(u_char) * MAXBSIZE;
/freebsd-13-stable/sbin/quotacheck/
H A Dquotacheck.c83 char dummy[MAXBSIZE];
88 char dummy[MAXBSIZE];
/freebsd-13-stable/usr.sbin/pwd_mkdb/
H A Dpwd_mkdb.c587 static char buf[MAXBSIZE];
594 while ((rcount = read(from_fd, buf, MAXBSIZE)) > 0) {
/freebsd-13-stable/sbin/restore/
H A Dtape.c73 static long fssize = MAXBSIZE;
264 if (stbuf.st_blksize >= TP_BSIZE && stbuf.st_blksize <= MAXBSIZE)
860 char buf[MAXBSIZE];
883 char buf[MAXBSIZE / TP_BSIZE][TP_BSIZE];
/freebsd-13-stable/sys/fs/ext2fs/
H A Dext2_balloc.c309 MAXBSIZE, seqcount, 0, &nbp);
/freebsd-13-stable/stand/libsa/
H A Dufsread.c220 fs.fs_bsize <= MAXBSIZE &&
/freebsd-13-stable/usr.bin/xinstall/
H A Dxinstall.c1111 char buf1[MAXBSIZE];
1112 char buf2[MAXBSIZE];
1239 char buf[MAXBSIZE];
1527 * syscalls, i.e. if the file size is > MAXBSIZE. However, mmap() is
1537 * MAXBSIZE the syscall overhead of read() shouldn't be too high?
1539 return (filesize > 4 * MAXBSIZE && filesize < 8 * 1024 * 1024);

Completed in 187 milliseconds

12