Searched refs:left_heavy (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.3-release/sys/cddl/contrib/opensolaris/common/avl/
H A Davl.c76 * int left_heavy; // -1 when left subtree is taller at some node,
80 * int right_heavy;// will be the opposite of left_heavy (-1 or 1)
307 int left_heavy = balance >> 1; local
308 int right_heavy = -left_heavy;
450 AVL_SETBALANCE(child, (balance == right_heavy ? left_heavy : 0));
455 AVL_SETBALANCE(node, (balance == left_heavy ? right_heavy : 0));

Completed in 53 milliseconds