Home
last modified time | relevance | path

Searched refs:__left (Results 1 – 12 of 12) sorted by relevance

/trueos/contrib/libstdc++/include/ext/
Dropeimpl.h159 _RopeRep* __left = __c->_M_left; in _S_setcache() local
160 size_t __left_len = __left->_M_size; in _S_setcache()
170 __curr_rope = __left; in _S_setcache()
497 _S_tree_concat(_RopeRep* __left, _RopeRep* __right) in _S_tree_concat() argument
499 _RopeConcatenation* __result = _S_new_RopeConcatenation(__left, __right, in _S_tree_concat()
500 __left-> in _S_tree_concat()
557 _RopeRep* __left = ((_RopeConcatenation*)__r)->_M_left; in _S_concat_char_iter() local
560 __left->_M_ref_nonnil(); in _S_concat_char_iter()
562 { __result = _S_tree_concat(__left, __nright); } in _S_concat_char_iter()
565 _S_unref(__left); in _S_concat_char_iter()
[all …]
Drope405 operator+(const rope<_CharT, _Alloc>& __left,
410 operator+(const rope<_CharT, _Alloc>& __left, const _CharT* __right);
414 operator+(const rope<_CharT, _Alloc>& __left, _CharT __right);
1588 static _RopeRep* _S_concat(_RopeRep* __left, _RopeRep* __right);
1625 _S_new_RopeConcatenation(_RopeRep* __left, _RopeRep* __right,
1629 return new(__space) _RopeConcatenation(__left, __right, __a);
1676 _S_tree_concat(_RopeRep* __left, _RopeRep* __right);
1731 _S_concat_and_set_balanced(_RopeRep* __left, _RopeRep* __right)
1733 _RopeRep* __result = _S_concat(__left, __right);
1881 _RopeRep* __left =
[all …]
/trueos/contrib/libstdc++/include/bits/
Dostream_insert.h92 const bool __left = ((__out.flags() in __ostream_insert() local
95 if (!__left) in __ostream_insert()
99 if (__left && __out.good()) in __ostream_insert()
Dbasic_string.tcc403 bool __left; in replace() local
406 else if ((__left = __s + __n2 <= _M_data() + __pos) in replace()
411 __left ? __off : (__off += __n2 - __n1); in replace()
Dstl_algo.h4125 _ForwardIterator __middle, __left, __right; in equal_range() local
4142 __left = std::lower_bound(__first, __middle, __val); in equal_range()
4145 return pair<_ForwardIterator, _ForwardIterator>(__left, __right); in equal_range()
4189 _ForwardIterator __middle, __left, __right; in equal_range() local
4206 __left = std::lower_bound(__first, __middle, __val, __comp); in equal_range()
4209 return pair<_ForwardIterator, _ForwardIterator>(__left, __right); in equal_range()
/trueos/sys/cddl/contrib/opensolaris/uts/common/sys/
HDdebug.h109 const TYPE __left = (TYPE)(LEFT); \
111 if (!(__left OP __right)) \
113 (uintmax_t)__left, #OP, (uintmax_t)__right, \
/trueos/usr.sbin/bsdconfig/share/
HDstrings.subr279 local __left="" __right="$1"
283 __left="$__left${__right%%$__find*}$__replace"
289 __left="$__left${__right#*$__find}"
291 setvar "$__var_to_set" "$__left"
293 echo "$__left"
HDdevice.subr819 local __left="${__name%%[0-9]*}" __right="${__name#*[0-9]}"
820 if [ "$__left" != "$__name" ]; then
828 __dname="${__left}%d$__right"
/trueos/contrib/ipfilter/sys/
HDtree.h208 struct type __node, *__left, *__right, *__tmp; \
212 __left = __right = &__node; \
234 SPLAY_LINKRIGHT(head, __left, field); \
237 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
245 struct type __node, *__left, *__right, *__tmp; \
248 __left = __right = &__node; \
270 SPLAY_LINKRIGHT(head, __left, field); \
273 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
/trueos/crypto/openssh/openbsd-compat/
HDsys-tree.h212 struct type __node, *__left, *__right, *__tmp; \
216 __left = __right = &__node; \
238 SPLAY_LINKRIGHT(head, __left, field); \
241 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
249 struct type __node, *__left, *__right, *__tmp; \
252 __left = __right = &__node; \
274 SPLAY_LINKRIGHT(head, __left, field); \
277 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
/trueos/sys/sys/
HDtree.h210 struct type __node, *__left, *__right, *__tmp; \
214 __left = __right = &__node; \
236 SPLAY_LINKRIGHT(head, __left, field); \
239 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
247 struct type __node, *__left, *__right, *__tmp; \
250 __left = __right = &__node; \
272 SPLAY_LINKRIGHT(head, __left, field); \
275 SPLAY_ASSEMBLE(head, &__node, __left, __right, field); \
/trueos/cddl/contrib/opensolaris/lib/libuutil/common/
HDlibuutil.h166 typedef int uu_compare_fn_t(const void *__left, const void *__right,