Searched defs:right_subtree (Results 1 - 3 of 3) sorted by relevance

/external/valgrind/coregrind/
H A Dm_oset.c503 AvlTree right_subtree; local
504 right_subtree.root = t->root->right;
505 right_subtree.cmp = t->cmp;
506 right_subtree.keyOff = t->keyOff;
507 if (avl_insert(&right_subtree, n)) {
522 t->root->right=right_subtree.root;
691 AvlTree right_subtree; local
694 right_subtree.root = t->root->right;
695 right_subtree.cmp = t->cmp;
696 right_subtree
[all...]
H A Dm_wordfm.c220 AvlNode* right_subtree = (*rootp)->child[1]; local
221 if (avl_insert_wrk(&right_subtree, oldV, a, kCmp)) {
238 (*rootp)->child[1] = right_subtree;
311 AvlNode* right_subtree = (*rootp)->child[1]; local
312 vg_assert(right_subtree);
313 ch = avl_remove_wrk(&right_subtree, a, kCmp);
314 (*rootp)->child[1] = right_subtree;
/external/valgrind/cachegrind/
H A Dcg_merge.c1122 AvlNode* right_subtree = (*rootp)->right; local
1123 if (avl_insert_wrk(&right_subtree, oldV, a, kCmp)) {
1140 (*rootp)->right = right_subtree;
1210 AvlNode* right_subtree = (*rootp)->right; local
1211 assert(right_subtree);
1212 ch = avl_remove_wrk(&right_subtree, a, kCmp);
1213 (*rootp)->right = right_subtree;

Completed in 129 milliseconds