Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/stack/
H A Dstack.c28 int num_alloc; member
63 ret->num_alloc = 0; in OPENSSL_sk_dup()
68 ret->data = OPENSSL_malloc(sizeof(*ret->data) * sk->num_alloc); in OPENSSL_sk_dup()
102 ret->num_alloc = 0; in OPENSSL_sk_deep_copy()
106 ret->num_alloc = sk->num > min_nodes ? sk->num : min_nodes; in OPENSSL_sk_deep_copy()
107 ret->data = OPENSSL_zalloc(sizeof(*ret->data) * ret->num_alloc); in OPENSSL_sk_deep_copy()
176 int num_alloc; in sk_reserve() local
185 num_alloc = st->num + n; in sk_reserve()
186 if (num_alloc < min_nodes) in sk_reserve()
187 num_alloc = min_nodes; in sk_reserve()
[all …]
/freebsd/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dd_typefun.c10 int num_alloc; member
/freebsd/libexec/rtld-elf/
H A Drtld.h321 unsigned int num_alloc; /* Allocated size of the array */ member
H A Drtld.c324 assert((dlp)->objs != NULL), (dlp)->num_alloc = obj_count, \
1810 if (dlp->num_used < dlp->num_alloc) in donelist_check()
/freebsd/sys/contrib/dev/iwlwifi/pcie/
H A Drx.c1092 int i, err, queue_size, allocator_pool_size, num_alloc;
1155 num_alloc = queue_size + allocator_pool_size;
1157 for (i = 0; i < num_alloc; i++) {