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.c32 int num_alloc; member
67 ret->num_alloc = 0; in OPENSSL_sk_dup()
72 ret->data = OPENSSL_malloc(sizeof(*ret->data) * sk->num_alloc); in OPENSSL_sk_dup()
105 ret->num_alloc = 0; in OPENSSL_sk_deep_copy()
109 ret->num_alloc = sk->num > min_nodes ? sk->num : min_nodes; in OPENSSL_sk_deep_copy()
110 ret->data = OPENSSL_zalloc(sizeof(*ret->data) * ret->num_alloc); in OPENSSL_sk_deep_copy()
181 int num_alloc; in sk_reserve() local
190 num_alloc = st->num + n; in sk_reserve()
191 if (num_alloc < min_nodes) in sk_reserve()
192 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.h323 unsigned int num_alloc; /* Allocated size of the array */ member
H A Drtld.c1044 _dlp->num_alloc = obj_count, \
1046 if (_dlp->num_alloc > DLP_ALLOCA_LIMIT) { \
1047 _dlp->objs = xcalloc(_dlp->num_alloc, sizeof(_dlp->objs[0])); \
1053 _dlp->objs = alloca(_dlp->num_alloc * sizeof(_dlp->objs[0])); \
1061 if (dlp->num_alloc > DLP_ALLOCA_LIMIT) in donelist_free()
1869 if (dlp->num_used < dlp->num_alloc) in donelist_check()
/freebsd/sys/contrib/dev/iwlwifi/pcie/gen1_2/
H A Drx.c1085 int i, err, queue_size, allocator_pool_size, num_alloc; in _iwl_pcie_rx_init() local
1148 num_alloc = queue_size + allocator_pool_size; in _iwl_pcie_rx_init()
1150 for (i = 0; i < num_alloc; i++) { in _iwl_pcie_rx_init()