Home
last modified time | relevance | path

Searched refs:__tmp (Results 1 – 15 of 15) sorted by relevance

/minix3/external/bsd/libevent/dist/WIN32-Code/
H A Dtree.h185 struct type *__tmp; \
193 __tmp = SPLAY_RIGHT((head)->sph_root, field); \
196 SPLAY_RIGHT((head)->sph_root, field) = __tmp; \
206 struct type __node, *__left, *__right, *__tmp; \
214 __tmp = SPLAY_LEFT((head)->sph_root, field); \
215 if (__tmp == NULL) \
217 if ((cmp)(elm, __tmp) < 0){ \
218 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
224 __tmp = SPLAY_RIGHT((head)->sph_root, field); \
225 if (__tmp == NULL) \
[all …]
/minix3/sys/arch/i386/include/
H A Dmcontext.h151 void *__tmp; in __lwp_getprivate_fast() local
153 __asm volatile("movl %%gs:0, %0" : "=r" (__tmp)); in __lwp_getprivate_fast()
155 return __tmp; in __lwp_getprivate_fast()
/minix3/sys/sys/
H A Dtree.h185 struct type *__tmp; \
193 __tmp = SPLAY_RIGHT((head)->sph_root, field); \
196 SPLAY_RIGHT((head)->sph_root, field) = __tmp; \
206 struct type __node, *__left, *__right, *__tmp; \
214 __tmp = SPLAY_LEFT((head)->sph_root, field); \
215 if (__tmp == NULL) \
217 if ((cmp)(elm, __tmp) < 0){ \
218 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
224 __tmp = SPLAY_RIGHT((head)->sph_root, field); \
225 if (__tmp == NULL) \
[all …]
/minix3/sys/arch/arm/include/
H A Dlock.h124 int __tmp, __rv; in __swp() local
136 : [__rv] "=&r" (__rv), [__tmp] "=&r" (__tmp) in __swp()
/minix3/external/bsd/libc++/dist/libcxx/include/experimental/
H A Dany485 any __tmp;
486 __rhs.__call(_Action::_Move, &__tmp);
488 __tmp.__call(_Action::_Move, this);
516 _Tp * __tmp = any_cast<_Tp>(&__v);
517 if (__tmp == nullptr)
519 return *__tmp;
531 _Tp * __tmp = any_cast<_Tp>(&__v);
532 if (__tmp == nullptr)
534 return *__tmp;
546 _Tp * __tmp = any_cast<_Tp>(&__v);
[all …]
/minix3/external/bsd/llvm/dist/llvm/test/Transforms/LowerInvoke/
H A D2003-12-10-Crash.ll17 %__tmp.0 = phi i32* [ null, %invoke_cont.0 ], [ null, %then ] ; <i32*> [#uses=0]
/minix3/external/bsd/libc++/dist/libcxx/include/
H A Diterator561 _LIBCPP_INLINE_VISIBILITY reference operator*() const {_Iter __tmp = current; return *--__tmp;}
565 {reverse_iterator __tmp(*this); --current; return __tmp;}
568 {reverse_iterator __tmp(*this); ++current; return __tmp;}
967 {move_iterator __tmp(*this); ++__i; return __tmp;}
970 {move_iterator __tmp(*this); --__i; return __tmp;}
1194 {__wrap_iter __tmp(*this); ++(*this); return __tmp;}
1205 {__wrap_iter __tmp(*this); --(*this); return __tmp;}
H A D__bit_reference1137 __bit_iterator __tmp = *this;
1139 return __tmp;
1156 __bit_iterator __tmp = *this;
1158 return __tmp;
H A Dmemory2712 pointer __tmp = __ptr_.first();
2714 if (__tmp)
2715 __ptr_.second()(__tmp);
2907 pointer __tmp = __ptr_.first();
2909 if (__tmp)
2910 __ptr_.second()(__tmp);
2914 pointer __tmp = __ptr_.first();
2916 if (__tmp)
2917 __ptr_.second()(__tmp);
2921 pointer __tmp = __ptr_.first();
[all …]
H A Ddeque309 __deque_iterator __tmp = *this;
311 return __tmp;
327 __deque_iterator __tmp = *this;
329 return __tmp;
1980 value_type __tmp(_VSTD::forward<_Args>(__args)...);
1988 *__b = _VSTD::move(__tmp);
2004 value_type __tmp(_VSTD::forward<_Args>(__args)...);
2011 *--__e = _VSTD::move(__tmp);
H A Dlocale1024 size_t __tmp = __buf.size();
1028 __a_end = __a + __tmp;
1074 size_t __tmp = __buf.size();
1078 __a_end = __a + __tmp;
1128 size_t __tmp = __buf.size();
1132 __a_end = __a + __tmp;
1178 size_t __tmp = __buf.size();
1182 __a_end = __a + __tmp;
1538 string_type __tmp(__v ? __np.truename() : __np.falsename());
1539 string_type __nm = _VSTD::move(__tmp);
H A Dalgorithm2375 value_type __tmp = _VSTD::move(*__first);
2377 *__lm1 = _VSTD::move(__tmp);
2387 value_type __tmp = _VSTD::move(*__lm1);
2389 *__first = _VSTD::move(__tmp);
H A Dvector1811 value_type __tmp(_VSTD::forward<_Args>(__args)...);
1813 *__p = _VSTD::move(__tmp);
/minix3/external/bsd/llvm/dist/llvm/include/llvm/ADT/
H A DSTLExtras.h247 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; } variable
248 _Self operator--(int) { _Self __tmp = *this; --current; return __tmp; } variable
/minix3/external/gpl3/binutils/patches/
H A D0000-binutils_nbsd.patch17201 + ({ int64_t __tmp = (x); \
17202 + __tmp = (__tmp << (64-(n))) >> (64-(n)); \
17203 + __tmp == (x); })