| /freebsd-14-stable/contrib/sendmail/libsm/ |
| HD | makebuf.c | 108 if (st.st_blksize == 0) 115 if (S_ISREG(st.st_mode) && st.st_blksize > SM_IO_MAX_BUF_FILE) 116 st.st_blksize = SM_IO_MAX_BUF_FILE; 123 if (st.st_blksize > SM_IO_MAX_BUF) 124 st.st_blksize = SM_IO_MAX_BUF; 130 if (st.st_blksize < SM_IO_MIN_BUF) 131 st.st_blksize = SM_IO_MIN_BUF; 144 *bufsize = st.st_blksize; 145 fp->f_blksize = st.st_blksize;
|
| HD | README | 118 does not return a value for st_blksize that is the 124 st_blksize that is the "optimal blocksize for I/O". 129 st_blksize that is the "optimal blocksize for I/O".
|
| HD | fseek.c | 206 fp->f_blksize = st.st_blksize;
|
| /freebsd-14-stable/lib/libc/stdio/ |
| HD | makebuf.c | 101 if (st.st_blksize <= 0) { in __swhatbuf() 111 *bufsize = st.st_blksize; in __swhatbuf() 112 fp->_blksize = st.st_blksize; in __swhatbuf()
|
| HD | fseek.c | 179 fp->_blksize = st.st_blksize; in _fseeko()
|
| /freebsd-14-stable/sys/sys/ |
| HD | stat.h | 116 __int32_t st_blksize; /* optimal blocksize for I/O */ member 137 blksize_t st_blksize; /* optimal blocksize for I/O */ member 187 blksize_t st_blksize; /* optimal blocksize for I/O */ member 208 blksize_t st_blksize; /* optimal blocksize for I/O */ member
|
| /freebsd-14-stable/lib/libc/sys/ |
| HD | compat-ino64.h | 65 sb->st_blksize = sb11->st_blksize; in __stat11_to_stat()
|
| /freebsd-14-stable/sys/compat/linux/ |
| HD | linux_stats.c | 160 tbuf.st_blksize = buf->st_blksize; in newstat_copyout() 235 lbuf.st_blksize = buf->st_blksize; in old_stat_copyout() 535 lbuf.st_blksize = buf->st_blksize; in stat64_copyout() 676 tbuf.stx_blksize = buf->st_blksize; in statx_copyout()
|
| /freebsd-14-stable/sys/compat/freebsd32/ |
| HD | freebsd32.h | 181 blksize_t st_blksize; /* optimal blocksize for I/O */ member 240 uint32_t st_blksize; member 259 uint32_t st_blksize; member 280 __int32_t st_blksize; member
|
| /freebsd-14-stable/sys/i386/linux/ |
| HD | linux.h | 164 l_ulong st_blksize; member 186 l_long st_blksize; member 203 l_ulong st_blksize; member
|
| /freebsd-14-stable/sys/amd64/linux32/ |
| HD | linux.h | 192 l_ulong st_blksize; member 214 l_long st_blksize; member 231 l_ulong st_blksize; member
|
| /freebsd-14-stable/sys/contrib/openzfs/tests/zfs-tests/cmd/ |
| HD | mkfile.c | 206 if (bufsz != st.st_blksize) { in main() 209 bufsz = (size_t)st.st_blksize; in main()
|
| /freebsd-14-stable/stand/kboot/include/arch/powerpc64/ |
| HD | stat_arch.h | 20 host_blksize_t st_blksize; member
|
| /freebsd-14-stable/stand/kboot/include/arch/amd64/ |
| HD | stat_arch.h | 22 host_blksize_t st_blksize; member
|
| /freebsd-14-stable/stand/kboot/include/arch/aarch64/ |
| HD | stat_arch.h | 21 host_blksize_t st_blksize; member
|
| /freebsd-14-stable/crypto/heimdal/appl/ftp/common/ |
| HD | buffer.c | 54 new_sz = max(BUFSIZ, st->st_blksize); in alloc_buffer()
|
| /freebsd-14-stable/stand/kboot/kboot/ |
| HD | hostfs.c | 182 sb->st_blksize = ksb.st_blksize; in hostfs_stat()
|
| /freebsd-14-stable/sbin/restore/ |
| HD | tape.c | 260 if (stbuf.st_blksize > 0 && stbuf.st_blksize < TP_BSIZE ) in setup() 262 if (stbuf.st_blksize >= TP_BSIZE && stbuf.st_blksize <= MAXBSIZE) in setup() 263 fssize = stbuf.st_blksize; in setup() 264 if (((TP_BSIZE - 1) & stbuf.st_blksize) != 0) { in setup() 266 "blocksize (%d);\n", TP_BSIZE, stbuf.st_blksize); in setup()
|
| /freebsd-14-stable/crypto/heimdal/appl/rcp/ |
| HD | util.c | 158 size = roundup(stb.st_blksize, blksize);
|
| /freebsd-14-stable/tools/test/stress2/misc/ |
| HD | kinfo2.sh | 127 if (space < sb.st_blksize)
|
| /freebsd-14-stable/sys/arm64/linux/ |
| HD | linux.h | 138 l_int st_blksize; member
|
| /freebsd-14-stable/tests/sys/aio/ |
| HD | aio_test.c | 1540 ATF_REQUIRE(sb.st_blksize != 0); in aio_fsync_test() 1541 ATF_REQUIRE(ftruncate(fd, sb.st_blksize * nitems(buffers)) == 0); in aio_fsync_test() 1552 buffers[i].buffer = malloc(sb.st_blksize); in aio_fsync_test() 1553 aio_fill_buffer(buffers[i].buffer, sb.st_blksize, random()); in aio_fsync_test() 1556 buffers[i].iocb.aio_nbytes = sb.st_blksize; in aio_fsync_test() 1557 buffers[i].iocb.aio_offset = sb.st_blksize * i; in aio_fsync_test() 1579 ATF_REQUIRE(rval == sb.st_blksize); in aio_fsync_test()
|
| /freebsd-14-stable/tests/sys/fs/fusefs/ |
| HD | getattr.cc | 166 EXPECT_EQ((blksize_t)PAGE_SIZE, sb.st_blksize); in TEST_F() 245 EXPECT_EQ((blksize_t)12345, sb.st_blksize); in TEST_F()
|
| /freebsd-14-stable/sys/amd64/linux/ |
| HD | linux.h | 143 l_long st_blksize; member
|
| /freebsd-14-stable/contrib/diff/src/ |
| HD | system.h | 134 # define STAT_BLOCKSIZE(s) ((s).st_blksize)
|