Searched refs:MIN_NODES (Results 1 - 6 of 6) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/lhash/
H A Dlhash.c105 #undef MIN_NODES macro
106 #define MIN_NODES 16 macro
121 if ((ret->b=(LHASH_NODE **)OPENSSL_malloc(sizeof(LHASH_NODE *)*MIN_NODES)) == NULL)
123 for (i=0; i<MIN_NODES; i++)
127 ret->num_nodes=MIN_NODES/2;
128 ret->num_alloc_nodes=MIN_NODES;
130 ret->pmax=MIN_NODES/2;
241 if ((lh->num_nodes > MIN_NODES) &&
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/lhash/
H A Dlhash.c106 #undef MIN_NODES macro
107 #define MIN_NODES 16 macro
122 if ((ret->b = OPENSSL_malloc(sizeof(LHASH_NODE *) * MIN_NODES)) == NULL)
124 for (i = 0; i < MIN_NODES; i++)
128 ret->num_nodes = MIN_NODES / 2;
129 ret->num_alloc_nodes = MIN_NODES;
131 ret->pmax = MIN_NODES / 2;
234 if ((lh->num_nodes > MIN_NODES) &&
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/lhash/
H A Dlhash.c106 #undef MIN_NODES macro
107 #define MIN_NODES 16 macro
122 if ((ret->b = OPENSSL_malloc(sizeof(LHASH_NODE *) * MIN_NODES)) == NULL)
124 for (i = 0; i < MIN_NODES; i++)
128 ret->num_nodes = MIN_NODES / 2;
129 ret->num_alloc_nodes = MIN_NODES;
131 ret->pmax = MIN_NODES / 2;
234 if ((lh->num_nodes > MIN_NODES) &&
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/stack/
H A Dstack.c74 #undef MIN_NODES macro
75 #define MIN_NODES 4 macro
129 ret->num_alloc = sk->num > MIN_NODES ? sk->num : MIN_NODES;
164 if ((ret->data = OPENSSL_malloc(sizeof(char *) * MIN_NODES)) == NULL)
166 for (i = 0; i < MIN_NODES; i++)
169 ret->num_alloc = MIN_NODES;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/stack/
H A Dstack.c74 #undef MIN_NODES macro
75 #define MIN_NODES 4 macro
129 ret->num_alloc = sk->num > MIN_NODES ? sk->num : MIN_NODES;
164 if ((ret->data = OPENSSL_malloc(sizeof(char *) * MIN_NODES)) == NULL)
166 for (i = 0; i < MIN_NODES; i++)
169 ret->num_alloc = MIN_NODES;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/stack/
H A Dstack.c73 #undef MIN_NODES macro
74 #define MIN_NODES 4 macro
127 if ((ret->data=(char **)OPENSSL_malloc(sizeof(char *)*MIN_NODES)) == NULL)
129 for (i=0; i<MIN_NODES; i++)
132 ret->num_alloc=MIN_NODES;

Completed in 77 milliseconds