Home
last modified time | relevance | path

Searched refs:right_height (Results 1 – 25 of 132) sorted by relevance

123456

/dports/devel/gnulib/gnulib-20140202-stable/lib/
H A Dgl_avltree_list.c45 unsigned int right_height = in check_invariants() local
47 int balance = (int)right_height - (int)left_height; in check_invariants()
60 return 1 + (left_height > right_height ? left_height : right_height); in check_invariants()
H A Dgl_avltreehash_list.c70 unsigned int right_height = in check_invariants() local
72 int balance = (int)right_height - (int)left_height; in check_invariants()
85 return 1 + (left_height > right_height ? left_height : right_height); in check_invariants()
H A Dgl_avltree_oset.c546 unsigned int right_height =
548 int balance = (int)right_height - (int)left_height;
559 return 1 + (left_height > right_height ? left_height : right_height);
/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/.gnulib/lib/
H A Dgl_avltree_list.c47 unsigned int right_height =
49 int balance = (int)right_height - (int)left_height;
62 return 1 + (left_height > right_height ? left_height : right_height);
H A Dgl_avltreehash_list.c69 unsigned int right_height = in check_invariants() local
71 int balance = (int)right_height - (int)left_height; in check_invariants()
84 return 1 + (left_height > right_height ? left_height : right_height); in check_invariants()
H A Dgl_avltree_ordered.h557 unsigned int right_height = in check_invariants() local
559 int balance = (int)right_height - (int)left_height; in check_invariants()
570 return 1 + (left_height > right_height ? left_height : right_height); in check_invariants()
/dports/devel/p5-Moose/Moose-2.2201/t/cmop/lib/
H A DBinaryTree.pm136 my ($left_height, $right_height) = (0, 0);
138 $right_height = $self->getRight->height() if $self->hasRight();
139 return 1 + (($left_height > $right_height) ? $left_height : $right_height);
/dports/www/p5-HTML5-DOM/HTML5-DOM-1.25/third_party/modest/source/mycore/utils/
H A Davl_tree.c91 short right_height = mycore_utils_avl_tree_node_height(node->right); in mycore_utils_avl_tree_node_set_height() local
93 node->height = (left_height > right_height ? left_height : right_height) + 1; in mycore_utils_avl_tree_node_set_height()
140 short right_height = mycore_utils_avl_tree_node_height(node->right); in mycore_utils_avl_tree_node_balance() local
142 node->height = (left_height > right_height ? left_height : right_height) + 1; in mycore_utils_avl_tree_node_balance()
145 switch ((right_height - left_height)) in mycore_utils_avl_tree_node_balance()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/pdf/browser/
H A Dpdf_web_contents_helper_browsertest.cc90 int32_t right_height) { in SelectionChanged() argument
92 right_height); in SelectionChanged()
139 int32_t right_height = 2; in IN_PROC_BROWSER_TEST_F() local
140 SelectionChanged(left, left_height, right, right_height); in IN_PROC_BROWSER_TEST_F()
159 right.y() + origin_f.y() + right_height); in IN_PROC_BROWSER_TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/pdf/browser/
H A Dpdf_web_contents_helper_browsertest.cc89 int32_t right_height) { in SelectionChanged() argument
91 right_height); in SelectionChanged()
138 int32_t right_height = 2; in IN_PROC_BROWSER_TEST_F() local
139 SelectionChanged(left, left_height, right, right_height); in IN_PROC_BROWSER_TEST_F()
158 right.y() + origin_f.y() + right_height); in IN_PROC_BROWSER_TEST_F()
/dports/print/lilypond-devel/lilypond-2.23.5/lily/
H A Dvaticana-ligature.cc87 Real right_height = 0.6 * staff_space; in vaticana_brew_flexa() local
110 = right_height in vaticana_brew_flexa()
133 Real curve_thickness = 0.33 * ((3 - i) * left_height + i * right_height); in vaticana_brew_flexa()
172 Interval (-0.5 * right_height, +0.5 * right_height)); in vaticana_brew_flexa()
/dports/print/lilypond/lilypond-2.22.1/lily/
H A Dvaticana-ligature.cc87 Real right_height = 0.6 * staff_space; in vaticana_brew_flexa() local
110 = right_height in vaticana_brew_flexa()
133 Real curve_thickness = 0.33 * ((3 - i) * left_height + i * right_height); in vaticana_brew_flexa()
172 Interval (-0.5 * right_height, +0.5 * right_height)); in vaticana_brew_flexa()
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/ext/zix/zix/
H A Dtree_debug.h91 const intptr_t right_height = (intptr_t)height(n->right); in verify_balance() local
92 if (n->balance != right_height - left_height) { in verify_balance()
95 (intptr_t)n->data, right_height, left_height, n->balance); in verify_balance()
/dports/devel/p5-Tree-Binary/Tree-Binary-1.08/lib/Tree/
H A DBinary.pm248 my ($left_height, $right_height) = (0, 0);
250 $right_height = $self->{_right}->height() if $self->hasRight();
251 return 1 + (($left_height > $right_height) ? $left_height : $right_height);
/dports/devel/efl/efl-1.25.1/src/tests/eina/
H A Deina_test_rbtree.c220 int right_height; in _eina_rbtree_black_height() local
233 right_height = _eina_rbtree_black_height(right, cmp); in _eina_rbtree_black_height()
249 if (left_height != right_height) in _eina_rbtree_black_height()
250 fprintf(stderr, "%i != %i\n", left_height, right_height); in _eina_rbtree_black_height()
252 fail_if(left_height != right_height); in _eina_rbtree_black_height()
/dports/graphics/plotutils/plotutils-2.6/libxmi/
H A Dmi_widelin.h92 #define MIPOLYRELOADRIGHT if (!right_height && right_count) { \
93 right_height = right->height; \
/dports/devel/raknet/raknet-3.9.2_10,1/Source/
H A DDS_BinarySearchTree.h162 int left_height, right_height; in BalanceTree() local
172 right_height = 0; in BalanceTree()
174 right_height = this->Height( current->right ); in BalanceTree()
176 if ( right_height - left_height == 2 ) in BalanceTree()
188 if ( right_height - left_height == -2 ) in BalanceTree()
394 unsigned int left_height = 0, right_height = 0; in HeightRecursive() local
403 right_height = 1 + HeightRecursive( current->right ); in HeightRecursive()
405 if ( left_height > right_height ) in HeightRecursive()
408 return right_height; in HeightRecursive()
/dports/devel/gaul/gaul-devel-0.1849-0/util/
H A Davltree.c598 int right_height; in avltree_node_height() local
608 right_height = avltree_node_height(node->right); in avltree_node_height()
610 right_height = 0; in avltree_node_height()
612 return MAX(left_height, right_height) + 1; in avltree_node_height()
685 int right_height; in avltree_node_check() local
696 right_height = avltree_node_height(node->right); in avltree_node_check()
698 right_height = 0; in avltree_node_check()
700 balance = right_height - left_height; in avltree_node_check()
/dports/devel/m4/m4-1.4.19/lib/
H A Dgl_avltree_ordered.h557 unsigned int right_height = in check_invariants() local
559 int balance = (int)right_height - (int)left_height; in check_invariants()
570 return 1 + (left_height > right_height ? left_height : right_height); in check_invariants()
/dports/net/tightvnc/vnc_unixsrc/Xvnc/programs/Xserver/mi/
H A Dmiwideline.h116 #define MIPOLYRELOADRIGHT if (!right_height && right_count) { \
117 right_height = right->height; \
/dports/devel/glib20/glib-2.70.4/glib/
H A Dgtree.c1704 gint right_height; in g_tree_node_height() local
1709 right_height = 0; in g_tree_node_height()
1715 right_height = g_tree_node_height (node->right); in g_tree_node_height()
1717 return MAX (left_height, right_height) + 1; in g_tree_node_height()
1727 gint right_height; in g_tree_node_check() local
1746 right_height = 0; in g_tree_node_check()
1751 right_height = g_tree_node_height (node->right); in g_tree_node_check()
1753 balance = right_height - left_height; in g_tree_node_check()
/dports/emulators/x48/x48-0.6.4_1/src/bitmaps/
H A Dright.h2 #define right_height 11 macro
/dports/x11-fm/filerunner/filerunner/bitmaps/
H A Dsmall-right.bit2 #define right_height 11
/dports/math/grace/grace-5.1.25/src/
H A Dbitmaps.h161 #define right_height 16 macro
/dports/x11-wm/blackbox/blackbox-0.70.1/lib/
H A DBitmap.cc41 static const int right_height = 9; variable
188 bitmap.load(screen, right_bits, right_width, right_height); in rightArrow()

123456