Home
last modified time | relevance | path

Searched refs:left_height (Results 1 – 25 of 141) sorted by relevance

123456

/dports/devel/gnulib/gnulib-20140202-stable/lib/
H A Dgl_avltree_list.c43 unsigned int left_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.c68 unsigned int left_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.c544 unsigned int left_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.c45 unsigned int left_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.c67 unsigned int left_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.h555 unsigned int left_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);
137 $left_height = $self->getLeft->height() if $self->hasLeft();
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.c90 short left_height = mycore_utils_avl_tree_node_height(node->left); 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()
139 short left_height = mycore_utils_avl_tree_node_height(node->left); 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/devel/efl/efl-1.25.1/src/tests/eina/
H A Deina_test_rbtree.c219 int left_height; in _eina_rbtree_black_height() local
232 left_height = _eina_rbtree_black_height(left, 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()
254 return _eina_rbtree_is_red(tree) ? left_height : left_height + 1; in _eina_rbtree_black_height()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/pdf/browser/
H A Dpdf_web_contents_helper_browsertest.cc88 int32_t left_height, in SelectionChanged() argument
91 pdf_web_contents_helper()->SelectionChanged(left, left_height, right, in SelectionChanged()
138 int32_t left_height = 2; in IN_PROC_BROWSER_TEST_F() local
140 SelectionChanged(left, left_height, right, right_height); in IN_PROC_BROWSER_TEST_F()
152 left.y() + origin_f.y() + left_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.cc87 int32_t left_height, in SelectionChanged() argument
90 pdf_web_contents_helper()->SelectionChanged(left, left_height, right, in SelectionChanged()
137 int32_t left_height = 2; in IN_PROC_BROWSER_TEST_F() local
139 SelectionChanged(left, left_height, right, right_height); in IN_PROC_BROWSER_TEST_F()
151 left.y() + origin_f.y() + left_height); in IN_PROC_BROWSER_TEST_F()
/dports/games/valyriatear/ValyriaTear-1.1.0/src/common/gui/
H A Dmenu_window.cpp159 float left_height = _skin->borders[1][0].GetHeight(); in _RecreateImage() local
180 float num_y_tiles = _inner_height / left_height; in _RecreateImage()
259 float max_y = bottom_border_size + inum_y_tiles * left_height; in _RecreateImage()
347 … _menu_image.AddImage(_skin->borders[1][0], 0.0f, bottom_border_size + left_height * tile_y); in _RecreateImage()
349 … _menu_image.AddImage(_skin->borders[1][1], 0.0f, bottom_border_size + left_height * tile_y); in _RecreateImage()
352 … _menu_image.AddImage(_skin->borders[1][2], max_x, bottom_border_size + left_height * tile_y); in _RecreateImage()
354 … _menu_image.AddImage(_skin->borders[1][1], max_x, bottom_border_size + left_height * tile_y); in _RecreateImage()
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/ext/zix/zix/
H A Dtree_debug.h90 const intptr_t left_height = (intptr_t)height(n->left); 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);
249 $left_height = $self->{_left}->height() if $self->hasLeft();
251 return 1 + (($left_height > $right_height) ? $left_height : $right_height);
/dports/math/py-networkx/networkx-2.6.3/networkx/generators/
H A Dnonisomorphic_trees.py103 left_height = max(left)
105 valid = rest_height >= left_height
107 if valid and rest_height == left_height:
/dports/graphics/plotutils/plotutils-2.6/libxmi/
H A Dmi_widelin.h79 #define MIPOLYRELOADLEFT if (!left_height && left_count) { \
80 left_height = left->height; \
/dports/games/allacrost/allacrost-1.0.2/src/common/gui/
H A Dmenu_window.cpp347 float left_height = _skin->borders[1][0].GetHeight(); in _RecreateImage() local
368 float num_y_tiles = _inner_height / left_height; in _RecreateImage()
449 float max_y = bottom_border_size + inum_y_tiles * left_height; in _RecreateImage()
541 _menu_image.AddImage(_skin->borders[1][0], 0.0f, bottom_border_size + left_height * tile_y); in _RecreateImage()
543 _menu_image.AddImage(_skin->borders[1][1], 0.0f, bottom_border_size + left_height * tile_y); in _RecreateImage()
546 _menu_image.AddImage(_skin->borders[1][2], max_x, bottom_border_size + left_height * tile_y); in _RecreateImage()
548 _menu_image.AddImage(_skin->borders[1][1], max_x, bottom_border_size + left_height * tile_y); in _RecreateImage()
/dports/devel/raknet/raknet-3.9.2_10,1/Source/
H A DDS_BinarySearchTree.h162 int left_height, right_height; in BalanceTree() local
167 left_height = 0; in BalanceTree()
169 left_height = this->Height( current->left ); 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
400 left_height = 1 + HeightRecursive( current->left ); in HeightRecursive()
405 if ( left_height > right_height ) in HeightRecursive()
406 return left_height; in HeightRecursive()
/dports/print/lilypond-devel/lilypond-2.23.5/lily/
H A Dvaticana-ligature.cc109 Real left_height in vaticana_brew_flexa() local
133 Real curve_thickness = 0.33 * ((3 - i) * left_height + i * right_height); in vaticana_brew_flexa()
167 Interval (-0.5 * left_height, +0.5 * left_height)); in vaticana_brew_flexa()
/dports/print/lilypond/lilypond-2.22.1/lily/
H A Dvaticana-ligature.cc109 Real left_height in vaticana_brew_flexa() local
133 Real curve_thickness = 0.33 * ((3 - i) * left_height + i * right_height); in vaticana_brew_flexa()
167 Interval (-0.5 * left_height, +0.5 * left_height)); in vaticana_brew_flexa()
/dports/devel/gaul/gaul-devel-0.1849-0/util/
H A Davltree.c597 int left_height; in avltree_node_height() local
603 left_height = avltree_node_height(node->left); in avltree_node_height()
605 left_height = 0; in avltree_node_height()
612 return MAX(left_height, right_height) + 1; in avltree_node_height()
684 int left_height; in avltree_node_check() local
691 left_height = avltree_node_height(node->left); in avltree_node_check()
693 left_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.h555 unsigned int left_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.h104 #define MIPOLYRELOADLEFT if (!left_height && left_count) { \
105 left_height = left->height; \
/dports/devel/glib20/glib-2.70.4/glib/
H A Dgtree.c1703 gint left_height; in g_tree_node_height() local
1708 left_height = 0; in g_tree_node_height()
1712 left_height = g_tree_node_height (node->left); in g_tree_node_height()
1717 return MAX (left_height, right_height) + 1; in g_tree_node_height()
1726 gint left_height; in g_tree_node_check() local
1745 left_height = 0; in g_tree_node_check()
1749 left_height = g_tree_node_height (node->left); 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 Dleft.h2 #define left_height 11 macro

123456