Searched refs:DEFAULT_BUFFER_SIZE (Results 1 – 4 of 4) sorted by relevance
22 #define DEFAULT_BUFFER_SIZE 4096 macro59 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()
23 #define DEFAULT_BUFFER_SIZE 4096 macro51 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()
40 buffer size is DEFAULT_BUFFER_SIZE, currently 4096. Any attempt to reduce the41 buffer size below DEFAULT_BUFFER_SIZE is ignored. Any buffered data is cleared
16436 * In crypto/bio/bf_buff.c, increase DEFAULT_BUFFER_SIZE to 4096
Completed in 40 milliseconds