Home
last modified time | relevance | path

Searched refs:max_ptrs (Results 1 – 2 of 2) sorted by relevance

/f-stack/dpdk/lib/librte_acl/
H A Dacl_bld.c201 node->max_ptrs * sizeof(struct rte_acl_ptr_set), in acl_free_node()
269 if (node->num_ptrs >= node->max_ptrs) { in acl_add_ptr()
271 num_ptrs = node->max_ptrs + ACL_PTR_ALLOC; in acl_add_ptr()
278 acl_build_free(context, node->max_ptrs * sizeof(*ptrs), in acl_add_ptr()
282 node->max_ptrs = num_ptrs; in acl_add_ptr()
286 for (n = node->min_add; n < node->max_ptrs; n++) { in acl_add_ptr()
398 node->max_ptrs, in acl_dup_node()
400 next->max_ptrs = node->max_ptrs; in acl_dup_node()
H A Dacl.h113 uint32_t max_ptrs; /* number of allocated ptr_set */ member