Home
last modified time | relevance | path

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

/openssl/crypto/bio/
H A Dbf_readbuff.c22 #define DEFAULT_BUFFER_SIZE 4096 macro
59 ctx->ibuf_size = DEFAULT_BUFFER_SIZE; in readbuffer_new()
60 ctx->ibuf = OPENSSL_zalloc(DEFAULT_BUFFER_SIZE); in readbuffer_new()
92 sz += (ctx->ibuf_off + DEFAULT_BUFFER_SIZE - 1); in readbuffer_resize()
93 sz = DEFAULT_BUFFER_SIZE * (sz / DEFAULT_BUFFER_SIZE); in readbuffer_resize()
H A Dbf_buff.c23 #define DEFAULT_BUFFER_SIZE 4096 macro
51 ctx->ibuf_size = DEFAULT_BUFFER_SIZE; in buffer_new()
52 ctx->ibuf = OPENSSL_malloc(DEFAULT_BUFFER_SIZE); in buffer_new()
57 ctx->obuf_size = DEFAULT_BUFFER_SIZE; in buffer_new()
58 ctx->obuf = OPENSSL_malloc(DEFAULT_BUFFER_SIZE); in buffer_new()
320 if ((ibs > DEFAULT_BUFFER_SIZE) && (ibs != ctx->ibuf_size)) { in buffer_ctrl()
327 if ((obs > DEFAULT_BUFFER_SIZE) && (obs != ctx->obuf_size)) { in buffer_ctrl()
/openssl/doc/man3/
H A DBIO_f_buffer.pod40 buffer size is DEFAULT_BUFFER_SIZE, currently 4096. Any attempt to reduce the
41 buffer size below DEFAULT_BUFFER_SIZE is ignored. Any buffered data is cleared
/openssl/
H A DCHANGES.md16436 * In crypto/bio/bf_buff.c, increase DEFAULT_BUFFER_SIZE to 4096

Completed in 51 milliseconds