Home
last modified time | relevance | path

Searched refs:__tag (Results 1 – 10 of 10) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dalgorithm_impl.h
H A Dnumeric_impl.h
H A Dnumeric_fwd.h
/freebsd/contrib/llvm-project/libcxx/include/__expected/
H A Dexpected.h265 _LIBCPP_HIDE_FROM_ABI constexpr explicit __repr(in_place_t __tag, _Args&&... __args)
266 : __union_(in_place, __tag, std::forward<_Args>(__args)...), __has_val_(true) {}
269 _LIBCPP_HIDE_FROM_ABI constexpr explicit __repr(unexpect_t __tag, _Args&&... __args)
270 : __union_(in_place, __tag, std::forward<_Args>(__args)...), __has_val_(false) {}
273 …P_HIDE_FROM_ABI constexpr explicit __repr(std::__expected_construct_in_place_from_invoke_tag __tag,
275 : __union_(in_place, __tag, std::forward<_Args>(__args)...), __has_val_(true) {}
278 …HIDE_FROM_ABI constexpr explicit __repr(std::__expected_construct_unexpected_from_invoke_tag __tag,
280 : __union_(in_place, __tag, std::forward<_Args>(__args)...), __has_val_(false) {}
427 _LIBCPP_HIDE_FROM_ABI constexpr void __construct(_Tag __tag, _Args&&... __args) {
429 std::construct_at(&__repr_.__v, __tag, std::forward<_Args>(__args)...);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/omp/
H A Dparallel_stable_sort.h
/freebsd/lib/msun/x86/
H A Dfenv.h78 __uint32_t __tag; member
86 __uint32_t __tag; member
/freebsd/sys/dev/dpaa2/
H A Ddpaa2_buf.h53 #define DPAA2_BUF_INIT_TAGOPT(__buf, __tag, __opt) do { \ argument
58 (__buf)->dmat = (__tag); \
/freebsd/lib/msun/tests/
H A Dfenv_test.c199 ATF_CHECK(memcmp(&env.__x87.__tag, &FE_DFL_ENV->__x87.__tag, in ATF_TC_BODY()
200 sizeof(env.__x87.__tag)) == 0); in ATF_TC_BODY()
/freebsd/usr.sbin/bsdconfig/share/
H A Ddialog.subr923 local __tag="$1" __item="$2"
925 [ ${#__tag} -gt $__longest_tag ] && __longest_tag=${#__tag}
1018 local __tag="$1" __item="$2" __help="$3"
1020 [ ${#__tag} -gt $__longest_tag ] && __longest_tag=${#__tag}
1121 local __tag="$1" __item="$2"
1123 [ ${#__tag} -gt $__longest_tag ] && __longest_tag=${#__tag}
1245 local __tag="$1" __item="$2" __status="$3" __help="$4"
1247 [ ${#__tag} -gt $__longest_tag ] && __longest_tag=${#__tag}
/freebsd/contrib/llvm-project/libcxx/include/
H A Dvariant726 _LIBCPP_HIDE_FROM_ABI explicit constexpr __base(__valueless_t __tag) noexcept
727 : __data(__tag), __index(__variant_npos<__index_t>) {}