Home
last modified time | relevance | path

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

12

/freebsd-13.1/contrib/llvm-project/clang/lib/Headers/
H A D__clang_hip_math.h78 if (__tmp >= '0' && __tmp <= '7')
95 if (__tmp >= '0' && __tmp <= '9')
112 if (__tmp >= '0' && __tmp <= '9')
114 else if (__tmp >= 'a' && __tmp <= 'f')
116 else if (__tmp >= 'A' && __tmp <= 'F')
263 int __tmp;
371 } __tmp;
434 int __tmp;
819 int __tmp;
928 } __tmp;
[all …]
H A D__clang_cuda_intrinsics.h47 __Bits __tmp; \
48 memcpy(&__tmp, &__val, sizeof(__val)); \
49 __tmp.__a = ::__FnName(__tmp.__a, __offset, __width); \
50 __tmp.__b = ::__FnName(__tmp.__b, __offset, __width); \
52 memcpy(&__ret, &__tmp, sizeof(__tmp)); \
79 long long __tmp; \
82 __tmp = ::__FnName(__tmp, __offset, __width); \
133 __tmp.__a = ::__FnName(__mask, __tmp.__a, __offset, __width); \
134 __tmp.__b = ::__FnName(__mask, __tmp.__b, __offset, __width); \
136 memcpy(&__ret, &__tmp, sizeof(__tmp)); \
[all …]
/freebsd-13.1/sys/contrib/openzfs/module/icp/include/sys/ia32/
H A Dstack.h133 uint32_t __tmp; \
134 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \
139 long double __tmp; \
140 ASSERT((((uintptr_t)&__tmp) & (STACK_ALIGN - 1)) == 0); \
/freebsd-13.1/contrib/ntp/sntp/libevent/WIN32-Code/
H A Dtree.h184 struct type *__tmp; \
214 if (__tmp == NULL) \
216 if ((cmp)(elm, __tmp) < 0){ \
217 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
224 if (__tmp == NULL) \
226 if ((cmp)(elm, __tmp) > 0){ \
227 SPLAY_ROTATE_LEFT(head, __tmp, field); \
250 if (__tmp == NULL) \
253 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
260 if (__tmp == NULL) \
[all …]
/freebsd-13.1/contrib/libevent/WIN32-Code/
H A Dtree.h184 struct type *__tmp; \
214 if (__tmp == NULL) \
216 if ((cmp)(elm, __tmp) < 0){ \
217 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
224 if (__tmp == NULL) \
226 if ((cmp)(elm, __tmp) > 0){ \
227 SPLAY_ROTATE_LEFT(head, __tmp, field); \
250 if (__tmp == NULL) \
253 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
260 if (__tmp == NULL) \
[all …]
/freebsd-13.1/usr.sbin/bsdconfig/share/
H A Dstrings.subr108 if [ ! "$__tmp" ]; then
130 __tmp="${__tmp#$__tbuf}"
135 local __tmp_size=${#__tmp}
151 __tmp="${__tmp%$__tbuf}"
155 __mask="$__tmp"
179 __tmp="${__tmp%"$__mask"}"
184 setvar "$__var_to_set" "$__tmp"
186 echo "$__tmp"
200 local __var_to_set="$1" __tmp
202 printf -v __tmp "$@"
[all …]
/freebsd-13.1/crypto/openssh/openbsd-compat/
H A Dsys-tree.h191 struct type *__tmp; \
221 if (__tmp == NULL) \
223 if ((cmp)(elm, __tmp) < 0){ \
224 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
231 if (__tmp == NULL) \
233 if ((cmp)(elm, __tmp) > 0){ \
234 SPLAY_ROTATE_LEFT(head, __tmp, field); \
257 if (__tmp == NULL) \
260 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
267 if (__tmp == NULL) \
[all …]
/freebsd-13.1/contrib/ipfilter/sys/
H A Dtree.h187 struct type *__tmp; \
217 if (__tmp == NULL) \
219 if ((cmp)(elm, __tmp) < 0){ \
220 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
227 if (__tmp == NULL) \
229 if ((cmp)(elm, __tmp) > 0){ \
230 SPLAY_ROTATE_LEFT(head, __tmp, field); \
253 if (__tmp == NULL) \
256 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
263 if (__tmp == NULL) \
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/include/experimental/
H A Dcoroutine141 coroutine_handle __tmp;
142 __tmp.__handle_ = __addr;
143 return __tmp;
221 coroutine_handle __tmp;
222 __tmp.__handle_ = __addr;
223 return __tmp;
252 coroutine_handle __tmp;
253 __tmp.__handle_ = __builtin_coro_promise(
256 return __tmp;
/freebsd-13.1/sys/sys/
H A Dtree.h200 struct type *__tmp; \
230 if (__tmp == NULL) \
232 if ((cmp)(elm, __tmp) < 0){ \
233 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
240 if (__tmp == NULL) \
242 if ((cmp)(elm, __tmp) > 0){ \
243 SPLAY_ROTATE_LEFT(head, __tmp, field); \
266 if (__tmp == NULL) \
269 SPLAY_ROTATE_RIGHT(head, __tmp, field); \
276 if (__tmp == NULL) \
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/include/__iterator/
H A Dreverse_iterator.h128 reference operator*() const {_Iter __tmp = current; return *--__tmp;}
134 reverse_iterator operator++(int) {reverse_iterator __tmp(*this); --current; return __tmp;}
138 reverse_iterator operator--(int) {reverse_iterator __tmp(*this); ++current; return __tmp;}
H A Dmove_iterator.h85 move_iterator operator++(int) {move_iterator __tmp(*this); ++__i; return __tmp;}
89 move_iterator operator--(int) {move_iterator __tmp(*this); --__i; return __tmp;}
H A Dcounted_iterator.h154 counted_iterator __tmp = *this;
156 return __tmp;
172 counted_iterator __tmp = *this;
174 return __tmp;
H A Dwrap_iter.h112 {__wrap_iter __tmp(*this); ++(*this); return __tmp;}
124 {__wrap_iter __tmp(*this); --(*this); return __tmp;}
H A Dcommon_iterator.h139 auto&& __tmp = *_VSTD::__unchecked_get<_Iter>(__hold_);
140 return _VSTD::addressof(__tmp);
157 auto __tmp = *this; variable
159 return __tmp;
/freebsd-13.1/sys/contrib/openzfs/include/sys/
H A Dzfs_refcount.h108 uint64_t __tmp = zfs_refcount_count(src); \
109 atomic_add_64(&(src)->rc_count, -__tmp); \
110 atomic_add_64(&(dst)->rc_count, __tmp); \
/freebsd-13.1/contrib/llvm-project/libcxx/include/__ranges/
H A Ddrop_view.h77 auto __tmp = ranges::next(ranges::begin(__base_), __count_, ranges::end(__base_)); in begin() local
79 __cached_begin_.__set(__tmp); in begin()
80 return __tmp; in begin()
H A Dsubrange.h179 auto __tmp = *this;
180 __tmp.advance(__n);
181 return __tmp;
191 auto __tmp = *this;
192 __tmp.advance(-__n);
193 return __tmp;
/freebsd-13.1/contrib/llvm-project/libcxx/include/__algorithm/
H A Drotate.h36 value_type __tmp = _VSTD::move(*__first); in __rotate_left() local
38 *__lm1 = _VSTD::move(__tmp); in __rotate_left()
48 value_type __tmp = _VSTD::move(*__lm1); in __rotate_right() local
50 *__first = _VSTD::move(__tmp); in __rotate_right()
/freebsd-13.1/contrib/llvm-project/libcxx/include/__memory/
H A Dallocation_guard.h69 _Pointer __tmp = __ptr_; in __release_ptr() local
71 return __tmp; in __release_ptr()
H A Dunique_ptr.h315 pointer __tmp = __ptr_.first();
317 if (__tmp)
318 __ptr_.second()(__tmp);
540 pointer __tmp = __ptr_.first();
542 if (__tmp)
543 __ptr_.second()(__tmp);
548 pointer __tmp = __ptr_.first();
550 if (__tmp)
551 __ptr_.second()(__tmp);
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dany560 any __tmp;
561 __rhs.__call(_Action::_Move, &__tmp);
563 __tmp.__call(_Action::_Move, this);
603 if (__tmp == nullptr)
605 return static_cast<_ValueType>(*__tmp);
617 auto __tmp = _VSTD::any_cast<_RawValueType>(&__v);
618 if (__tmp == nullptr)
620 return static_cast<_ValueType>(*__tmp);
632 auto __tmp = _VSTD::any_cast<_RawValueType>(&__v);
633 if (__tmp == nullptr)
[all …]
H A Dfilesystem745 __tmp.data() + __tmp.length());
749 __tmp.data() + __tmp.length());
761 __tmp.push_back(*__b);
765 __tmp.data() + __tmp.length());
769 __tmp.data() + __tmp.length());
1472 __p = __tmp;
1530 string __tmp(__f, __l);
1534 _CVT()(back_inserter(__w), __tmp.data(), __tmp.data() + __tmp.size());
1553 string __tmp;
1556 __tmp.push_back(*__f);
[all …]
/freebsd-13.1/sys/compat/linuxkpi/common/include/linux/
H A Drcupdate.h105 typeof(ptr) __tmp = rcu_dereference_protected(rcu, c); \
107 __tmp; \
/freebsd-13.1/sys/powerpc/fpu/
H A Dfpu_arith.h148 #define FPU_SET_CARRY(v) do { int __tmp; \
149 __asm volatile("addic %0,%0,-1" : "r"(__tmp) : "r"(v)); \

12