HomeSort by: relevance | last modified time | path
    Searched refs:max_nodes (Results 1 - 4 of 4) sorted by relevancy

  /src/crypto/external/bsd/openssl.old/dist/crypto/stack/
stack.c 22 static const int max_nodes = SIZE_MAX / sizeof(void *) < INT_MAX variable
146 const int limit = (max_nodes / 3) * 2 + (max_nodes % 3 ? 1 : 0);
150 if (current >= max_nodes)
154 current = current < limit ? current + current / 2 : max_nodes;
166 if (n > max_nodes - st->num)
239 if (st == NULL || st->num == max_nodes)
  /src/crypto/external/bsd/openssl/dist/crypto/stack/
stack.c 21 static const int max_nodes = SIZE_MAX / sizeof(void *) < INT_MAX variable
159 const int limit = (max_nodes / 3) * 2 + (max_nodes % 3 ? 1 : 0);
163 if (current >= max_nodes)
167 current = current < limit ? current + current / 2 : max_nodes;
179 if (n > max_nodes - st->num) {
266 if (st->num == max_nodes) {
  /src/crypto/external/apache2/openssl/dist/crypto/stack/
stack.c 24 static const int max_nodes = SIZE_MAX / sizeof(void *) < INT_MAX variable
165 if (current >= max_nodes)
171 if (current >= max_nodes)
172 current = max_nodes;
184 if (n > max_nodes - st->num) {
265 if (st->num == max_nodes) {
  /src/crypto/external/apache2/openssl/dist/ssl/
priority_queue.c 62 static const size_t max_nodes = SIZE_MAX / (sizeof(struct pq_heap_st) > sizeof(struct pq_elem_st) ? sizeof(struct pq_heap_st) : sizeof(struct pq_elem_st)); variable
91 if (current >= max_nodes)
97 if (current >= max_nodes)
98 current = max_nodes;

Completed in 14 milliseconds