Lines Matching refs:tlpm_node
31 struct tlpm_node { struct
32 struct tlpm_node *next; argument
37 static struct tlpm_node *tlpm_match(struct tlpm_node *list, argument
41 static struct tlpm_node *tlpm_add(struct tlpm_node *list, in tlpm_add()
45 struct tlpm_node *node; in tlpm_add()
69 static void tlpm_clear(struct tlpm_node *list) in tlpm_clear()
71 struct tlpm_node *node; in tlpm_clear()
81 static struct tlpm_node *tlpm_match(struct tlpm_node *list, in tlpm_match()
85 struct tlpm_node *best = NULL; in tlpm_match()
110 static struct tlpm_node *tlpm_delete(struct tlpm_node *list, in tlpm_delete()
114 struct tlpm_node *best = tlpm_match(list, key, n_bits); in tlpm_delete()
115 struct tlpm_node *node; in tlpm_delete()
140 struct tlpm_node *list = NULL, *t1, *t2; in test_lpm_basic()
172 struct tlpm_node *t1, *t2, *l1 = NULL, *l2 = NULL; in test_lpm_order()
212 struct tlpm_node *t, *list = NULL; in test_lpm_map()