Searched refs:hugebuf (Results 1 – 2 of 2) sorted by relevance
/freebsd/crypto/openssl/crypto/cmp/ |
H A D | cmp_ctx.c | 372 char hugebuf[1024 * 2]; in ossl_cmp_print_log() local 397 BIO_snprintf(hugebuf, sizeof(hugebuf), in ossl_cmp_print_log() 400 if (printed > 0 && (size_t)printed < sizeof(hugebuf)) { in ossl_cmp_print_log() 401 if (BIO_vsnprintf(hugebuf + printed, in ossl_cmp_print_log() 402 sizeof(hugebuf) - printed, format, args) > 0) in ossl_cmp_print_log() 403 res = BIO_puts(trc_out, hugebuf) > 0; in ossl_cmp_print_log() 409 if (BIO_vsnprintf(hugebuf, sizeof(hugebuf), format, args) > 0) in ossl_cmp_print_log() 410 res = ctx->log_cb(func, file, line, level, hugebuf); in ossl_cmp_print_log()
|
/freebsd/crypto/openssl/crypto/bio/ |
H A D | bio_print.c | 901 char hugebuf[1024 * 2]; /* Was previously 10k, which is unreasonable in BIO_vprintf() local 904 char *hugebufp = hugebuf; in BIO_vprintf() 905 size_t hugebufsize = sizeof(hugebuf); in BIO_vprintf() 919 ret = BIO_write(bio, hugebuf, (int)retlen); in BIO_vprintf()
|