Lines Matching refs:out

35  *    The word 'cryptographic' can be left out if the rouines from the library
75 void lh_stats(LHASH *lh, FILE *out)
77 fprintf(out, "num_items = %lu\n", lh->num_items);
78 fprintf(out, "num_nodes = %u\n", lh->num_nodes);
79 fprintf(out, "num_alloc_nodes = %u\n", lh->num_alloc_nodes);
80 fprintf(out, "num_expands = %lu\n", lh->num_expands);
81 fprintf(out, "num_expand_reallocs = %lu\n", lh->num_expand_reallocs);
82 fprintf(out, "num_contracts = %lu\n", lh->num_contracts);
83 fprintf(out, "num_contract_reallocs = %lu\n", lh->num_contract_reallocs);
84 fprintf(out, "num_hash_calls = %lu\n", lh->num_hash_calls);
85 fprintf(out, "num_comp_calls = %lu\n", lh->num_comp_calls);
86 fprintf(out, "num_insert = %lu\n", lh->num_insert);
87 fprintf(out, "num_replace = %lu\n", lh->num_replace);
88 fprintf(out, "num_delete = %lu\n", lh->num_delete);
89 fprintf(out, "num_no_delete = %lu\n", lh->num_no_delete);
90 fprintf(out, "num_retrieve = %lu\n", lh->num_retrieve);
91 fprintf(out, "num_retrieve_miss = %lu\n", lh->num_retrieve_miss);
92 fprintf(out, "num_hash_comps = %lu\n", lh->num_hash_comps);
94 fprintf(out, "p = %u\n", lh->p);
95 fprintf(out, "pmax = %u\n", lh->pmax);
96 fprintf(out, "up_load = %lu\n", lh->up_load);
97 fprintf(out, "down_load = %lu\n", lh->down_load);
101 void lh_node_stats(LHASH *lh, FILE *out)
109 fprintf(out, "node %6u -> %3u\n", i, num);
113 void lh_node_usage_stats(LHASH *lh, FILE *out)
128 fprintf(out, "%lu nodes used out of %u\n", n_used, lh->num_nodes);
129 fprintf(out, "%lu items\n", total);
132 fprintf(out, "load %d.%02d actual load %d.%02d\n",
182 void lh_stats_bio(const LHASH *lh, BIO *out)
184 BIO_printf(out, "num_items = %lu\n", lh->num_items);
185 BIO_printf(out, "num_nodes = %u\n", lh->num_nodes);
186 BIO_printf(out, "num_alloc_nodes = %u\n", lh->num_alloc_nodes);
187 BIO_printf(out, "num_expands = %lu\n", lh->num_expands);
188 BIO_printf(out, "num_expand_reallocs = %lu\n", lh->num_expand_reallocs);
189 BIO_printf(out, "num_contracts = %lu\n", lh->num_contracts);
190 BIO_printf(out, "num_contract_reallocs = %lu\n",
192 BIO_printf(out, "num_hash_calls = %lu\n", lh->num_hash_calls);
193 BIO_printf(out, "num_comp_calls = %lu\n", lh->num_comp_calls);
194 BIO_printf(out, "num_insert = %lu\n", lh->num_insert);
195 BIO_printf(out, "num_replace = %lu\n", lh->num_replace);
196 BIO_printf(out, "num_delete = %lu\n", lh->num_delete);
197 BIO_printf(out, "num_no_delete = %lu\n", lh->num_no_delete);
198 BIO_printf(out, "num_retrieve = %lu\n", lh->num_retrieve);
199 BIO_printf(out, "num_retrieve_miss = %lu\n", lh->num_retrieve_miss);
200 BIO_printf(out, "num_hash_comps = %lu\n", lh->num_hash_comps);
202 BIO_printf(out, "p = %u\n", lh->p);
203 BIO_printf(out, "pmax = %u\n", lh->pmax);
204 BIO_printf(out, "up_load = %lu\n", lh->up_load);
205 BIO_printf(out, "down_load = %lu\n", lh->down_load);
209 void lh_node_stats_bio(const LHASH *lh, BIO *out)
217 BIO_printf(out, "node %6u -> %3u\n", i, num);
221 void lh_node_usage_stats_bio(const LHASH *lh, BIO *out)
236 BIO_printf(out, "%lu nodes used out of %u\n", n_used, lh->num_nodes);
237 BIO_printf(out, "%lu items\n", total);
240 BIO_printf(out, "load %d.%02d actual load %d.%02d\n",