Home
last modified time | relevance | path

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

/freebsd-12.1/crypto/openssl/crypto/stack/
H A Dstack.c30 int num_alloc; member
60 ret->num_alloc = 0; in OPENSSL_sk_dup()
91 ret->num_alloc = 0; in OPENSSL_sk_deep_copy()
163 int num_alloc; in sk_reserve() local
170 num_alloc = st->num + n; in sk_reserve()
184 st->num_alloc = num_alloc; in sk_reserve()
189 if (num_alloc <= st->num_alloc) in sk_reserve()
191 num_alloc = compute_growth(num_alloc, st->num_alloc); in sk_reserve()
192 if (num_alloc == 0) in sk_reserve()
194 } else if (num_alloc == st->num_alloc) { in sk_reserve()
[all …]
/freebsd-12.1/contrib/serf/buckets/
H A Dallocator.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-12.1/contrib/netbsd-tests/usr.bin/xlint/lint1/
H A Dd_typefun.c10 int num_alloc; member
/freebsd-12.1/libexec/rtld-elf/
H A Drtld.h326 unsigned int num_alloc; /* Allocated size of the array */ member
H A Drtld.c309 (dlp)->num_alloc = obj_count, \
1548 if (dlp->num_used < dlp->num_alloc) in donelist_check()