Home
last modified time | relevance | path

Searched refs:num_nodes (Results 1 – 3 of 3) sorted by relevance

/openssl-master/crypto/lhash/
A Dlh_stats.c65 BIO_printf(out, "num_nodes = %u\n", lh->num_nodes); in OPENSSL_LH_stats_bio()
87 for (i = 0; i < lh->num_nodes; i++) { in OPENSSL_LH_node_stats_bio()
101 for (i = 0; i < lh->num_nodes; i++) { in OPENSSL_LH_node_usage_stats_bio()
109 BIO_printf(out, "%lu nodes used out of %u\n", n_used, lh->num_nodes); in OPENSSL_LH_node_usage_stats_bio()
114 (int)(total / lh->num_nodes), in OPENSSL_LH_node_usage_stats_bio()
115 (int)((total % lh->num_nodes) * 100 / lh->num_nodes), in OPENSSL_LH_node_usage_stats_bio()
A Dlhash.c63 ret->num_nodes = MIN_NODES / 2; in OPENSSL_LH_new()
94 for (i = 0; i < lh->num_nodes; i++) { in OPENSSL_LH_flush()
112 if ((lh->up_load <= (lh->num_items * LH_LOAD_MULT / lh->num_nodes)) && !expand(lh)) in OPENSSL_LH_insert()
158 if ((lh->num_nodes > MIN_NODES) && in OPENSSL_LH_delete()
159 (lh->down_load >= (lh->num_items * LH_LOAD_MULT / lh->num_nodes))) in OPENSSL_LH_delete()
200 for (i = lh->num_nodes - 1; i >= 0; i--) { in doall_util_fn()
249 lh->num_nodes++; in expand()
291 lh->num_nodes--; in contract()
A Dlhash_local.h23 unsigned int num_nodes; member

Completed in 6 milliseconds