Symbol: FSIZE
crypto/heimdal/appl/login/limits_conf.c
55
LIM(FSIZE, 1024),
crypto/heimdal/appl/rsh/limits_conf.c
55
LIM(FSIZE, 1024),
tests/sys/cddl/zfs/bin/file_trunc.c
48
static long fsize = FSIZE;
tests/sys/cddl/zfs/tests/txg_integrity/fsync_integrity.c
120
*begin = (uint32_t)((uint64_t)FSIZE * (uint64_t)pat->partitions[chunk - 1] >> 31);
tests/sys/cddl/zfs/tests/txg_integrity/fsync_integrity.c
122
*end = (uint32_t)((uint64_t)FSIZE * (uint64_t)pat->partitions[chunk] >> 31);
tests/sys/cddl/zfs/tests/txg_integrity/fsync_integrity.c
442
if ( ftruncate(outfd, FSIZE)){
tests/sys/cddl/zfs/tests/txg_integrity/fsync_integrity.c
448
for(ofs=0; ofs < FSIZE; ofs+=CLUSTERSIZE){
tests/sys/cddl/zfs/tests/txg_integrity/txg_integrity.c
110
*begin = (uint32_t)((uint64_t)FSIZE * (uint64_t)pat->partitions[chunk - 1] >> 31);
tests/sys/cddl/zfs/tests/txg_integrity/txg_integrity.c
112
*end = (uint32_t)((uint64_t)FSIZE * (uint64_t)pat->partitions[chunk] >> 31);
tests/sys/cddl/zfs/tests/txg_integrity/txg_integrity.c
507
if ( ftruncate(outfd, FSIZE)){
tests/sys/cddl/zfs/tests/txg_integrity/txg_integrity.c
513
for(ofs=0; ofs < FSIZE; ofs+=CLUSTERSIZE){
tests/sys/cddl/zfs/tests/txg_integrity/txg_integrity.c
528
p_file = mmap(0, FSIZE, PROT_READ | PROT_WRITE, MAP_SHARED, outfd, 0);
tests/sys/cddl/zfs/tests/txg_integrity/txg_integrity.c
585
if (munmap(p_file, FSIZE)){
tests/sys/kern/ssl_sendfile.c
124
ATF_REQUIRE(ftruncate(c->fd, FSIZE) == 0);
tests/sys/kern/ssl_sendfile.c
125
ATF_REQUIRE((c->mfd = mmap(NULL, FSIZE, PROT_READ | PROT_WRITE,
tests/sys/kern/ssl_sendfile.c
127
arc4random_buf(c->mfd, FSIZE);
tests/sys/kern/ssl_sendfile.c
308
while (nread < FSIZE && (n = SSL_read_b(c.cln, buf, sizeof(buf))) > 0) {
tests/sys/kern/ssl_sendfile.c
312
ATF_REQUIRE(nread == FSIZE);
tests/sys/kern/ssl_sendfile.c
313
require_sbytes(&c, FSIZE);
tests/sys/kern/ssl_sendfile.c
331
offset = arc4random() % FSIZE;
tests/sys/kern/ssl_sendfile.c
334
expect = offset + size < FSIZE ? size : FSIZE - offset;
tests/sys/kern/ssl_sendfile.c
357
#define TRUNC (FSIZE - 1024)
tests/sys/kern/ssl_sendfile.c
361
ATF_REQUIRE(setsockopt(c.ss, SOL_SOCKET, SO_SNDBUF, &(int){FSIZE / 16},
tests/sys/kern/ssl_sendfile.c
363
ATF_REQUIRE(setsockopt(c.cs, SOL_SOCKET, SO_RCVBUF, &(int){FSIZE / 16},
tests/sys/kern/ssl_sendfile.c
392
#define GROW (FSIZE/2)
tests/sys/kern/ssl_sendfile.c
396
ATF_REQUIRE(setsockopt(c.ss, SOL_SOCKET, SO_SNDBUF, &(int){FSIZE / 16},
tests/sys/kern/ssl_sendfile.c
398
ATF_REQUIRE(setsockopt(c.cs, SOL_SOCKET, SO_RCVBUF, &(int){FSIZE / 16},
tests/sys/kern/ssl_sendfile.c
407
ATF_REQUIRE(ftruncate(c.fd, FSIZE + GROW) == 0);
tests/sys/kern/ssl_sendfile.c
409
MAP_SHARED, c.fd, FSIZE)) != MAP_FAILED);
tests/sys/kern/ssl_sendfile.c
414
while (nread < FSIZE && (n = SSL_read_b(c.cln, buf,
tests/sys/kern/ssl_sendfile.c
415
FSIZE - nread > sizeof(buf) ? sizeof(buf) : FSIZE - nread)) > 0) {
tests/sys/kern/ssl_sendfile.c
419
ATF_REQUIRE(nread == FSIZE);
tests/sys/kern/ssl_sendfile.c
427
require_sbytes(&c, FSIZE + GROW);
tests/sys/kern/ssl_sendfile.c
440
sendme(&c, FSIZE + 1, 0, false);
tests/sys/kern/ssl_sendfile.c
469
sendme_locked_wait(&c, 0, FSIZE, true);
tests/sys/kern/ssl_sendfile.c
479
sendme_locked_wait(&c, 0, FSIZE, true);
tests/sys/kern/ssl_sendfile.c
500
sendme_locked_wait(&c, FSIZE, 0, true);
tests/sys/kern/ssl_sendfile.c
510
sendme_locked_wait(&c, FSIZE - 100, 0, true);