Home
last modified time | relevance | path

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

/freebsd-9-stable/crypto/openssl/crypto/lhash/
Dlhash.c131 ret->num_alloc_nodes = MIN_NODES; in lh_new()
305 nni = lh->num_alloc_nodes; in expand()
309 j = (int)lh->num_alloc_nodes * 2; in expand()
319 for (i = (int)lh->num_alloc_nodes; i < j; i++) /* 26/02/92 eay */ in expand()
321 lh->pmax = lh->num_alloc_nodes; in expand()
322 lh->num_alloc_nodes = j; in expand()
368 lh->num_alloc_nodes /= 2; in contract()
401 nn = hash % lh->num_alloc_nodes; in getrn()
Dlh_stats.c79 fprintf(out, "num_alloc_nodes = %u\n", lh->num_alloc_nodes); in lh_stats()
186 BIO_printf(out, "num_alloc_nodes = %u\n", lh->num_alloc_nodes); in lh_stats_bio()
Dlhash.h144 unsigned int num_alloc_nodes; member