Lines Matching refs:gfc_bbt
47 gfc_bbt; typedef
65 static gfc_bbt *
66 rotate_left (gfc_bbt *t) in rotate_left()
68 gfc_bbt *temp; in rotate_left()
80 static gfc_bbt *
81 rotate_right (gfc_bbt *t) in rotate_right()
83 gfc_bbt *temp; in rotate_right()
96 static gfc_bbt *
97 insert (gfc_bbt *new_bbt, gfc_bbt *t, compare_fn compare) in insert()
132 gfc_bbt **r, *n; in gfc_insert_bbt()
134 r = (gfc_bbt **) root; in gfc_insert_bbt()
135 n = (gfc_bbt *) new_node; in gfc_insert_bbt()
140 static gfc_bbt *
141 delete_root (gfc_bbt *t) in delete_root()
143 gfc_bbt *temp; in delete_root()
170 static gfc_bbt *
171 delete_treap (gfc_bbt *old, gfc_bbt *t, compare_fn compare) in delete_treap()
194 gfc_bbt **t; in gfc_delete_bbt()
196 t = (gfc_bbt **) root; in gfc_delete_bbt()
197 *t = delete_treap ((gfc_bbt *) old, *t, compare); in gfc_delete_bbt()