Home
last modified time | relevance | path

Searched refs:ibufsize (Results 1 – 4 of 4) sorted by relevance

/freebsd/sbin/fsirand/
H A Dfsirand.c106 ssize_t ibufsize; in fsirand() local
151 ibufsize = sizeof(struct ufs1_dinode) * sblock->fs_ipg; in fsirand()
153 ibufsize = sizeof(struct ufs2_dinode) * sblock->fs_ipg; in fsirand()
154 if ((inodebuf = malloc(ibufsize)) == NULL) in fsirand()
183 } else if ((n = read(devfd, inodebuf, ibufsize)) != ibufsize) { in fsirand()
185 (n < ibufsize) ? "short read" : strerror(errno)); in fsirand()
215 } else if ((n = write(devfd, inodebuf, ibufsize)) != in fsirand()
216 ibufsize) { in fsirand()
218 (n != ibufsize) ? "short write" : in fsirand()
/freebsd/crypto/openssl/crypto/comp/
H A Dc_zlib.c273 int ibufsize; /* Buffer size */ member
328 ctx->ibufsize = ZLIB_DEFAULT_BUFSIZE; in bio_zlib_new()
378 ctx->ibuf = OPENSSL_malloc(ctx->ibufsize); in bio_zlib_read()
413 ret = BIO_read(next, ctx->ibuf, ctx->ibufsize); in bio_zlib_read()
588 ctx->ibufsize = ibs; in bio_zlib_ctrl()
/freebsd/usr.sbin/fifolog/lib/
H A Dfifolog_write_poll.c160 f->ibufsize = f->obufsize * 10; in fifolog_write_open()
161 ALLOC(&f->ibuf, f->ibufsize); in fifolog_write_open()
363 if (bufl + len + f->ibufptr > f->ibufsize) in fifolog_write_record()
H A Dfifolog_write.h59 ssize_t ibufsize; member