Lines Matching refs:tlpm_node
30 struct tlpm_node { struct
31 struct tlpm_node *next; argument
36 static struct tlpm_node *tlpm_match(struct tlpm_node *list, argument
40 static struct tlpm_node *tlpm_add(struct tlpm_node *list, in tlpm_add()
44 struct tlpm_node *node; in tlpm_add()
68 static void tlpm_clear(struct tlpm_node *list) in tlpm_clear()
70 struct tlpm_node *node; in tlpm_clear()
80 static struct tlpm_node *tlpm_match(struct tlpm_node *list, in tlpm_match()
84 struct tlpm_node *best = NULL; in tlpm_match()
109 static struct tlpm_node *tlpm_delete(struct tlpm_node *list, in tlpm_delete()
113 struct tlpm_node *best = tlpm_match(list, key, n_bits); in tlpm_delete()
114 struct tlpm_node *node; in tlpm_delete()
139 struct tlpm_node *list = NULL, *t1, *t2; in test_lpm_basic()
171 struct tlpm_node *t1, *t2, *l1 = NULL, *l2 = NULL; in test_lpm_order()
213 struct tlpm_node *t, *list = NULL; in test_lpm_map()