Lines Matching refs:oldtnode
714 struct tnode *oldtnode = tn; in inflate() local
720 tn = tnode_new(oldtnode->key, oldtnode->pos, oldtnode->bits + 1); in inflate()
735 inode = (struct tnode *) tnode_get_child(oldtnode, i); in inflate()
738 inode->pos == oldtnode->pos + oldtnode->bits && in inflate()
763 struct rt_trie_node *node = tnode_get_child(oldtnode, i); in inflate()
776 oldtnode->pos + oldtnode->bits, in inflate()
838 tnode_free_safe(oldtnode); in inflate()
847 struct tnode *oldtnode = tn; in halve() local
854 tn = tnode_new(oldtnode->key, oldtnode->pos, oldtnode->bits - 1); in halve()
867 left = tnode_get_child(oldtnode, i); in halve()
868 right = tnode_get_child(oldtnode, i+1); in halve()
887 left = tnode_get_child(oldtnode, i); in halve()
888 right = tnode_get_child(oldtnode, i+1); in halve()
910 tnode_free_safe(oldtnode); in halve()