Home
last modified time | relevance | path

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

/freebsd-13-stable/crypto/openssl/crypto/stack/
HDstack.c30 int num_alloc; member
60 ret->num_alloc = 0; in OPENSSL_sk_dup()
64 if ((ret->data = OPENSSL_malloc(sizeof(*ret->data) * sk->num_alloc)) == NULL) in OPENSSL_sk_dup()
91 ret->num_alloc = 0; in OPENSSL_sk_deep_copy()
95 ret->num_alloc = sk->num > min_nodes ? sk->num : min_nodes; in OPENSSL_sk_deep_copy()
96 ret->data = OPENSSL_zalloc(sizeof(*ret->data) * ret->num_alloc); in OPENSSL_sk_deep_copy()
163 int num_alloc; in sk_reserve() local
170 num_alloc = st->num + n; in sk_reserve()
171 if (num_alloc < min_nodes) in sk_reserve()
172 num_alloc = min_nodes; in sk_reserve()
[all …]
/freebsd-13-stable/contrib/serf/buckets/
HDallocator.c96 apr_uint32_t num_alloc; member
177 ++allocator->num_alloc; in serf_bucket_mem_alloc()
252 --allocator->num_alloc; in serf_bucket_mem_free()
434 if (allocator->num_alloc != 0) { in serf_debug__bucket_alloc_check()
/freebsd-13-stable/contrib/netbsd-tests/usr.bin/xlint/lint1/
HDd_typefun.c10 int num_alloc; member
/freebsd-13-stable/libexec/rtld-elf/
HDrtld.h337 unsigned int num_alloc; /* Allocated size of the array */ member
HDrtld.c320 (dlp)->num_alloc = obj_count, \
1844 if (dlp->num_used < dlp->num_alloc) in donelist_check()
/freebsd-13-stable/sys/contrib/dev/iwlwifi/pcie/
HDrx.c1087 int i, err, queue_size, allocator_pool_size, num_alloc;
1150 num_alloc = queue_size + allocator_pool_size;
1152 for (i = 0; i < num_alloc; i++) {