HomeSort by: relevance | last modified time | path
    Searched refs:MAXBSIZE (Results 1 - 25 of 82) sorted by relevancy

1 2 3 4

  /src/sys/arch/sun2/include/
param.h 72 #define MAXBSIZE 0x4000 /* max FS block size */
  /src/sys/arch/sun3/include/
param.h 56 #define MAXBSIZE 0x8000 /* max FS block size */
  /src/sys/ufs/mfs/
mfs_miniroot.c 60 if (fs->fs_magic != FS_UFS1_MAGIC || fs->fs_bsize > MAXBSIZE ||
  /src/sys/fs/cd9660/
cd9660_bmap.c 97 else if (nblk >= (MAXBSIZE >> bshift))
98 *ap->a_runp = (MAXBSIZE >> bshift) - 1;
  /src/sys/arch/sh3/include/
vmparam.h 77 #define USRIOSIZE (MAXBSIZE / PAGE_SIZE * 8)
  /src/usr.bin/wc/
wc.c 178 u_char buf[MAXBSIZE];
179 wchar_t wbuf[MAXBSIZE];
212 while ((len = read(fd, buf, MAXBSIZE)) > 0) {
249 read(fd, buf, MAXBSIZE)) > 0)
261 while ((len = read(fd, buf, MAXBSIZE)) > 0) {
  /src/sys/arch/x68k/dev/
fdreg.h 52 #define FDC_MAXIOSIZE MAXBSIZE
  /src/usr.bin/split/
split.c 182 char bfr[MAXBSIZE];
188 switch (len = read(ifd, bfr, MAXBSIZE)) {
252 char bfr[MAXBSIZE];
255 switch (len = read(ifd, bfr, MAXBSIZE)) {
  /src/usr.sbin/installboot/
ffs.c 126 char inodebuf[MAXBSIZE];
135 char diskbuf[MAXBSIZE];
216 memset(level[level_i].diskbuf, 0, MAXBSIZE);
263 char inodebuf[MAXBSIZE];
272 char diskbuf[MAXBSIZE];
353 memset(level[level_i].diskbuf, 0, MAXBSIZE);
396 char dirbuf[MAXBSIZE];
ext2fs.c 165 uint8_t gdbuf[MAXBSIZE];
198 uint8_t inodebuf[MAXBSIZE];
207 uint8_t diskbuf[MAXBSIZE];
289 memset(level[level_i].diskbuf, 0, MAXBSIZE);
332 uint8_t dirbuf[MAXBSIZE];
  /src/tests/fs/ffs/
t_mount.c 94 "blocksize > MAXBSIZE");
108 "ffs.img > /dev/null", MAXBSIZE * 2);
  /src/sys/arch/mips/include/
vmparam.h 144 * The default PTE number is enough to cover 8 disks * MAXBSIZE.
147 #define USRIOSIZE (MAXBSIZE/PAGE_SIZE * 8)
  /src/sbin/dump_lfs/
lfs_inode.c 231 char bp[MAXBSIZE];
308 static char ifileblock[MAXBSIZE];
360 char space[MAXBSIZE];
361 struct lfs64_dinode u_64[MAXBSIZE/sizeof(struct lfs64_dinode)];
362 struct lfs32_dinode u_32[MAXBSIZE/sizeof(struct lfs32_dinode)];
  /src/sys/fs/hfs/
hfs_subr.c 321 RBSZ(min(len - curoff + (off - start), MAXBSIZE), secsz),
326 (off - start), min(len - curoff, MAXBSIZE - (off - start)));
333 curoff += MAXBSIZE;
  /src/sys/arch/riscv/include/
vmparam.h 101 * The default PTE number is enough to cover 8 disks * MAXBSIZE.
104 #define USRIOSIZE (MAXBSIZE/PAGE_SIZE * 8)
  /src/sys/fs/filecorefs/
filecore_bmap.c 123 else if (nblk >= (MAXBSIZE >> bshift))
124 *ap->a_runp = (MAXBSIZE >> bshift) - 1;
  /src/sys/sys/
param.h 386 * The file system is made out of blocks of at most MAXBSIZE units, with
387 * smaller units (fragments) only in the last direct block. MAXBSIZE
392 #ifndef MAXBSIZE /* XXX */
393 #define MAXBSIZE MAXPHYS
402 * two, and must be less than or equal to MAXBSIZE. It must be the
  /src/sys/kern/
subr_disk_open.c 125 (secsize == 0 || secsize > MAXBSIZE || !powerof2(secsize) ||
vfs_bio.c 275 #define NMEMPOOLS (ilog2(MAXBSIZE) - MEMPOOL_INDEX_OFFSET + 1)
276 __CTASSERT((1 << (NMEMPOOLS + MEMPOOL_INDEX_OFFSET - 1)) == MAXBSIZE);
291 MAXBSIZE, MAXBSIZE,
300 uvm_km_free(buf_map, (vaddr_t)v, MAXBSIZE, UVM_KMF_WIRED);
306 .pa_pagesz = MAXBSIZE,
323 /* We need to accommodate at least NMEMPOOLS of MAXBSIZE each */
324 if (sz < NMEMPOOLS * MAXBSIZE)
614 return MAX(ninvalid, MIN(2 * MAXBSIZE,
1316 if (desired_size > MAXBSIZE)
    [all...]
  /src/sys/arch/hp300/stand/common/
ct.c 64 char ctio_buf[MAXBSIZE];
250 ct_ioc.len = size = MAXBSIZE;
  /src/sbin/newfs/
newfs.c 154 * MINBSIZE <= DESBLKSIZE <= MAXBSIZE
217 int maxbsize = 0; /* maximum clustering */ variable in typeref:typename:int
350 optarg, MINBSIZE, MAXBSIZE, NULL);
353 maxbsize = strsuftoi64("maximum extent size",
363 optarg, 1, MAXBSIZE, NULL);
688 maxcontig = MAX(1, MIN(MAXPHYS, MAXBSIZE) / bsize);
879 { BOTH, "-d maxbsize\tmaximum extent size" },
  /src/bin/cp/
utils.c 101 static char buf[MAXBSIZE];
241 while ((rcount = read(from_fd, buf, MAXBSIZE)) > 0) {
  /src/sbin/dump/
dump.h 144 extern char sblock_buf[MAXBSIZE]; /* buffer to hold the superblock */
  /src/sys/compat/linux32/common/
linux32_dirent.c 145 buflen = uimin(MAXBSIZE, nbytes);
  /src/sys/fs/msdosfs/
msdosfs_vfsops.c 586 (SecPerClust * pmp->pm_BytesPerSec > MAXBSIZE) ||
750 * to not exceed MAXBSIZE
756 pmp->pm_fatblocksize = MAXBSIZE;
783 * Cluster size must be within limit of MAXBSIZE.
787 if (pmp->pm_bpcluster > MAXBSIZE) {
788 DPRINTF("bpcluster %lu > MAXBSIZE %d",
789 pmp->pm_bpcluster, MAXBSIZE);

Completed in 53 milliseconds

1 2 3 4