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

/macosx-10.10/OpenSSH-189/osslshim/ossl/
H A Dossl-lhash.c127 #undef MIN_NODES macro
128 #define MIN_NODES 16 macro
145 if ((ret->b = (LHASH_NODE **)malloc(sizeof(LHASH_NODE *)*MIN_NODES)) == NULL) {
148 for (i = 0; i < MIN_NODES; i++) {
153 ret->num_nodes = MIN_NODES/2;
154 ret->num_alloc_nodes = MIN_NODES;
156 ret->pmax = MIN_NODES/2;
268 if ((lh->num_nodes > MIN_NODES) &&
/macosx-10.10/OpenSSL098-52/src/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) &&
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/lhash/
H A Dlhash.c123 #undef MIN_NODES macro
124 #define MIN_NODES 16 macro
139 if ((ret->b=(LHASH_NODE **)Malloc(sizeof(LHASH_NODE *)*MIN_NODES)) == NULL)
141 for (i=0; i<MIN_NODES; i++)
145 ret->num_nodes=MIN_NODES/2;
146 ret->num_alloc_nodes=MIN_NODES;
148 ret->pmax=MIN_NODES/2;
259 if ((lh->num_nodes > MIN_NODES) &&
/macosx-10.10/OpenSSH-189/osslshim/ossl-asn1/
H A Dcs-stack.c82 #undef MIN_NODES macro
83 #define MIN_NODES 4 macro
136 if ((ret->data=(char **)malloc(sizeof(char *)*MIN_NODES)) == NULL)
138 for (i=0; i<MIN_NODES; i++)
141 ret->num_alloc=MIN_NODES;
/macosx-10.10/OpenSSL098-52/src/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;
/macosx-10.10/Security-57031.1.35/Security/libsecurity_apple_csp/open_ssl/stack/
H A Dstack.c90 #undef MIN_NODES macro
91 #define MIN_NODES 4 macro
137 if ((ret->data=(char **)Malloc(sizeof(char *)*MIN_NODES)) == NULL)
139 for (i=0; i<MIN_NODES; i++)
142 ret->num_alloc=MIN_NODES;

Completed in 119 milliseconds