OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MIN_NODES
(Results
1 - 2
of
2
) sorted by null
/external/openssl/crypto/lhash/
lhash.c
105
#undef
MIN_NODES
106
#define
MIN_NODES
16
121
if ((ret->b=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
) &&
/external/openssl/crypto/stack/
stack.c
73
#undef
MIN_NODES
74
#define
MIN_NODES
4
127
if ((ret->data=OPENSSL_malloc(sizeof(char *)*
MIN_NODES
)) == NULL)
129
for (i=0; i<
MIN_NODES
; i++)
132
ret->num_alloc=
MIN_NODES
;
Completed in 30 milliseconds