Searched refs:rotate_left (Results 1 – 9 of 9) sorted by relevance
/openbsd/gnu/lib/libiberty/src/ |
H A D | splay-tree.c | 41 static inline void rotate_left (splay_tree_node *, 113 rotate_left (splay_tree_node *pp, splay_tree_node p, splay_tree_node n) in rotate_left() function 170 rotate_left (&sp->root, n, c); in splay_tree_splay() 179 rotate_left (&n->left, c, c->left); in splay_tree_splay() 180 rotate_left (&sp->root, n, n->left); in splay_tree_splay() 190 rotate_left (&sp->root, n, n->left); in splay_tree_splay() 194 rotate_left (&n->right, c, c->left); in splay_tree_splay()
|
H A D | ChangeLog | 110 * splay-tree.c (rotate_left): New function.
|
/openbsd/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/rb_tree_map_/ |
H A D | insert_fn_imps.hpp | 88 base_type::rotate_left(p_nd); in insert_fixup() 114 base_type::rotate_left(p_nd->m_p_parent->m_p_parent); in insert_fixup()
|
H A D | erase_fn_imps.hpp | 217 base_type::rotate_left(p_new_x_parent); in remove_fixup() 246 base_type::rotate_left(p_new_x_parent); in remove_fixup() 277 base_type::rotate_left(p_w); in remove_fixup()
|
/openbsd/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/ |
H A D | rotate_fn_imps.hpp | 50 rotate_left(node_pointer p_x) in rotate_left() function in PB_DS_CLASS_C_DEC 119 rotate_left(p_parent); in rotate_parent()
|
H A D | bin_search_tree_.hpp | 373 rotate_left(node_pointer p_x);
|
/openbsd/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/ |
H A D | rotate_fn_imps.hpp | 50 rotate_left(node_pointer p_x) in rotate_left() function in PB_DS_CLASS_C_DEC 114 rotate_left(p_parent); in rotate_parent()
|
/openbsd/gnu/usr.bin/binutils/gas/config/ |
H A D | tc-arm.c | 2766 #define rotate_left(v, n) (v << n | v >> (32 - n)) macro 2769 if ((a = rotate_left (val, i)) <= 0xff) 2788 if (((a = rotate_left (val, i)) & 0xff) != 0)
|
/openbsd/gnu/usr.bin/binutils-2.17/gas/config/ |
H A D | tc-arm.c | 4269 #define rotate_left(v, n) (v << (n % 32) | v >> ((32 - n) % 32)) macro 4280 if ((a = rotate_left (val, i)) <= 0xff) in encode_arm_immediate() 11408 if (((a = rotate_left (val, i)) & 0xff) != 0) in validate_immediate_twopart()
|