Home
last modified time | relevance | path

Searched refs:__root (Results 1 – 5 of 5) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
Dlosertree.h184 __init_winner(unsigned int __root) in __init_winner() argument
186 if (__root >= _M_k) in __init_winner()
187 return __root; in __init_winner()
190 unsigned int __left = __init_winner(2 * __root); in __init_winner()
191 unsigned int __right = __init_winner(2 * __root + 1); in __init_winner()
198 _M_losers[__root] = _M_losers[__right]; in __init_winner()
204 _M_losers[__root] = _M_losers[__left]; in __init_winner()
284 __init_winner(unsigned int __root) in __init_winner() argument
286 if (__root >= _M_k) in __init_winner()
287 return __root; in __init_winner()
[all …]
/netbsd/src/sys/external/bsd/drm2/include/linux/
Dinterval_tree_generic.h82 PREFIX##_init(struct rb_root_cached *__root) \
84 rb_tree_init(&__root->rb_root.rbr_tree, &PREFIX##__rbtree_ops); \
88 PREFIX##_insert(T *__node, struct rb_root_cached *__root) \
92 __collision = rb_tree_insert_node(&__root->rb_root.rbr_tree, __node); \
97 PREFIX##_remove(T *__node, struct rb_root_cached *__root) \
99 rb_tree_remove_node(&__root->rb_root.rbr_tree, __node); \
103 PREFIX##_iter_first(struct rb_root_cached *__root, KT __start, KT __last) \
107 __node = rb_tree_find_node_geq(&__root->rb_root.rbr_tree, &__start); \
118 PREFIX##_iter_next(struct rb_root_cached *__root, T *__node, \
124 __next = rb_tree_iterate(&__root->rb_root.rbr_tree, __node, \
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
Dlegendre_function.tcc155 _Tp __root = std::sqrt(_Tp(1) - __x) * std::sqrt(_Tp(1) + __x); in __assoc_legendre_p() local
159 __p_mm *= __phase * __fact * __root; in __assoc_legendre_p()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Dstl_tree.h891 _Link_type __root = in _GLIBCXX_VISIBILITY() local
893 _M_leftmost() = _S_minimum(__root); in _GLIBCXX_VISIBILITY()
894 _M_rightmost() = _S_maximum(__root); in _GLIBCXX_VISIBILITY()
896 return __root; in _GLIBCXX_VISIBILITY()
2565 const _Rb_tree_node_base* __root) throw (); in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
Drope1129 _Rope_iterator_base(_RopeRep* __root, std::size_t __pos)
1130 : _M_current_pos(__pos), _M_root(__root), _M_buf_ptr(0) { }
1164 _Rope_const_iterator(const _RopeRep* __root, std::size_t __pos)
1165 : _Rope_iterator_base<_CharT, _Alloc>(const_cast<_RopeRep*>(__root),