OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
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/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/tests/fs/ffs/
t_mount.c
94
"blocksize >
MAXBSIZE
");
108
"ffs.img > /dev/null",
MAXBSIZE
* 2);
/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
128
(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
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/badsect/
badsect.c
80
char cgx[
MAXBSIZE
];
/src/sbin/dump/
dump.h
144
extern char sblock_buf[
MAXBSIZE
]; /* buffer to hold the superblock */
ffs_inode.c
83
rawread(sblock_try[i], (char *)superblock,
MAXBSIZE
);
Completed in 28 milliseconds
1
2
3
4
Indexes created Sat Feb 21 01:20:28 UTC 2026