Home
last modified time | relevance | path

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

/dflybsd-src/crypto/libressl/crypto/lhash/
H A Dlhash.c129 ret->num_alloc_nodes = MIN_NODES; in lh_new()
298 nni = lh->num_alloc_nodes; in expand()
317 j = (int)lh->num_alloc_nodes * 2; in expand()
326 for (i = (int)lh->num_alloc_nodes; i < j; i++)/* 26/02/92 eay */ in expand()
328 lh->pmax = lh->num_alloc_nodes; in expand()
329 lh->num_alloc_nodes = j; in expand()
351 lh->num_alloc_nodes /= 2; in contract()
383 nn = hash % lh->num_alloc_nodes; in getrn()
H A Dlh_stats.c77 fprintf(out, "num_alloc_nodes = %u\n", lh->num_alloc_nodes); in lh_stats()
190 BIO_printf(out, "num_alloc_nodes = %u\n", lh->num_alloc_nodes); in lh_stats_bio()
/dflybsd-src/crypto/libressl/include/openssl/
H A Dlhash.h141 unsigned int num_alloc_nodes; member