Home
last modified time | relevance | path

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

/third_party/openssl/crypto/comp/
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()
/third_party/node/deps/openssl/openssl/crypto/comp/
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()
/third_party/alsa-lib/src/seq/
Dseq_local.h90 size_t ibufsize; /* input buffer size */ member
Dseq.c1222 return seq->ibufsize * sizeof(snd_seq_event_t); in snd_seq_get_input_buffer_size()
1268 if (size != seq->ibufsize) { in snd_seq_set_input_buffer_size()
1275 seq->ibufsize = size; in snd_seq_set_input_buffer_size()
4098 len = (seq->ops->read)(seq, seq->ibuf, seq->ibufsize * sizeof(snd_seq_event_t)); in snd_seq_event_read_buffer()
Dseq_hw.c503 …seq->ibuf = (snd_seq_event_t *) calloc(sizeof(snd_seq_event_t), seq->ibufsize = SND_SEQ_IBUF_SIZE); in snd_seq_hw_open()