Symbol: ibuf_size
crypto/openssl/crypto/bio/bf_buff.c
123
if (outl > ctx->ibuf_size) {
crypto/openssl/crypto/bio/bf_buff.c
143
i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size);
crypto/openssl/crypto/bio/bf_buff.c
289
if (num > ctx->ibuf_size) {
crypto/openssl/crypto/bio/bf_buff.c
311
ibs = ctx->ibuf_size;
crypto/openssl/crypto/bio/bf_buff.c
320
if ((ibs > DEFAULT_BUFFER_SIZE) && (ibs != ctx->ibuf_size)) {
crypto/openssl/crypto/bio/bf_buff.c
340
ctx->ibuf_size = ibs;
crypto/openssl/crypto/bio/bf_buff.c
388
if (BIO_set_read_buffer_size(dbio, ctx->ibuf_size) <= 0 || BIO_set_write_buffer_size(dbio, ctx->obuf_size) <= 0)
crypto/openssl/crypto/bio/bf_buff.c
450
i = BIO_read(b->next_bio, ctx->ibuf, ctx->ibuf_size);
crypto/openssl/crypto/bio/bf_buff.c
51
ctx->ibuf_size = DEFAULT_BUFFER_SIZE;
crypto/openssl/crypto/bio/bf_readbuff.c
101
ctx->ibuf_size = sz;
crypto/openssl/crypto/bio/bf_readbuff.c
59
ctx->ibuf_size = DEFAULT_BUFFER_SIZE;
crypto/openssl/crypto/bio/bf_readbuff.c
96
if (sz > ctx->ibuf_size) {
crypto/openssl/crypto/bio/bio_local.h
88
int ibuf_size; /* how big is the input buffer */
lib/libopenbsd/imsg.h
86
size_t ibuf_size(struct ibuf *);
sys/dev/qat/qat_common/adf_freebsd_admin.c
187
unsigned long ibuf_size = 0;
sys/dev/qat/qat_common/adf_freebsd_admin.c
191
if (compat_strtoul(val, 0, &ibuf_size))
sys/dev/qat/qat_common/adf_freebsd_admin.c
195
if (ibuf_size != 32 && ibuf_size != 64)
sys/dev/qat/qat_common/adf_freebsd_admin.c
196
ibuf_size = 64;
sys/dev/qat/qat_common/adf_freebsd_admin.c
198
req->ibuf_size_in_kb = ibuf_size;