Home
last modified time | relevance | path

Searched refs:net_trie (Results 1 – 3 of 3) sorted by relevance

/xnu-11417.121.6/bsd/net/
H A Dtrie_utility.h65 struct net_trie { struct
87 boolean_t net_trie_init(struct net_trie *new_trie, size_t prefix_count, size_t leaf_count, size_t b… argument
88 boolean_t net_trie_init_with_mem(struct net_trie *new_trie, uint8_t * __sized_by(trie_memory_size) …
91 uint16_t net_trie_insert(struct net_trie *trie,
95 uint16_t net_trie_search(struct net_trie *trie,
103 void net_trie_free(struct net_trie *new_trie);
H A Dtrie_utility.c62 trie_node_alloc(struct net_trie *trie) in trie_node_alloc()
74 trie_child_map_alloc(struct net_trie *trie) in trie_child_map_alloc()
84 trie_bytes_move(struct net_trie *trie, uint16_t bytes_idx, size_t bytes_size) in trie_bytes_move()
110 net_trie_init(struct net_trie *new_trie, size_t prefix_count, size_t leaf_count, size_t bytes_count) in net_trie_init()
128 memset(new_trie, 0, sizeof(struct net_trie)); in net_trie_init()
204 net_trie_init_with_mem(struct net_trie *new_trie, uint8_t * __sized_by(trie_memory_size) memory, si… in net_trie_init_with_mem()
247 memset(new_trie, 0, sizeof(struct net_trie)); in net_trie_init_with_mem()
284 net_trie_free(struct net_trie *new_trie) in net_trie_free()
290 memset(new_trie, 0, sizeof(struct net_trie)); in net_trie_free()
294 net_trie_insert(struct net_trie *trie, in net_trie_insert()
[all …]
H A Dnecp.c316 struct net_trie trie;