Home
last modified time | relevance | path

Searched refs:num_alloc (Results 1 – 4 of 4) sorted by relevance

/dragonfly/crypto/libressl/crypto/stack/
H A Dstack.c91 s = reallocarray(ret->data, sk->num_alloc, sizeof(char *)); in sk_dup()
99 ret->num_alloc = sk->num_alloc; in sk_dup()
128 ret->num_alloc = MIN_NODES; in sk_new()
145 if (st->num_alloc <= st->num + 1) { in sk_insert()
146 s = reallocarray(st->data, st->num_alloc, 2 * sizeof(char *)); in sk_insert()
150 st->num_alloc *= 2; in sk_insert()
/dragonfly/crypto/libressl/include/openssl/
H A Dstack.h71 int num_alloc; member
/dragonfly/libexec/rtld-elf/
H A Drtld.h306 unsigned int num_alloc; /* Allocated size of the array */ member
H A Drtld.c265 (dlp)->num_alloc = obj_count, \
1480 if (dlp->num_used < dlp->num_alloc) in donelist_check()