Home
last modified time | relevance | path

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

/xnu-11417.121.6/bsd/net/
H A Dtrie_utility.h87 boolean_t net_trie_init(struct net_trie *new_trie, size_t prefix_count, size_t leaf_count, size_t b…
H A Dtrie_utility.c110 net_trie_init(struct net_trie *new_trie, size_t prefix_count, size_t leaf_count, size_t bytes_count) in net_trie_init() argument
130 if (new_trie == NULL || prefix_count <= 0 || leaf_count <= 0 || bytes_count <= 0) { in net_trie_init()
135 if (os_add3_overflow(prefix_count, leaf_count, 1, &nodes_count)) { /* + 1 for the root node */ in net_trie_init()