Home
last modified time | relevance | path

Searched refs:MIN_NODES (Results 1 – 2 of 2) sorted by relevance

/freebsd-9-stable/crypto/openssl/crypto/lhash/
Dlhash.c106 #undef MIN_NODES
107 #define MIN_NODES 16 macro
123 (LHASH_NODE **)OPENSSL_malloc(sizeof(LHASH_NODE *) * MIN_NODES)) == in lh_new()
126 for (i = 0; i < MIN_NODES; i++) in lh_new()
130 ret->num_nodes = MIN_NODES / 2; in lh_new()
131 ret->num_alloc_nodes = MIN_NODES; in lh_new()
133 ret->pmax = MIN_NODES / 2; in lh_new()
236 if ((lh->num_nodes > MIN_NODES) && in lh_delete()
/freebsd-9-stable/crypto/openssl/crypto/stack/
Dstack.c74 #undef MIN_NODES
75 #define MIN_NODES 4 macro
132 (char **)OPENSSL_malloc(sizeof(char *) * MIN_NODES)) == NULL) in sk_new()
134 for (i = 0; i < MIN_NODES; i++) in sk_new()
137 ret->num_alloc = MIN_NODES; in sk_new()