Lines Matching defs:out
62 void OPENSSL_LH_stats_bio(const OPENSSL_LHASH *lh, BIO *out)
64 BIO_printf(out, "num_items = %lu\n", lh->num_items);
65 BIO_printf(out, "num_nodes = %u\n", lh->num_nodes);
66 BIO_printf(out, "num_alloc_nodes = %u\n", lh->num_alloc_nodes);
67 BIO_printf(out, "num_expands = 0\n");
68 BIO_printf(out, "num_expand_reallocs = 0\n");
69 BIO_printf(out, "num_contracts = 0\n");
70 BIO_printf(out, "num_contract_reallocs = 0\n");
71 BIO_printf(out, "num_hash_calls = 0\n");
72 BIO_printf(out, "num_comp_calls = 0\n");
73 BIO_printf(out, "num_insert = 0\n");
74 BIO_printf(out, "num_replace = 0\n");
75 BIO_printf(out, "num_delete = 0\n");
76 BIO_printf(out, "num_no_delete = 0\n");
77 BIO_printf(out, "num_retrieve = 0\n");
78 BIO_printf(out, "num_retrieve_miss = 0\n");
79 BIO_printf(out, "num_hash_comps = 0\n");
82 void OPENSSL_LH_node_stats_bio(const OPENSSL_LHASH *lh, BIO *out)
90 BIO_printf(out, "node %6u -> %3u\n", i, num);
94 void OPENSSL_LH_node_usage_stats_bio(const OPENSSL_LHASH *lh, BIO *out)
109 BIO_printf(out, "%lu nodes used out of %u\n", n_used, lh->num_nodes);
110 BIO_printf(out, "%lu items\n", total);
113 BIO_printf(out, "load %d.%02d actual load %d.%02d\n",