/freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | u8path.h | 44 string __tmp(__f, __l); in u8path() 47 __w.reserve(__tmp.size()); in u8path() 48 _CVT()(back_inserter(__w), __tmp.data(), __tmp.data() + __tmp.size()); in u8path() 65 string __tmp; in u8path() local 68 __tmp.push_back(*__f); in u8path() 71 __w.reserve(__tmp.size()); in u8path() 72 _CVT()(back_inserter(__w), __tmp.data(), __tmp.data() + __tmp.size()); in u8path()
|
H A D | path.h | 227 basic_string<_ECharT> __tmp(__b, __e); 230 _Narrower()(back_inserter(__utf8), __tmp.data(), __tmp.data() + __tmp.length()); 233 _Narrower()(back_inserter(__dest), __tmp.data(), __tmp.data() + __tmp.length()); 243 basic_string<_ECharT> __tmp; 245 __tmp.push_back(*__b); 248 _Narrower()(back_inserter(__utf8), __tmp.data(), __tmp.data() + __tmp.length()); 251 _Narrower()(back_inserter(__dest), __tmp.data(), __tmp.data() + __tmp.length()); 302 basic_string<char> __tmp(__b, __e); 303 __append_string(__dest, __tmp); 308 basic_string<char> __tmp(__b, __e); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__coroutine/ |
H A D | coroutine_handle.h | 49 coroutine_handle __tmp; 50 __tmp.__handle_ = __addr; 51 return __tmp; 104 coroutine_handle __tmp; 105 __tmp.__handle_ = 107 return __tmp; 119 coroutine_handle __tmp; 120 __tmp.__handle_ = __addr; 121 return __tmp;
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_intrinsics.h | 47 __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; \ 80 _Static_assert(sizeof(__tmp) == sizeof(__val)); \ 81 memcpy(&__tmp, &__val, sizeof(__val)); \ 82 __tmp = ::__FnName(__tmp, __offset, __width); \ 84 memcpy(&__ret, &__tmp, sizeof(__ret)); \ [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | bounded_iter.h | 139 __bounded_iter __tmp(*this); 141 return __tmp; 151 __bounded_iter __tmp(*this); 153 return __tmp; 166 __bounded_iter __tmp(__self); 167 __tmp += __n; 168 return __tmp; 172 __bounded_iter __tmp(__self); 173 __tmp += __n; 174 return __tmp; [all …]
|
H A D | iterator_with_data.h | 63 auto __tmp = *this; 65 return __tmp; 78 auto __tmp = *this; 80 return __tmp; 60 auto __tmp = *this; global() variable 75 auto __tmp = *this; global() variable
|
H A D | aliasing_iterator.h | 59 __iterator __tmp(*this); 61 return __tmp; 70 __iterator __tmp(*this); 72 return __tmp;
|
H A D | reverse_iterator.h | 131 _Iter __tmp = current; variable 132 return *--__tmp; 154 reverse_iterator __tmp(*this); 156 return __tmp; 163 reverse_iterator __tmp(*this); 165 return __tmp; 188 auto __tmp = __i.base(); in iter_move() local 189 return ranges::iter_move(--__tmp); in iter_move()
|
H A D | move_iterator.h | 150 move_iterator __tmp(*this); 152 return __tmp; 182 move_iterator __tmp(*this); 184 return __tmp; 193 move_iterator __tmp(*this); 195 return __tmp;
|
/freebsd/contrib/llvm-project/libcxx/include/experimental/__simd/ |
H A D | reference.h | 79 _Vp __tmp(std::move(__a)); in swap() 81 std::move(__b) = std::move(__tmp); in swap() 86 _Vp __tmp(std::move(__a)); in swap() 88 std::move(__b) = std::move(__tmp); in swap() 93 _Vp __tmp(std::move(__a)); in swap() 95 __b = std::move(__tmp); in swap()
|
/freebsd/contrib/ntp/sntp/libevent/WIN32-Code/ |
H A D | tree.h | 184 struct type *__tmp; \ 192 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 195 SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ 205 struct type __node, *__left, *__right, *__tmp; \ 213 __tmp = SPLAY_LEFT((head)->sph_root, field); \ 214 if (__tmp == NULL) \ 216 if ((cmp)(elm, __tmp) < 0){ \ 217 SPLAY_ROTATE_RIGHT(head, __tmp, field); \ 223 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 224 if (__tmp == NULL) \ [all …]
|
/freebsd/contrib/libevent/WIN32-Code/ |
H A D | tree.h | 184 struct type *__tmp; \ 192 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 195 SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ 205 struct type __node, *__left, *__right, *__tmp; \ 213 __tmp = SPLAY_LEFT((head)->sph_root, field); \ 214 if (__tmp == NULL) \ 216 if ((cmp)(elm, __tmp) < 0){ \ 217 SPLAY_ROTATE_RIGHT(head, __tmp, field); \ 223 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 224 if (__tmp == NULL) \ [all …]
|
/freebsd/usr.sbin/bsdconfig/share/ |
H A D | strings.subr | 78 local __tmp="$1" __start="${2:-1}" __len="$3" 82 eval echo \"\${__tmp:\$__start${__len:+:\$__len}}\" 86 eval $__var_to_set=\"\${__tmp:\$__start:\$__len}\" 88 eval $__var_to_set=\"\${__tmp:\$__start}\" 104 local __tmp="$1" __start="${2:-1}" __size="$3" 107 if [ ! "$__tmp" ]; then 129 __tmp="${__tmp#$__tbuf}" 134 local __tmp_size=${#__tmp} 150 __tmp="${__tmp%$__tbuf}" 154 __mask="$__tmp" [all …]
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | sys-tree.h | 191 struct type *__tmp; \ 199 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 202 SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ 212 struct type __node, *__left, *__right, *__tmp; \ 220 __tmp = SPLAY_LEFT((head)->sph_root, field); \ 221 if (__tmp == NULL) \ 223 if ((cmp)(elm, __tmp) < 0){ \ 224 SPLAY_ROTATE_RIGHT(head, __tmp, field); \ 230 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 231 if (__tmp == NULL) \ [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | day.h | 40 day __tmp = *this; 42 return __tmp; 49 day __tmp = *this; 51 return __tmp; 35 _LIBCPP_HIDE_FROM_ABI inline constexpr day operator++(int) noexcept { day __tmp = *this; ++(*this); return __tmp; } global() variable 37 _LIBCPP_HIDE_FROM_ABI inline constexpr day operator--(int) noexcept { day __tmp = *this; --(*this); return __tmp; } global() variable
|
H A D | year.h | 44 year __tmp = *this; 46 return __tmp; 53 year __tmp = *this; 55 return __tmp; 40 _LIBCPP_HIDE_FROM_ABI inline constexpr year operator++(int) noexcept { year __tmp = *this; ++(*this); return __tmp; } global() variable 42 _LIBCPP_HIDE_FROM_ABI inline constexpr year operator--(int) noexcept { year __tmp = *this; --(*this); return __tmp; } global() variable
|
H A D | month.h | 40 month __tmp = *this; 42 return __tmp; 49 month __tmp = *this; 51 return __tmp; 35 _LIBCPP_HIDE_FROM_ABI inline constexpr month operator++(int) noexcept { month __tmp = *this; ++(*this); return __tmp; } global() variable 37 _LIBCPP_HIDE_FROM_ABI inline constexpr month operator--(int) noexcept { month __tmp = *this; --(*this); return __tmp; } global() variable
|
H A D | weekday.h | 51 weekday __tmp = *this; variable 53 return __tmp; 60 weekday __tmp = *this; variable 62 return __tmp;
|
/freebsd/contrib/llvm-project/libcxx/include/__numeric/ |
H A D | exclusive_scan.h | 32 _Tp __tmp(__b(__init, *__first)); in exclusive_scan() 39 __init = std::move(__tmp); in exclusive_scan() 40 __tmp = __b(__init, *__first); in exclusive_scan()
|
/freebsd/sys/sys/ |
H A D | tree.h | 201 struct type *__tmp; \ 209 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 212 SPLAY_RIGHT((head)->sph_root, field) = __tmp; \ 222 struct type __node, *__left, *__right, *__tmp; \ 230 __tmp = SPLAY_LEFT((head)->sph_root, field); \ 231 if (__tmp == NULL) \ 233 if ((cmp)(elm, __tmp) < 0){ \ 234 SPLAY_ROTATE_RIGHT(head, __tmp, field); \ 240 __tmp = SPLAY_RIGHT((head)->sph_root, field); \ 241 if (__tmp == NULL) \ [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__ranges/ |
H A D | subrange.h | 161 auto __tmp = *this; variable 162 __tmp.advance(__n); 163 return __tmp; 174 auto __tmp = *this; variable 175 __tmp.advance(-__n); 176 return __tmp;
|
H A D | chunk_by_view.h | 174 auto __tmp = *this; variable 176 return __tmp; 190 auto __tmp = *this; variable 192 return __tmp;
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | zfs_refcount.h | 126 uint64_t __tmp = zfs_refcount_count(src); \ 127 atomic_add_64(&(src)->rc_count, -__tmp); \ 128 atomic_add_64(&(dst)->rc_count, __tmp); \
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | any | 493 any __tmp; 494 __rhs.__call(_Action::_Move, &__tmp); 496 __tmp.__call(_Action::_Move, this); 524 auto __tmp = std::any_cast<add_const_t<_RawValueType>>(&__v); 525 if (__tmp == nullptr) 527 return static_cast<_ValueType>(*__tmp); 536 auto __tmp = std::any_cast<_RawValueType>(&__v); 537 if (__tmp == nullptr) 539 return static_cast<_ValueType>(*__tmp); 548 auto __tmp = std::any_cast<_RawValueType>(&__v); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | rotate.h | 37 value_type __tmp = _Ops::__iter_move(__first); in __rotate_left() local 39 *__lm1 = std::move(__tmp); in __rotate_left() 50 value_type __tmp = _Ops::__iter_move(__lm1); in __rotate_right() local 52 *__first = std::move(__tmp); in __rotate_right()
|