libstdc++
Data parallel extensions
Collaboration diagram for Data parallel extensions:

Macros

#define __cpp_lib_experimental_parallel_simd
 
using __m128 = float
 
using __m128d = double
 
using __m128i = long long
 
using __m256 = float
 
using __m256d = double
 
using __m256i = long long
 
using __m512 = float
 
using __m512d = double
 
using __m512i = long long
 
template<size_t _Xp>
using _SizeConstant = integral_constant< size_t, _Xp >
 
using _UChar = unsigned char
 
using _SChar = signed char
 
using _UShort = unsigned short
 
using _UInt = unsigned int
 
using _ULong = unsigned long
 
using _ULLong = unsigned long long
 
using _LLong = long long
 
template<typename... _Ts>
using __first_of_pack_t = typename __first_of_pack< _Ts... >::type
 
template<typename _Tp >
using __value_type_or_identity_t = decltype(__value_type_or_identity_impl< _Tp >(int()))
 
template<typename _Tp , typename = enable_if_t<__is_vectorizable_v<_Tp>>>
using _Vectorizable = _Tp
 
template<typename _Ptr , typename _ValueType , typename = enable_if_t< __is_possible_loadstore_conversion<_Ptr, _ValueType>::value>>
using _LoadStorePtr = _Ptr
 
template<typename _Tp >
using __int_for_sizeof_t = decltype(__int_for_sizeof< sizeof(_Tp)>())
 
template<size_t _Np>
using __int_with_sizeof_t = decltype(__int_for_sizeof< _Np >())
 
template<typename _Tp , typename _Up >
using __make_dependent_t = typename __make_dependent< _Tp, _Up >::type
 
template<typename _Tp >
using __may_alias = _Tp
 
template<size_t _Size>
using __bool_storage_member_type_t = typename __bool_storage_member_type< _Size >::type
 
template<typename _Tp , int _Np>
using __fixed_size_storage_t = typename __fixed_size_storage< _Tp, _Np >::type
 
template<typename _Tp >
using _SimdWrapper8 = _SimdWrapper< _Tp, 8/sizeof(_Tp)>
 
template<typename _Tp >
using _SimdWrapper16 = _SimdWrapper< _Tp, 16/sizeof(_Tp)>
 
template<typename _Tp >
using _SimdWrapper32 = _SimdWrapper< _Tp, 32/sizeof(_Tp)>
 
template<typename _Tp >
using _SimdWrapper64 = _SimdWrapper< _Tp, 64/sizeof(_Tp)>
 
template<typename _From , typename _To , typename = enable_if_t<negation< __is_narrowing_conversion<__remove_cvref_t<_From>, _To>>::value>>
using _ValuePreserving = _From
 
template<typename _From , typename _To , typename _DecayedFrom = __remove_cvref_t<_From>, typename = enable_if_t<conjunction< is_convertible<_From, _To>, disjunction< is_same<_DecayedFrom, _To>, is_same<_DecayedFrom, int>, conjunction<is_same<_DecayedFrom, _UInt>, is_unsigned<_To>>, negation<__is_narrowing_conversion<_DecayedFrom, _To>>>>::value>>
using _ValuePreservingOrInt = _From
 
template<typename _Tp , size_t _Size>
using __intrinsic_type_t = typename __intrinsic_type< _Tp, _Size *sizeof(_Tp)>::type
 
template<typename _Tp >
using __intrinsic_type2_t = typename __intrinsic_type< _Tp, 2 >::type
 
template<typename _Tp >
using __intrinsic_type4_t = typename __intrinsic_type< _Tp, 4 >::type
 
template<typename _Tp >
using __intrinsic_type8_t = typename __intrinsic_type< _Tp, 8 >::type
 
template<typename _Tp >
using __intrinsic_type16_t = typename __intrinsic_type< _Tp, 16 >::type
 
template<typename _Tp >
using __intrinsic_type32_t = typename __intrinsic_type< _Tp, 32 >::type
 
template<typename _Tp >
using __intrinsic_type64_t = typename __intrinsic_type< _Tp, 64 >::type
 
template<size_t _Np>
using _SanitizedBitMask = _BitMask< _Np, true >
 
template<typename _Tp , size_t _Size>
using __vector_type_t = typename __vector_type_n< _Tp, _Size >::type
 
template<typename _Tp >
using __vector_type2_t = typename __vector_type< _Tp, 2 >::type
 
template<typename _Tp >
using __vector_type4_t = typename __vector_type< _Tp, 4 >::type
 
template<typename _Tp >
using __vector_type8_t = typename __vector_type< _Tp, 8 >::type
 
template<typename _Tp >
using __vector_type16_t = typename __vector_type< _Tp, 16 >::type
 
template<typename _Tp >
using __vector_type32_t = typename __vector_type< _Tp, 32 >::type
 
template<typename _Tp >
using __vector_type64_t = typename __vector_type< _Tp, 64 >::type
 
template<typename _Tp , typename = typename _VectorTraitsImpl<_Tp>::type>
using _VectorTraits = _VectorTraitsImpl< _Tp >
 
template<typename _Tp , typename _V >
using rebind_simd_t = typename rebind_simd< _Tp, _V >::type
 
template<int _Np, typename _V >
using resize_simd_t = typename resize_simd< _Np, _V >::type
 
template<typename _Tp >
using native_simd = simd< _Tp, simd_abi::native< _Tp > >
 
template<typename _Tp , int _Np>
using fixed_size_simd = simd< _Tp, simd_abi::fixed_size< _Np > >
 
template<typename _Tp , size_t _Np>
using __deduced_simd = simd< _Tp, simd_abi::deduce_t< _Tp, _Np > >
 
template<typename _Tp >
using native_simd_mask = simd_mask< _Tp, simd_abi::native< _Tp > >
 
template<typename _Tp , int _Np>
using fixed_size_simd_mask = simd_mask< _Tp, simd_abi::fixed_size< _Np > >
 
template<typename _Tp , size_t _Np>
using __deduced_simd_mask = simd_mask< _Tp, simd_abi::deduce_t< _Tp, _Np > >
 
template<typename _Tp >
using safe_make_signed_t = typename __safe_make_signed< _Tp >::type
 
constexpr element_aligned_tag element_aligned
 
constexpr vector_aligned_tag vector_aligned
 
template<size_t _Np>
constexpr overaligned_tag< _Np > overaligned
 
constexpr bool __have_mmx
 
constexpr bool __have_sse
 
constexpr bool __have_sse2
 
constexpr bool __have_sse3
 
constexpr bool __have_ssse3
 
constexpr bool __have_sse4_1
 
constexpr bool __have_sse4_2
 
constexpr bool __have_xop
 
constexpr bool __have_avx
 
constexpr bool __have_avx2
 
constexpr bool __have_bmi
 
constexpr bool __have_bmi2
 
constexpr bool __have_lzcnt
 
constexpr bool __have_sse4a
 
constexpr bool __have_fma
 
constexpr bool __have_fma4
 
constexpr bool __have_f16c
 
constexpr bool __have_popcnt
 
constexpr bool __have_avx512f
 
constexpr bool __have_avx512dq
 
constexpr bool __have_avx512vl
 
constexpr bool __have_avx512bw
 
constexpr bool __have_avx512dq_vl
 
constexpr bool __have_avx512bw_vl
 
constexpr bool __have_avx512bitalg
 
constexpr bool __have_avx512vbmi2
 
constexpr bool __have_avx512vbmi
 
constexpr bool __have_avx512ifma
 
constexpr bool __have_avx512cd
 
constexpr bool __have_avx512vnni
 
constexpr bool __have_avx512vpopcntdq
 
constexpr bool __have_avx512vp2intersect
 
constexpr bool __have_neon
 
constexpr bool __have_neon_a32
 
constexpr bool __have_neon_a64
 
constexpr bool __support_neon_float
 
constexpr bool __have_power10vec
 
constexpr bool __have_power9vec
 
constexpr bool __have_power8vec
 
constexpr bool __have_power_vsx
 
constexpr bool __have_power_vmx
 
template<typename _Tp >
constexpr bool __is_vectorizable_v
 
template<typename _Tp >
constexpr bool __is_bitmask_v
 
template<typename _Tp >
constexpr bool __is_fixed_size_abi_v
 
template<typename _Abi >
constexpr int __abi_bytes_v
 
template<typename _Tp , typename _Ap >
constexpr size_t __size_or_zero_v
 
constexpr struct _PrivateInit __private_init
 
constexpr struct _BitsetInit __bitset_init
 
template<typename _Tp >
constexpr bool __is_simd_wrapper_v
 
template<typename _Tp = void>
static constexpr int __min_vector_size
 
template<>
constexpr int __min_vector_size< void >
 
template<typename _Tp >
constexpr bool __is_vector_type_v
 
template<typename _Tp >
constexpr bool __is_intrinsic_type_v
 
template<typename _Tp >
constexpr bool is_abi_tag_v
 
template<typename _Tp >
constexpr bool is_simd_v
 
template<typename _Tp >
constexpr bool is_simd_mask_v
 
template<typename _Tp , typename _Abi = simd_abi::__default_abi<_Tp>>
constexpr size_t simd_size_v
 
template<typename _Tp , typename _Up = typename _Tp::value_type>
constexpr size_t memory_alignment_v
 
template<typename _Fp , size_t... _I>
_GLIBCXX_SIMD_INTRINSIC constexpr void __execute_on_index_sequence (_Fp &&__f, index_sequence< _I... >)
 
template<typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr void __execute_on_index_sequence (_Fp &&, index_sequence<>)
 
template<size_t _Np, typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr void __execute_n_times (_Fp &&__f)
 
template<typename _R , typename _Fp , size_t... _I>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __execute_on_index_sequence_with_return (_Fp &&__f, index_sequence< _I... >)
 
template<size_t _Np, typename _R , typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr _R __generate_from_n_evaluations (_Fp &&__f)
 
template<size_t... _I, typename _F0 , typename _FArgs >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __call_with_n_evaluations (index_sequence< _I... >, _F0 &&__f0, _FArgs &&__fargs)
 
template<size_t _Np, typename _F0 , typename _FArgs >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __call_with_n_evaluations (_F0 &&__f0, _FArgs &&__fargs)
 
template<size_t _First = 0, size_t... _It, typename _Tp , typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __call_with_subscripts (_Tp &&__x, index_sequence< _It... >, _Fp &&__fun)
 
template<size_t _Np, size_t _First = 0, typename _Tp , typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __call_with_subscripts (_Tp &&__x, _Fp &&__fun)
 
template<typename _Tp >
_Tp::value_type __value_type_or_identity_impl (int)
 
template<typename _Tp >
_Tp __value_type_or_identity_impl (float)
 
template<size_t _Bytes>
constexpr auto __int_for_sizeof ()
 
template<typename _Abi >
constexpr bool __is_scalar_abi ()
 
template<template< int > class _Abi, int _Bytes>
constexpr int __abi_bytes_impl (_Abi< _Bytes > *)
 
template<typename _Tp >
constexpr int __abi_bytes_impl (_Tp *)
 
template<typename _Abi >
constexpr bool __is_builtin_bitmask_abi ()
 
template<typename _Abi >
constexpr bool __is_sse_abi ()
 
template<typename _Abi >
constexpr bool __is_avx_abi ()
 
template<typename _Abi >
constexpr bool __is_avx512_abi ()
 
template<typename _Abi >
constexpr bool __is_neon_abi ()
 
template<typename... _Args>
_GLIBCXX_SIMD_ALWAYS_INLINE void __invoke_ub (const char *__msg, const _Args &... __args)
 
template<typename _Tp , typename _Ap , size_t _Np = simd_size<_Tp, _Ap>::value>
constexpr size_t __size_or_zero_dispatch (int)
 
template<typename _Tp , typename _Ap >
constexpr size_t __size_or_zero_dispatch (float)
 
constexpr size_t __div_roundup (size_t __a, size_t __b)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC constexpr const auto & __data (const simd< _Tp, _Ap > &__x)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC constexpr auto & __data (simd< _Tp, _Ap > &__x)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC constexpr const auto & __data (const simd_mask< _Tp, _Ap > &__x)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC constexpr auto & __data (simd_mask< _Tp, _Ap > &__x)
 
template<typename _V >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __to_value_type_or_member_type (const _V &__x) -> decltype(__data(__x))
 
template<typename _V >
_GLIBCXX_SIMD_INTRINSIC constexpr const _V::value_type & __to_value_type_or_member_type (const typename _V::value_type &__x)
 
template<typename _V >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __as_vector (_V __x)
 
template<size_t _Np = 0, typename _V >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __as_wrapper (_V __x)
 
template<typename _To , typename _From >
_GLIBCXX_SIMD_INTRINSIC constexpr _To __intrin_bitcast (_From __v)
 
template<typename _To , size_t _NN = 0, typename _From , typename _FromVT = _VectorTraits<_From>, size_t _Np = _NN == 0 ? sizeof(_From) / sizeof(_To) : _NN>
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _To, _Np > __vector_bitcast (_From __x)
 
template<typename _To , size_t _NN = 0, typename _Tp , size_t _Nx, size_t _Np = _NN == 0 ? sizeof(_SimdWrapper<_Tp, _Nx>) / sizeof(_To) : _NN>
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _To, _Np > __vector_bitcast (const _SimdWrapper< _Tp, _Nx > &__x)
 
template<typename _To , typename _From >
_GLIBCXX_SIMD_INTRINSIC constexpr _To __bit_cast (const _From __x)
 
template<typename _Tp , typename _TVT = _VectorTraits<_Tp>, typename _R = __intrinsic_type_t<typename _TVT::value_type, _TVT::_S_full_size>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __to_intrin (_Tp __x)
 
template<typename _Tp , typename... _Args>
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _Tp, sizeof...(_Args)> __make_vector (const _Args &... __args)
 
template<size_t _Np, typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _Tp, _Np > __vector_broadcast (_Tp __x)
 
template<typename _Tp , size_t _Np, typename _Gp , size_t... _I>
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _Tp, _Np > __generate_vector_impl (_Gp &&__gen, index_sequence< _I... >)
 
template<typename _V , typename _VVT = _VectorTraits<_V>, typename _Gp >
_GLIBCXX_SIMD_INTRINSIC constexpr _V __generate_vector (_Gp &&__gen)
 
template<typename _TW >
_GLIBCXX_SIMD_INTRINSIC constexpr _TW __xor (_TW __a, _TW __b) noexcept
 
template<typename _TW >
_GLIBCXX_SIMD_INTRINSIC constexpr _TW __or (_TW __a, _TW __b) noexcept
 
template<typename _TW >
_GLIBCXX_SIMD_INTRINSIC constexpr _TW __and (_TW __a, _TW __b) noexcept
 
template<typename _TW >
_GLIBCXX_SIMD_INTRINSIC constexpr _TW __andnot (_TW __a, _TW __b) noexcept
 
template<typename _Tp , typename _TVT = _VectorTraits<_Tp>>
_GLIBCXX_SIMD_INTRINSIC constexpr _Tp __not (_Tp __a) noexcept
 
template<typename _Tp , typename _TVT = _VectorTraits<_Tp>, typename _R = __vector_type_t<typename _TVT::value_type, _TVT::_S_full_size * 2>>
constexpr _R __concat (_Tp a_, _Tp b_)
 
template<typename _Tp , typename _TVT = _VectorTraits<_Tp>>
_GLIBCXX_SIMD_INTRINSIC _ZeroExtendProxy< _Tp, _TVT > __zero_extend (_Tp __x)
 
template<int _Offset, int _SplitBy, typename _Tp , typename _TVT = _VectorTraits<_Tp>, typename _R = __vector_type_t<typename _TVT::value_type, _TVT::_S_full_size / _SplitBy>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __extract (_Tp __in)
 
template<typename _Tp , typename _R = __vector_type8_t<typename _VectorTraits<_Tp>::value_type>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __lo64 (_Tp __x)
 
template<typename _Tp , typename _R = __vector_type8_t<typename _VectorTraits<_Tp>::value_type>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __hi64 (_Tp __x)
 
template<typename _Tp , typename _R = __vector_type8_t<typename _VectorTraits<_Tp>::value_type>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __hi64z (_Tp __x)
 
template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __lo128 (_Tp __x)
 
template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __hi128 (_Tp __x)
 
template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __lo256 (_Tp __x)
 
template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __hi256 (_Tp __x)
 
template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr _AutoCast< _Tp > __auto_bitcast (const _Tp &__x)
 
template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC constexpr _AutoCast< typename _SimdWrapper< _Tp, _Np >::_BuiltinType > __auto_bitcast (const _SimdWrapper< _Tp, _Np > &__x)
 
template<typename _Tp >
constexpr size_t __vectorized_sizeof ()
 
template<typename _Tp , typename _Up , typename _Ap , typename _R = typename __static_simd_cast_return_type<_Tp, _Up, _Ap>::type>
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _R static_simd_cast (const simd< _Up, _Ap > &__x)
 
template<typename _Tp , typename _Up , typename _Ap , typename _To = __value_type_or_identity_t<_Tp>>
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR auto simd_cast (const simd< _ValuePreserving< _Up, _To >, _Ap > &__x) -> decltype(static_simd_cast< _Tp >(__x))
 
template<typename _Tp , int _Np>
_GLIBCXX_SIMD_INTRINSIC fixed_size_simd< _Tp, _Np > to_fixed_size (const fixed_size_simd< _Tp, _Np > &__x)
 
template<typename _Tp , int _Np>
_GLIBCXX_SIMD_INTRINSIC fixed_size_simd_mask< _Tp, _Np > to_fixed_size (const fixed_size_simd_mask< _Tp, _Np > &__x)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC auto to_fixed_size (const simd< _Tp, _Ap > &__x)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC auto to_fixed_size (const simd_mask< _Tp, _Ap > &__x)
 
template<typename _Tp , int _Np>
_GLIBCXX_SIMD_INTRINSIC enable_if_t<(_Np==native_simd< _Tp >::size()), native_simd< _Tp > > to_native (const fixed_size_simd< _Tp, _Np > &__x)
 
template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC enable_if_t<(_Np==native_simd_mask< _Tp >::size()), native_simd_mask< _Tp > > to_native (const fixed_size_simd_mask< _Tp, _Np > &__x)
 
template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC enable_if_t<(_Np==simd< _Tp >::size()), simd< _Tp > > to_compatible (const simd< _Tp, simd_abi::fixed_size< _Np > > &__x)
 
template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC enable_if_t<(_Np==simd_mask< _Tp >::size()), simd_mask< _Tp > > to_compatible (const simd_mask< _Tp, simd_abi::fixed_size< _Np > > &__x)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC where_expression< simd_mask< _Tp, _Ap >, simd< _Tp, _Ap > > where (const typename simd< _Tp, _Ap >::mask_type &__k, simd< _Tp, _Ap > &__value)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC const_where_expression< simd_mask< _Tp, _Ap >, simd< _Tp, _Ap > > where (const typename simd< _Tp, _Ap >::mask_type &__k, const simd< _Tp, _Ap > &__value)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC where_expression< simd_mask< _Tp, _Ap >, simd_mask< _Tp, _Ap > > where (const remove_const_t< simd_mask< _Tp, _Ap > > &__k, simd_mask< _Tp, _Ap > &__value)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC const_where_expression< simd_mask< _Tp, _Ap >, simd_mask< _Tp, _Ap > > where (const remove_const_t< simd_mask< _Tp, _Ap > > &__k, const simd_mask< _Tp, _Ap > &__value)
 
template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC where_expression< bool, _Tp > where (_ExactBool __k, _Tp &__value)
 
template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC const_where_expression< bool, _Tp > where (_ExactBool __k, const _Tp &__value)
 
template<typename _Tp , typename _Ap >
void where (bool __k, simd< _Tp, _Ap > &__value)=delete
 
template<typename _Tp , typename _Ap >
void where (bool __k, const simd< _Tp, _Ap > &__value)=delete
 
template<typename _Tp , typename _Abi , typename _BinaryOperation = plus<>>
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _Tp reduce (const simd< _Tp, _Abi > &__v, _BinaryOperation __binary_op=_BinaryOperation())
 
template<typename _M , typename _V , typename _BinaryOperation = plus<>>
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce (const const_where_expression< _M, _V > &__x, typename _V::value_type __identity_element, _BinaryOperation __binary_op)
 
template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce (const const_where_expression< _M, _V > &__x, plus<> __binary_op={})
 
template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce (const const_where_expression< _M, _V > &__x, multiplies<> __binary_op)
 
template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce (const const_where_expression< _M, _V > &__x, bit_and<> __binary_op)
 
template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce (const const_where_expression< _M, _V > &__x, bit_or<> __binary_op)
 
template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce (const const_where_expression< _M, _V > &__x, bit_xor<> __binary_op)
 
template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _Tp hmin (const simd< _Tp, _Abi > &__v) noexcept
 
template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _Tp hmax (const simd< _Tp, _Abi > &__v) noexcept
 
template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _V::value_type hmin (const const_where_expression< _M, _V > &__x) noexcept
 
template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _V::value_type hmax (const const_where_expression< _M, _V > &__x) noexcept
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR simd< _Tp, _Ap > min (const simd< _Tp, _Ap > &__a, const simd< _Tp, _Ap > &__b)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR simd< _Tp, _Ap > max (const simd< _Tp, _Ap > &__a, const simd< _Tp, _Ap > &__b)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR pair< simd< _Tp, _Ap >, simd< _Tp, _Ap > > minmax (const simd< _Tp, _Ap > &__a, const simd< _Tp, _Ap > &__b)
 
template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR simd< _Tp, _Ap > clamp (const simd< _Tp, _Ap > &__v, const simd< _Tp, _Ap > &__lo, const simd< _Tp, _Ap > &__hi)
 
template<size_t... _Sizes, typename _Tp , typename _Ap , typename = enable_if_t<((_Sizes + ...) == simd<_Tp, _Ap>::size())>>
tuple< simd< _Tp, simd_abi::deduce_t< _Tp, _Sizes > >... > split (const simd< _Tp, _Ap > &)
 
template<int _Index, int _Total, int _Combine = 1, typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC _SimdWrapper< _Tp, _Np/_Total *_Combine > __extract_part (const _SimdWrapper< _Tp, _Np > __x)
 
template<int Index, int Parts, int _Combine = 1, typename _Tp , typename _A0 , typename... _As>
_GLIBCXX_SIMD_INTRINSIC auto __extract_part (const _SimdTuple< _Tp, _A0, _As... > &__x)
 
template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC _SimdWrapper< _Tp, _Np/2 > __extract_center (_SimdWrapper< _Tp, _Np > __x)
 
template<typename _Tp , typename _A0 , typename... _As>
_GLIBCXX_SIMD_INTRINSIC _SimdWrapper< _Tp, _SimdTuple< _Tp, _A0, _As... >::_S_size()/2 > __extract_center (const _SimdTuple< _Tp, _A0, _As... > &__x)
 
template<size_t... _Sizes, typename _Tp , typename... _As>
auto __split_wrapper (_SizeList< _Sizes... >, const _SimdTuple< _Tp, _As... > &__x)
 
template<typename _V , typename _Ap , size_t Parts = simd_size_v<typename _V::value_type, _Ap> / _V::size()>
enable_if_t< simd_size_v< typename _V::value_type, _Ap >==Parts *_V::size() &&is_simd_v< _V >, array< _V, Parts > > split (const simd< typename _V::value_type, _Ap > &__x)
 
template<typename _V , typename _Ap , size_t _Parts = simd_size_v<typename _V::simd_type::value_type, _Ap> / _V::size()>
enable_if_t< is_simd_mask_v< _V > &&simd_size_v< typename _V::simd_type::value_type, _Ap >==_Parts *_V::size(), array< _V, _Parts > > split (const simd_mask< typename _V::simd_type::value_type, _Ap > &__x)
 
template<size_t _I, typename _Tp , typename _Ap , typename... _As>
_GLIBCXX_SIMD_INTRINSIC constexpr _Tp __subscript_in_pack (const simd< _Tp, _Ap > &__x, const simd< _Tp, _As > &... __xs)
 
template<typename _Tp , typename _A0 , typename... _As>
_GLIBCXX_SIMD_INTRINSIC void __store_pack_of_simd (char *__mem, const simd< _Tp, _A0 > &__x0, const simd< _Tp, _As > &... __xs)
 
template<typename _Tp , typename... _As, typename = __detail::__odr_helper>
_GLIBCXX_SIMD_CONSTEXPR simd< _Tp, simd_abi::deduce_t< _Tp,(simd_size_v< _Tp, _As >+...)> > concat (const simd< _Tp, _As > &... __xs)
 
template<typename _Tp , typename _Abi , size_t _Np>
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR __deduced_simd< _Tp, simd_size_v< _Tp, _Abi > *_Np > concat (const array< simd< _Tp, _Abi >, _Np > &__x)
 
template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool all_of (const simd_mask< _Tp, _Abi > &__k) noexcept
 
template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool any_of (const simd_mask< _Tp, _Abi > &__k) noexcept
 
template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool none_of (const simd_mask< _Tp, _Abi > &__k) noexcept
 
template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool some_of (const simd_mask< _Tp, _Abi > &__k) noexcept
 
template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int popcount (const simd_mask< _Tp, _Abi > &__k) noexcept
 
template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int find_first_set (const simd_mask< _Tp, _Abi > &__k)
 
template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int find_last_set (const simd_mask< _Tp, _Abi > &__k)
 
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool all_of (_ExactBool __x) noexcept
 
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool any_of (_ExactBool __x) noexcept
 
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool none_of (_ExactBool __x) noexcept
 
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool some_of (_ExactBool) noexcept
 
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int popcount (_ExactBool __x) noexcept
 
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int find_first_set (_ExactBool)
 
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int find_last_set (_ExactBool)
 

Detailed Description

Data-parallel types library.

Since
C++17

Macro Definition Documentation

◆ __cpp_lib_experimental_parallel_simd

#define __cpp_lib_experimental_parallel_simd

Definition at line 57 of file simd.

Typedef Documentation

◆ __bool_storage_member_type_t

template<size_t _Size>
using __bool_storage_member_type_t = typename __bool_storage_member_type<_Size>::type

Definition at line 958 of file simd.h.

◆ __deduced_simd

template<typename _Tp , size_t _Np>
using __deduced_simd = simd<_Tp, simd_abi::deduce_t<_Tp, _Np> >

Definition at line 2938 of file simd.h.

◆ __deduced_simd_mask

template<typename _Tp , size_t _Np>
using __deduced_simd_mask = simd_mask<_Tp, simd_abi::deduce_t<_Tp, _Np> >

Definition at line 2954 of file simd.h.

◆ __first_of_pack_t

template<typename... _Ts>
using __first_of_pack_t = typename __first_of_pack<_Ts...>::type

Definition at line 512 of file simd.h.

◆ __fixed_size_storage_t

template<typename _Tp , int _Np>
using __fixed_size_storage_t = typename __fixed_size_storage<_Tp, _Np>::type

Definition at line 978 of file simd.h.

◆ __int_for_sizeof_t

template<typename _Tp >
using __int_for_sizeof_t = decltype(__int_for_sizeof<sizeof(_Tp)>())

Definition at line 644 of file simd.h.

◆ __int_with_sizeof_t

template<size_t _Np>
using __int_with_sizeof_t = decltype(__int_for_sizeof<_Np>())

Definition at line 647 of file simd.h.

◆ __intrinsic_type16_t

template<typename _Tp >
using __intrinsic_type16_t = typename __intrinsic_type<_Tp, 16>::type

Definition at line 1091 of file simd.h.

◆ __intrinsic_type2_t

template<typename _Tp >
using __intrinsic_type2_t = typename __intrinsic_type<_Tp, 2>::type

Definition at line 1085 of file simd.h.

◆ __intrinsic_type32_t

template<typename _Tp >
using __intrinsic_type32_t = typename __intrinsic_type<_Tp, 32>::type

Definition at line 1093 of file simd.h.

◆ __intrinsic_type4_t

template<typename _Tp >
using __intrinsic_type4_t = typename __intrinsic_type<_Tp, 4>::type

Definition at line 1087 of file simd.h.

◆ __intrinsic_type64_t

template<typename _Tp >
using __intrinsic_type64_t = typename __intrinsic_type<_Tp, 64>::type

Definition at line 1095 of file simd.h.

◆ __intrinsic_type8_t

template<typename _Tp >
using __intrinsic_type8_t = typename __intrinsic_type<_Tp, 8>::type

Definition at line 1089 of file simd.h.

◆ __intrinsic_type_t

template<typename _Tp , size_t _Size>
using __intrinsic_type_t = typename __intrinsic_type<_Tp, _Size * sizeof(_Tp)>::type

Definition at line 1081 of file simd.h.

◆ __m128

using __m128 = float

Definition at line 75 of file simd.h.

◆ __m128d

using __m128d = double

Definition at line 76 of file simd.h.

◆ __m128i

using __m128i = long long

Definition at line 77 of file simd.h.

◆ __m256

using __m256 = float

Definition at line 78 of file simd.h.

◆ __m256d

using __m256d = double

Definition at line 79 of file simd.h.

◆ __m256i

using __m256i = long long

Definition at line 80 of file simd.h.

◆ __m512

using __m512 = float

Definition at line 81 of file simd.h.

◆ __m512d

using __m512d = double

Definition at line 82 of file simd.h.

◆ __m512i

using __m512i = long long

Definition at line 83 of file simd.h.

◆ __make_dependent_t

template<typename _Tp , typename _Up >
using __make_dependent_t = typename __make_dependent<_Tp, _Up>::type

Definition at line 738 of file simd.h.

◆ __may_alias

template<typename _Tp >
using __may_alias = _Tp

Definition at line 807 of file simd.h.

◆ __value_type_or_identity_t

template<typename _Tp >
using __value_type_or_identity_t = decltype(__value_type_or_identity_impl<_Tp>(int()))

Definition at line 525 of file simd.h.

◆ __vector_type16_t

template<typename _Tp >
using __vector_type16_t = typename __vector_type<_Tp, 16>::type

Definition at line 1519 of file simd.h.

◆ __vector_type2_t

template<typename _Tp >
using __vector_type2_t = typename __vector_type<_Tp, 2>::type

Definition at line 1513 of file simd.h.

◆ __vector_type32_t

template<typename _Tp >
using __vector_type32_t = typename __vector_type<_Tp, 32>::type

Definition at line 1521 of file simd.h.

◆ __vector_type4_t

template<typename _Tp >
using __vector_type4_t = typename __vector_type<_Tp, 4>::type

Definition at line 1515 of file simd.h.

◆ __vector_type64_t

template<typename _Tp >
using __vector_type64_t = typename __vector_type<_Tp, 64>::type

Definition at line 1523 of file simd.h.

◆ __vector_type8_t

template<typename _Tp >
using __vector_type8_t = typename __vector_type<_Tp, 8>::type

Definition at line 1517 of file simd.h.

◆ __vector_type_t

template<typename _Tp , size_t _Size>
using __vector_type_t = typename __vector_type_n<_Tp, _Size>::type

Definition at line 1510 of file simd.h.

◆ _LLong

using _LLong = long long

Definition at line 503 of file simd.h.

◆ _LoadStorePtr

template<typename _Ptr , typename _ValueType , typename = enable_if_t< __is_possible_loadstore_conversion<_Ptr, _ValueType>::value>>
using _LoadStorePtr = _Ptr

Definition at line 556 of file simd.h.

◆ _SanitizedBitMask

template<size_t _Np>
using _SanitizedBitMask = _BitMask<_Np, true>

Definition at line 1106 of file simd.h.

◆ _SChar

using _SChar = signed char

Definition at line 498 of file simd.h.

◆ _SimdWrapper16

template<typename _Tp >
using _SimdWrapper16 = _SimdWrapper<_Tp, 16 / sizeof(_Tp)>

Definition at line 988 of file simd.h.

◆ _SimdWrapper32

template<typename _Tp >
using _SimdWrapper32 = _SimdWrapper<_Tp, 32 / sizeof(_Tp)>

Definition at line 990 of file simd.h.

◆ _SimdWrapper64

template<typename _Tp >
using _SimdWrapper64 = _SimdWrapper<_Tp, 64 / sizeof(_Tp)>

Definition at line 992 of file simd.h.

◆ _SimdWrapper8

template<typename _Tp >
using _SimdWrapper8 = _SimdWrapper<_Tp, 8 / sizeof(_Tp)>

Definition at line 986 of file simd.h.

◆ _SizeConstant

template<size_t _Xp>
using _SizeConstant = integral_constant<size_t, _Xp>

Definition at line 209 of file simd.h.

◆ _UChar

using _UChar = unsigned char

Definition at line 497 of file simd.h.

◆ _UInt

using _UInt = unsigned int

Definition at line 500 of file simd.h.

◆ _ULLong

using _ULLong = unsigned long long

Definition at line 502 of file simd.h.

◆ _ULong

using _ULong = unsigned long

Definition at line 501 of file simd.h.

◆ _UShort

using _UShort = unsigned short

Definition at line 499 of file simd.h.

◆ _ValuePreserving

template<typename _From , typename _To , typename = enable_if_t<negation< __is_narrowing_conversion<__remove_cvref_t<_From>, _To>>::value>>
using _ValuePreserving = _From

Definition at line 1063 of file simd.h.

◆ _ValuePreservingOrInt

template<typename _From , typename _To , typename _DecayedFrom = __remove_cvref_t<_From>, typename = enable_if_t<conjunction< is_convertible<_From, _To>, disjunction< is_same<_DecayedFrom, _To>, is_same<_DecayedFrom, int>, conjunction<is_same<_DecayedFrom, _UInt>, is_unsigned<_To>>, negation<__is_narrowing_conversion<_DecayedFrom, _To>>>>::value>>
using _ValuePreservingOrInt = _From

Definition at line 1073 of file simd.h.

◆ _Vectorizable

template<typename _Tp , typename = enable_if_t<__is_vectorizable_v<_Tp>>>
using _Vectorizable = _Tp

Definition at line 541 of file simd.h.

◆ _VectorTraits

template<typename _Tp , typename = typename _VectorTraitsImpl<_Tp>::type>
using _VectorTraits = _VectorTraitsImpl<_Tp>

Definition at line 1596 of file simd.h.

◆ fixed_size_simd

template<typename _Tp , int _Np>
using fixed_size_simd = simd<_Tp, simd_abi::fixed_size<_Np> >

Definition at line 2935 of file simd.h.

◆ fixed_size_simd_mask

template<typename _Tp , int _Np>
using fixed_size_simd_mask = simd_mask<_Tp, simd_abi::fixed_size<_Np> >

Definition at line 2951 of file simd.h.

◆ native_simd

template<typename _Tp >
using native_simd = simd<_Tp, simd_abi::native<_Tp> >

Definition at line 2932 of file simd.h.

◆ native_simd_mask

template<typename _Tp >
using native_simd_mask = simd_mask<_Tp, simd_abi::native<_Tp> >

Definition at line 2948 of file simd.h.

◆ rebind_simd_t

template<typename _Tp , typename _V >
using rebind_simd_t = typename rebind_simd<_Tp, _V>::type

Definition at line 2896 of file simd.h.

◆ resize_simd_t

template<int _Np, typename _V >
using resize_simd_t = typename resize_simd<_Np, _V>::type

Definition at line 2913 of file simd.h.

◆ safe_make_signed_t

template<typename _Tp >
using safe_make_signed_t = typename __safe_make_signed<_Tp>::type

Definition at line 2993 of file simd.h.

Function Documentation

◆ __abi_bytes_impl() [1/2]

template<template< int > class _Abi, int _Bytes>
constexpr int __abi_bytes_impl ( _Abi< _Bytes > *  )
constexpr

Definition at line 671 of file simd.h.

◆ __abi_bytes_impl() [2/2]

template<typename _Tp >
constexpr int __abi_bytes_impl ( _Tp *  )
constexpr

Definition at line 676 of file simd.h.

◆ __and()

template<typename _TW >
_GLIBCXX_SIMD_INTRINSIC constexpr _TW __and ( _TW  __a,
_TW  __b 
)
constexprnoexcept

Definition at line 1891 of file simd.h.

◆ __andnot()

template<typename _TW >
_GLIBCXX_SIMD_INTRINSIC constexpr _TW __andnot ( _TW  __a,
_TW  __b 
)
constexprnoexcept

Definition at line 1978 of file simd.h.

◆ __as_vector()

template<typename _V >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __as_vector ( _V  __x)
constexpr

Definition at line 1602 of file simd.h.

◆ __as_wrapper()

template<size_t _Np = 0, typename _V >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __as_wrapper ( _V  __x)
constexpr

Definition at line 1618 of file simd.h.

◆ __auto_bitcast() [1/2]

template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC constexpr _AutoCast< typename _SimdWrapper< _Tp, _Np >::_BuiltinType > __auto_bitcast ( const _SimdWrapper< _Tp, _Np > &  __x)
constexpr

Definition at line 2306 of file simd.h.

◆ __auto_bitcast() [2/2]

template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr _AutoCast< _Tp > __auto_bitcast ( const _Tp &  __x)
constexpr

Definition at line 2300 of file simd.h.

◆ __bit_cast()

template<typename _To , typename _From >
_GLIBCXX_SIMD_INTRINSIC constexpr _To __bit_cast ( const _From  __x)
constexpr

Definition at line 1726 of file simd.h.

◆ __call_with_n_evaluations() [1/2]

template<size_t _Np, typename _F0 , typename _FArgs >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __call_with_n_evaluations ( _F0 &&  __f0,
_FArgs &&  __fargs 
)
constexpr

Definition at line 469 of file simd.h.

◆ __call_with_n_evaluations() [2/2]

template<size_t... _I, typename _F0 , typename _FArgs >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __call_with_n_evaluations ( index_sequence< _I... >  ,
_F0 &&  __f0,
_FArgs &&  __fargs 
)
constexpr

Definition at line 464 of file simd.h.

◆ __call_with_subscripts() [1/2]

template<size_t _Np, size_t _First = 0, typename _Tp , typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __call_with_subscripts ( _Tp &&  __x,
_Fp &&  __fun 
)
constexpr

Definition at line 486 of file simd.h.

◆ __call_with_subscripts() [2/2]

template<size_t _First = 0, size_t... _It, typename _Tp , typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __call_with_subscripts ( _Tp &&  __x,
index_sequence< _It... >  ,
_Fp &&  __fun 
)
constexpr

Definition at line 481 of file simd.h.

◆ __concat()

template<typename _Tp , typename _TVT = _VectorTraits<_Tp>, typename _R = __vector_type_t<typename _TVT::value_type, _TVT::_S_full_size * 2>>
constexpr _R __concat ( _Tp  a_,
_Tp  b_ 
)
constexpr

Definition at line 2028 of file simd.h.

◆ __div_roundup()

constexpr size_t __div_roundup ( size_t  __a,
size_t  __b 
)
inlineconstexpr

Definition at line 782 of file simd.h.

◆ __execute_n_times()

template<size_t _Np, typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr void __execute_n_times ( _Fp &&  __f)
constexpr

Definition at line 437 of file simd.h.

◆ __execute_on_index_sequence() [1/2]

template<typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr void __execute_on_index_sequence ( _Fp &&  ,
index_sequence<>   
)
constexpr

Definition at line 432 of file simd.h.

◆ __execute_on_index_sequence() [2/2]

template<typename _Fp , size_t... _I>
_GLIBCXX_SIMD_INTRINSIC constexpr void __execute_on_index_sequence ( _Fp &&  __f,
index_sequence< _I... >   
)
constexpr

Definition at line 427 of file simd.h.

◆ __execute_on_index_sequence_with_return()

template<typename _R , typename _Fp , size_t... _I>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __execute_on_index_sequence_with_return ( _Fp &&  __f,
index_sequence< _I... >   
)
constexpr

Definition at line 448 of file simd.h.

◆ __extract()

template<int _Offset, int _SplitBy, typename _Tp , typename _TVT = _VectorTraits<_Tp>, typename _R = __vector_type_t<typename _TVT::value_type, _TVT::_S_full_size / _SplitBy>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __extract ( _Tp  __in)
constexpr

Definition at line 2173 of file simd.h.

◆ __extract_center() [1/2]

template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC _SimdWrapper< _Tp, _Np/2 > __extract_center ( _SimdWrapper< _Tp, _Np >  __x)

Definition at line 3818 of file simd.h.

◆ __extract_center() [2/2]

template<typename _Tp , typename _A0 , typename... _As>
_GLIBCXX_SIMD_INTRINSIC _SimdWrapper< _Tp, _SimdTuple< _Tp, _A0, _As... >::_S_size()/2 > __extract_center ( const _SimdTuple< _Tp, _A0, _As... > &  __x)

Definition at line 3865 of file simd.h.

◆ __extract_part() [1/2]

template<int Index, int Parts, int _Combine = 1, typename _Tp , typename _A0 , typename... _As>
_GLIBCXX_SIMD_INTRINSIC auto __extract_part ( const _SimdTuple< _Tp, _A0, _As... > &  __x)

Definition at line 946 of file simd_fixed_size.h.

◆ __extract_part() [2/2]

template<int _Index, int _Total, int _Combine = 1, typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC _SimdWrapper< _Tp, _Np/_Total *_Combine > __extract_part ( const _SimdWrapper< _Tp, _Np >  __x)

Definition at line 207 of file simd_builtin.h.

◆ __generate_from_n_evaluations()

template<size_t _Np, typename _R , typename _Fp >
_GLIBCXX_SIMD_INTRINSIC constexpr _R __generate_from_n_evaluations ( _Fp &&  __f)
constexpr

Definition at line 453 of file simd.h.

◆ __generate_vector()

template<typename _V , typename _VVT = _VectorTraits<_V>, typename _Gp >
_GLIBCXX_SIMD_INTRINSIC constexpr _V __generate_vector ( _Gp &&  __gen)
constexpr

Definition at line 1816 of file simd.h.

◆ __generate_vector_impl()

template<typename _Tp , size_t _Np, typename _Gp , size_t... _I>
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _Tp, _Np > __generate_vector_impl ( _Gp &&  __gen,
index_sequence< _I... >   
)
constexpr

Definition at line 1808 of file simd.h.

◆ __hi128()

template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __hi128 ( _Tp  __x)
constexpr

Definition at line 2260 of file simd.h.

◆ __hi256()

template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __hi256 ( _Tp  __x)
constexpr

Definition at line 2278 of file simd.h.

◆ __hi64()

template<typename _Tp , typename _R = __vector_type8_t<typename _VectorTraits<_Tp>::value_type>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __hi64 ( _Tp  __x)
constexpr

Definition at line 2231 of file simd.h.

◆ __hi64z()

template<typename _Tp , typename _R = __vector_type8_t<typename _VectorTraits<_Tp>::value_type>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __hi64z ( _Tp  __x)
constexpr

Definition at line 2243 of file simd.h.

◆ __int_for_sizeof()

template<size_t _Bytes>
constexpr auto __int_for_sizeof ( )
constexpr

Definition at line 578 of file simd.h.

◆ __intrin_bitcast()

template<typename _To , typename _From >
_GLIBCXX_SIMD_INTRINSIC constexpr _To __intrin_bitcast ( _From  __v)
constexpr

Definition at line 1639 of file simd.h.

◆ __invoke_ub()

template<typename... _Args>
_GLIBCXX_SIMD_ALWAYS_INLINE void __invoke_ub ( const char *  __msg,
const _Args &...  __args 
)

Definition at line 746 of file simd.h.

◆ __is_avx512_abi()

template<typename _Abi >
constexpr bool __is_avx512_abi ( )
constexpr

Definition at line 715 of file simd.h.

◆ __is_avx_abi()

template<typename _Abi >
constexpr bool __is_avx_abi ( )
constexpr

Definition at line 704 of file simd.h.

◆ __is_builtin_bitmask_abi()

template<typename _Abi >
constexpr bool __is_builtin_bitmask_abi ( )
constexpr

Definition at line 687 of file simd.h.

◆ __is_neon_abi()

template<typename _Abi >
constexpr bool __is_neon_abi ( )
constexpr

Definition at line 725 of file simd.h.

◆ __is_scalar_abi()

template<typename _Abi >
constexpr bool __is_scalar_abi ( )
constexpr

Definition at line 664 of file simd.h.

◆ __is_sse_abi()

template<typename _Abi >
constexpr bool __is_sse_abi ( )
constexpr

Definition at line 694 of file simd.h.

◆ __lo128()

template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __lo128 ( _Tp  __x)
constexpr

Definition at line 2255 of file simd.h.

◆ __lo256()

template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __lo256 ( _Tp  __x)
constexpr

Definition at line 2270 of file simd.h.

◆ __lo64()

template<typename _Tp , typename _R = __vector_type8_t<typename _VectorTraits<_Tp>::value_type>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __lo64 ( _Tp  __x)
constexpr

Definition at line 2220 of file simd.h.

◆ __make_vector()

template<typename _Tp , typename... _Args>
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _Tp, sizeof...(_Args)> __make_vector ( const _Args &...  __args)
constexpr

Definition at line 1788 of file simd.h.

◆ __not()

template<typename _Tp , typename _TVT = _VectorTraits<_Tp>>
_GLIBCXX_SIMD_INTRINSIC constexpr _Tp __not ( _Tp  __a)
constexprnoexcept

Definition at line 2013 of file simd.h.

◆ __or()

template<typename _TW >
_GLIBCXX_SIMD_INTRINSIC constexpr _TW __or ( _TW  __a,
_TW  __b 
)
constexprnoexcept

Definition at line 1866 of file simd.h.

◆ __size_or_zero_dispatch() [1/2]

template<typename _Tp , typename _Ap >
constexpr size_t __size_or_zero_dispatch ( float  )
constexpr

Definition at line 772 of file simd.h.

◆ __size_or_zero_dispatch() [2/2]

template<typename _Tp , typename _Ap , size_t _Np = simd_size<_Tp, _Ap>::value>
constexpr size_t __size_or_zero_dispatch ( int  )
constexpr

Definition at line 767 of file simd.h.

◆ __split_wrapper()

template<size_t... _Sizes, typename _Tp , typename... _As>
auto __split_wrapper ( _SizeList< _Sizes... >  ,
const _SimdTuple< _Tp, _As... > &  __x 
)

Definition at line 3877 of file simd.h.

◆ __store_pack_of_simd()

template<typename _Tp , typename _A0 , typename... _As>
_GLIBCXX_SIMD_INTRINSIC void __store_pack_of_simd ( char *  __mem,
const simd< _Tp, _A0 > &  __x0,
const simd< _Tp, _As > &...  __xs 
)

Definition at line 4123 of file simd.h.

◆ __subscript_in_pack()

template<size_t _I, typename _Tp , typename _Ap , typename... _As>
_GLIBCXX_SIMD_INTRINSIC constexpr _Tp __subscript_in_pack ( const simd< _Tp, _Ap > &  __x,
const simd< _Tp, _As > &...  __xs 
)
constexpr

Definition at line 4111 of file simd.h.

◆ __to_intrin()

template<typename _Tp , typename _TVT = _VectorTraits<_Tp>, typename _R = __intrinsic_type_t<typename _TVT::value_type, _TVT::_S_full_size>>
_GLIBCXX_SIMD_INTRINSIC constexpr _R __to_intrin ( _Tp  __x)
constexpr

Definition at line 1770 of file simd.h.

◆ __to_value_type_or_member_type() [1/2]

template<typename _V >
_GLIBCXX_SIMD_INTRINSIC constexpr auto __to_value_type_or_member_type ( const _V &  __x) -> decltype(__data(__x))
constexpr

Definition at line 944 of file simd.h.

◆ __to_value_type_or_member_type() [2/2]

template<typename _V >
_GLIBCXX_SIMD_INTRINSIC constexpr const _V::value_type & __to_value_type_or_member_type ( const typename _V::value_type &  __x)
constexpr

Definition at line 949 of file simd.h.

◆ __vector_bitcast() [1/2]

template<typename _To , size_t _NN = 0, typename _From , typename _FromVT = _VectorTraits<_From>, size_t _Np = _NN == 0 ? sizeof(_From) / sizeof(_To) : _NN>
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _To, _Np > __vector_bitcast ( _From  __x)
constexpr

Definition at line 1686 of file simd.h.

◆ __vector_bitcast() [2/2]

template<typename _To , size_t _NN = 0, typename _Tp , size_t _Nx, size_t _Np = _NN == 0 ? sizeof(_SimdWrapper<_Tp, _Nx>) / sizeof(_To) : _NN>
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _To, _Np > __vector_bitcast ( const _SimdWrapper< _Tp, _Nx > &  __x)
constexpr

Definition at line 1696 of file simd.h.

◆ __vector_broadcast()

template<size_t _Np, typename _Tp >
_GLIBCXX_SIMD_INTRINSIC constexpr __vector_type_t< _Tp, _Np > __vector_broadcast ( _Tp  __x)
constexpr

Definition at line 1797 of file simd.h.

◆ __vectorized_sizeof()

template<typename _Tp >
constexpr size_t __vectorized_sizeof ( )
constexpr

Definition at line 2707 of file simd.h.

◆ __xor()

template<typename _TW >
_GLIBCXX_SIMD_INTRINSIC constexpr _TW __xor ( _TW  __a,
_TW  __b 
)
constexprnoexcept

Definition at line 1841 of file simd.h.

◆ __zero_extend()

template<typename _Tp , typename _TVT = _VectorTraits<_Tp>>
_GLIBCXX_SIMD_INTRINSIC _ZeroExtendProxy< _Tp, _TVT > __zero_extend ( _Tp  __x)

Definition at line 2161 of file simd.h.

◆ all_of() [1/2]

_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool all_of ( _ExactBool  __x)
noexcept

Definition at line 4926 of file simd.h.

◆ all_of() [2/2]

template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool all_of ( const simd_mask< _Tp, _Abi > &  __k)
noexcept

Definition at line 4817 of file simd.h.

◆ any_of() [1/2]

_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool any_of ( _ExactBool  __x)
noexcept

Definition at line 4930 of file simd.h.

◆ any_of() [2/2]

template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool any_of ( const simd_mask< _Tp, _Abi > &  __k)
noexcept

Definition at line 4832 of file simd.h.

◆ clamp()

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR simd< _Tp, _Ap > clamp ( const simd< _Tp, _Ap > &  __v,
const simd< _Tp, _Ap > &  __lo,
const simd< _Tp, _Ap > &  __hi 
)

Definition at line 3753 of file simd.h.

◆ concat() [1/2]

template<typename _Tp , typename _Abi , size_t _Np>
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR __deduced_simd< _Tp, simd_size_v< _Tp, _Abi > *_Np > concat ( const array< simd< _Tp, _Abi >, _Np > &  __x)

Definition at line 4159 of file simd.h.

◆ concat() [2/2]

template<typename _Tp , typename... _As, typename = __detail::__odr_helper>
_GLIBCXX_SIMD_CONSTEXPR simd< _Tp, simd_abi::deduce_t< _Tp,(simd_size_v< _Tp, _As >+...)> > concat ( const simd< _Tp, _As > &...  __xs)
inline

Definition at line 4137 of file simd.h.

◆ find_first_set() [1/2]

_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int find_first_set ( _ExactBool  )

Definition at line 4946 of file simd.h.

◆ find_first_set() [2/2]

template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int find_first_set ( const simd_mask< _Tp, _Abi > &  __k)

Definition at line 4891 of file simd.h.

◆ find_last_set() [1/2]

_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int find_last_set ( _ExactBool  )

Definition at line 4950 of file simd.h.

◆ find_last_set() [2/2]

template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int find_last_set ( const simd_mask< _Tp, _Abi > &  __k)

Definition at line 4909 of file simd.h.

◆ hmax() [1/2]

template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _V::value_type hmax ( const const_where_expression< _M, _V > &  __x)
noexcept

Definition at line 3708 of file simd.h.

◆ hmax() [2/2]

template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _Tp hmax ( const simd< _Tp, _Abi > &  __v)
noexcept

Definition at line 3682 of file simd.h.

◆ hmin() [1/2]

template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _V::value_type hmin ( const const_where_expression< _M, _V > &  __x)
noexcept

Definition at line 3690 of file simd.h.

◆ hmin() [2/2]

template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _Tp hmin ( const simd< _Tp, _Abi > &  __v)
noexcept

Definition at line 3675 of file simd.h.

◆ max()

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR simd< _Tp, _Ap > max ( const simd< _Tp, _Ap > &  __a,
const simd< _Tp, _Ap > &  __b 
)

Definition at line 3737 of file simd.h.

◆ min()

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR simd< _Tp, _Ap > min ( const simd< _Tp, _Ap > &  __a,
const simd< _Tp, _Ap > &  __b 
)

Definition at line 3732 of file simd.h.

◆ minmax()

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR pair< simd< _Tp, _Ap >, simd< _Tp, _Ap > > minmax ( const simd< _Tp, _Ap > &  __a,
const simd< _Tp, _Ap > &  __b 
)

Definition at line 3743 of file simd.h.

◆ none_of() [1/2]

_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool none_of ( _ExactBool  __x)
noexcept

Definition at line 4934 of file simd.h.

◆ none_of() [2/2]

template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool none_of ( const simd_mask< _Tp, _Abi > &  __k)
noexcept

Definition at line 4847 of file simd.h.

◆ popcount() [1/2]

_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int popcount ( _ExactBool  __x)
noexcept

Definition at line 4942 of file simd.h.

◆ popcount() [2/2]

template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR int popcount ( const simd_mask< _Tp, _Abi > &  __k)
noexcept

Definition at line 4877 of file simd.h.

◆ reduce() [1/7]

template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce ( const const_where_expression< _M, _V > &  __x,
bit_and<>  __binary_op 
)

Definition at line 3660 of file simd.h.

◆ reduce() [2/7]

template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce ( const const_where_expression< _M, _V > &  __x,
bit_or<>  __binary_op 
)

Definition at line 3665 of file simd.h.

◆ reduce() [3/7]

template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce ( const const_where_expression< _M, _V > &  __x,
bit_xor<>  __binary_op 
)

Definition at line 3670 of file simd.h.

◆ reduce() [4/7]

template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce ( const const_where_expression< _M, _V > &  __x,
multiplies<>  __binary_op 
)

Definition at line 3655 of file simd.h.

◆ reduce() [5/7]

template<typename _M , typename _V >
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce ( const const_where_expression< _M, _V > &  __x,
plus<>  __binary_op = {} 
)

Definition at line 3650 of file simd.h.

◆ reduce() [6/7]

template<typename _M , typename _V , typename _BinaryOperation = plus<>>
_GLIBCXX_SIMD_INTRINSIC _V::value_type reduce ( const const_where_expression< _M, _V > &  __x,
typename _V::value_type  __identity_element,
_BinaryOperation  __binary_op 
)

Definition at line 3635 of file simd.h.

◆ reduce() [7/7]

template<typename _Tp , typename _Abi , typename _BinaryOperation = plus<>>
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _Tp reduce ( const simd< _Tp, _Abi > &  __v,
_BinaryOperation  __binary_op = _BinaryOperation() 
)

Definition at line 3629 of file simd.h.

◆ simd_cast()

template<typename _Tp , typename _Up , typename _Ap , typename _To = __value_type_or_identity_t<_Tp>>
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR auto simd_cast ( const simd< _ValuePreserving< _Up, _To >, _Ap > &  __x) -> decltype(static_simd_cast<_Tp>(__x))

Definition at line 3098 of file simd.h.

◆ some_of() [1/2]

_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool some_of ( _ExactBool  )
noexcept

Definition at line 4938 of file simd.h.

◆ some_of() [2/2]

template<typename _Tp , typename _Abi >
_GLIBCXX_SIMD_ALWAYS_INLINE _GLIBCXX_SIMD_CONSTEXPR bool some_of ( const simd_mask< _Tp, _Abi > &  __k)
noexcept

Definition at line 4862 of file simd.h.

◆ split() [1/3]

template<size_t... _Sizes, typename _Tp , typename _Ap , typename = enable_if_t<((_Sizes + ...) == simd<_Tp, _Ap>::size())>>
tuple< simd< _Tp, simd_abi::deduce_t< _Tp, _Sizes > >... > split ( const simd< _Tp, _Ap > &  __x)
inline

Definition at line 4000 of file simd.h.

◆ split() [2/3]

template<typename _V , typename _Ap , size_t Parts = simd_size_v<typename _V::value_type, _Ap> / _V::size()>
enable_if_t< simd_size_v< typename _V::value_type, _Ap >==Parts *_V::size() &&is_simd_v< _V >, array< _V, Parts > > split ( const simd< typename _V::value_type, _Ap > &  __x)

Definition at line 3891 of file simd.h.

◆ split() [3/3]

template<typename _V , typename _Ap , size_t _Parts = simd_size_v<typename _V::simd_type::value_type, _Ap> / _V::size()>
enable_if_t< is_simd_mask_v< _V > &&simd_size_v< typename _V::simd_type::value_type, _Ap >==_Parts *_V::size(), array< _V, _Parts > > split ( const simd_mask< typename _V::simd_type::value_type, _Ap > &  __x)

Definition at line 3963 of file simd.h.

◆ static_simd_cast()

template<typename _Tp , typename _Up , typename _Ap , typename _R = typename __static_simd_cast_return_type<_Tp, _Up, _Ap>::type>
_GLIBCXX_SIMD_INTRINSIC _GLIBCXX_SIMD_CONSTEXPR _R static_simd_cast ( const simd< _Up, _Ap > &  __x)

Definition at line 3017 of file simd.h.

◆ to_compatible() [1/2]

template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC enable_if_t<(_Np==simd< _Tp >::size()), simd< _Tp > > to_compatible ( const simd< _Tp, simd_abi::fixed_size< _Np > > &  __x)

Definition at line 3232 of file simd.h.

◆ to_compatible() [2/2]

template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC enable_if_t<(_Np==simd_mask< _Tp >::size()), simd_mask< _Tp > > to_compatible ( const simd_mask< _Tp, simd_abi::fixed_size< _Np > > &  __x)

Definition at line 3242 of file simd.h.

◆ to_fixed_size() [1/4]

template<typename _Tp , int _Np>
_GLIBCXX_SIMD_INTRINSIC fixed_size_simd< _Tp, _Np > to_fixed_size ( const fixed_size_simd< _Tp, _Np > &  __x)

Definition at line 3184 of file simd.h.

◆ to_fixed_size() [2/4]

template<typename _Tp , int _Np>
_GLIBCXX_SIMD_INTRINSIC fixed_size_simd_mask< _Tp, _Np > to_fixed_size ( const fixed_size_simd_mask< _Tp, _Np > &  __x)

Definition at line 3189 of file simd.h.

◆ to_fixed_size() [3/4]

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC auto to_fixed_size ( const simd< _Tp, _Ap > &  __x)

Definition at line 3194 of file simd.h.

◆ to_fixed_size() [4/4]

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC auto to_fixed_size ( const simd_mask< _Tp, _Ap > &  __x)

Definition at line 3202 of file simd.h.

◆ to_native() [1/2]

template<typename _Tp , int _Np>
_GLIBCXX_SIMD_INTRINSIC enable_if_t<(_Np==native_simd< _Tp >::size()), native_simd< _Tp > > to_native ( const fixed_size_simd< _Tp, _Np > &  __x)

Definition at line 3214 of file simd.h.

◆ to_native() [2/2]

template<typename _Tp , size_t _Np>
_GLIBCXX_SIMD_INTRINSIC enable_if_t<(_Np==native_simd_mask< _Tp >::size()), native_simd_mask< _Tp > > to_native ( const fixed_size_simd_mask< _Tp, _Np > &  __x)

Definition at line 3224 of file simd.h.

◆ where() [1/6]

template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC where_expression< bool, _Tp > where ( _ExactBool  __k,
_Tp &  __value 
)

Definition at line 3539 of file simd.h.

◆ where() [2/6]

template<typename _Tp >
_GLIBCXX_SIMD_INTRINSIC const_where_expression< bool, _Tp > where ( _ExactBool  __k,
const _Tp &  __value 
)

Definition at line 3544 of file simd.h.

◆ where() [3/6]

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC const_where_expression< simd_mask< _Tp, _Ap >, simd_mask< _Tp, _Ap > > where ( const remove_const_t< simd_mask< _Tp, _Ap > > &  __k,
const simd_mask< _Tp, _Ap > &  __value 
)

Definition at line 3533 of file simd.h.

◆ where() [4/6]

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC where_expression< simd_mask< _Tp, _Ap >, simd_mask< _Tp, _Ap > > where ( const remove_const_t< simd_mask< _Tp, _Ap > > &  __k,
simd_mask< _Tp, _Ap > &  __value 
)

Definition at line 3526 of file simd.h.

◆ where() [5/6]

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC const_where_expression< simd_mask< _Tp, _Ap >, simd< _Tp, _Ap > > where ( const typename simd< _Tp, _Ap >::mask_type &  __k,
const simd< _Tp, _Ap > &  __value 
)

Definition at line 3519 of file simd.h.

◆ where() [6/6]

template<typename _Tp , typename _Ap >
_GLIBCXX_SIMD_INTRINSIC where_expression< simd_mask< _Tp, _Ap >, simd< _Tp, _Ap > > where ( const typename simd< _Tp, _Ap >::mask_type &  __k,
simd< _Tp, _Ap > &  __value 
)

Definition at line 3513 of file simd.h.

Variable Documentation

◆ __abi_bytes_v

template<typename _Abi >
constexpr int __abi_bytes_v
inlineconstexpr

Definition at line 680 of file simd.h.

◆ __have_avx

constexpr bool __have_avx
inlineconstexpr

Definition at line 219 of file simd.h.

◆ __have_avx2

constexpr bool __have_avx2
inlineconstexpr

Definition at line 220 of file simd.h.

◆ __have_avx512bitalg

constexpr bool __have_avx512bitalg
inlineconstexpr

Definition at line 235 of file simd.h.

◆ __have_avx512bw

constexpr bool __have_avx512bw
inlineconstexpr

Definition at line 232 of file simd.h.

◆ __have_avx512bw_vl

constexpr bool __have_avx512bw_vl
inlineconstexpr

Definition at line 234 of file simd.h.

◆ __have_avx512cd

constexpr bool __have_avx512cd
inlineconstexpr

Definition at line 239 of file simd.h.

◆ __have_avx512dq

constexpr bool __have_avx512dq
inlineconstexpr

Definition at line 230 of file simd.h.

◆ __have_avx512dq_vl

constexpr bool __have_avx512dq_vl
inlineconstexpr

Definition at line 233 of file simd.h.

◆ __have_avx512f

constexpr bool __have_avx512f
inlineconstexpr

Definition at line 229 of file simd.h.

◆ __have_avx512ifma

constexpr bool __have_avx512ifma
inlineconstexpr

Definition at line 238 of file simd.h.

◆ __have_avx512vbmi

constexpr bool __have_avx512vbmi
inlineconstexpr

Definition at line 237 of file simd.h.

◆ __have_avx512vbmi2

constexpr bool __have_avx512vbmi2
inlineconstexpr

Definition at line 236 of file simd.h.

◆ __have_avx512vl

constexpr bool __have_avx512vl
inlineconstexpr

Definition at line 231 of file simd.h.

◆ __have_avx512vnni

constexpr bool __have_avx512vnni
inlineconstexpr

Definition at line 240 of file simd.h.

◆ __have_avx512vp2intersect

constexpr bool __have_avx512vp2intersect
inlineconstexpr

Definition at line 242 of file simd.h.

◆ __have_avx512vpopcntdq

constexpr bool __have_avx512vpopcntdq
inlineconstexpr

Definition at line 241 of file simd.h.

◆ __have_bmi

constexpr bool __have_bmi
inlineconstexpr

Definition at line 221 of file simd.h.

◆ __have_bmi2

constexpr bool __have_bmi2
inlineconstexpr

Definition at line 222 of file simd.h.

◆ __have_f16c

constexpr bool __have_f16c
inlineconstexpr

Definition at line 227 of file simd.h.

◆ __have_fma

constexpr bool __have_fma
inlineconstexpr

Definition at line 225 of file simd.h.

◆ __have_fma4

constexpr bool __have_fma4
inlineconstexpr

Definition at line 226 of file simd.h.

◆ __have_lzcnt

constexpr bool __have_lzcnt
inlineconstexpr

Definition at line 223 of file simd.h.

◆ __have_mmx

constexpr bool __have_mmx
inlineconstexpr

Definition at line 211 of file simd.h.

◆ __have_neon

constexpr bool __have_neon
inlineconstexpr

Definition at line 244 of file simd.h.

◆ __have_neon_a32

constexpr bool __have_neon_a32
inlineconstexpr

Definition at line 245 of file simd.h.

◆ __have_neon_a64

constexpr bool __have_neon_a64
inlineconstexpr

Definition at line 246 of file simd.h.

◆ __have_popcnt

constexpr bool __have_popcnt
inlineconstexpr

Definition at line 228 of file simd.h.

◆ __have_power10vec

constexpr bool __have_power10vec
inlineconstexpr

Definition at line 259 of file simd.h.

◆ __have_power8vec

constexpr bool __have_power8vec
inlineconstexpr

Definition at line 269 of file simd.h.

◆ __have_power9vec

constexpr bool __have_power9vec
inlineconstexpr

Definition at line 264 of file simd.h.

◆ __have_power_vmx

constexpr bool __have_power_vmx
inlineconstexpr

Definition at line 279 of file simd.h.

◆ __have_power_vsx

constexpr bool __have_power_vsx
inlineconstexpr

Definition at line 274 of file simd.h.

◆ __have_sse

constexpr bool __have_sse
inlineconstexpr

Definition at line 212 of file simd.h.

◆ __have_sse2

constexpr bool __have_sse2
inlineconstexpr

Definition at line 213 of file simd.h.

◆ __have_sse3

constexpr bool __have_sse3
inlineconstexpr

Definition at line 214 of file simd.h.

◆ __have_sse4_1

constexpr bool __have_sse4_1
inlineconstexpr

Definition at line 216 of file simd.h.

◆ __have_sse4_2

constexpr bool __have_sse4_2
inlineconstexpr

Definition at line 217 of file simd.h.

◆ __have_sse4a

constexpr bool __have_sse4a
inlineconstexpr

Definition at line 224 of file simd.h.

◆ __have_ssse3

constexpr bool __have_ssse3
inlineconstexpr

Definition at line 215 of file simd.h.

◆ __have_xop

constexpr bool __have_xop
inlineconstexpr

Definition at line 218 of file simd.h.

◆ __is_bitmask_v

template<typename _Tp >
constexpr bool __is_bitmask_v
inlineconstexpr

Definition at line 564 of file simd.h.

◆ __is_fixed_size_abi_v

template<typename _Tp >
constexpr bool __is_fixed_size_abi_v
inlineconstexpr

Definition at line 658 of file simd.h.

◆ __is_intrinsic_type_v

template<typename _Tp >
constexpr bool __is_intrinsic_type_v
inlineconstexpr

Definition at line 1560 of file simd.h.

◆ __is_simd_wrapper_v

template<typename _Tp >
constexpr bool __is_simd_wrapper_v
inlineconstexpr

Definition at line 1003 of file simd.h.

◆ __is_vector_type_v

template<typename _Tp >
constexpr bool __is_vector_type_v
inlineconstexpr

Definition at line 1539 of file simd.h.

◆ __is_vectorizable_v

template<typename _Tp >
constexpr bool __is_vectorizable_v
inlineconstexpr

Definition at line 537 of file simd.h.

◆ __min_vector_size

template<typename _Tp = void>
constexpr int __min_vector_size
inlinestaticconstexpr

Definition at line 1459 of file simd.h.

◆ __min_vector_size< void >

template<>
constexpr int __min_vector_size< void >
inlineconstexpr

Definition at line 1466 of file simd.h.

◆ __size_or_zero_v

template<typename _Tp , typename _Ap >
constexpr size_t __size_or_zero_v
inlineconstexpr

Definition at line 776 of file simd.h.

◆ __support_neon_float

constexpr bool __support_neon_float
inlineconstexpr

Definition at line 247 of file simd.h.

◆ element_aligned

constexpr element_aligned_tag element_aligned
inlineconstexpr

Definition at line 200 of file simd.h.

◆ is_abi_tag_v

template<typename _Tp >
constexpr bool is_abi_tag_v
inlineconstexpr

Definition at line 2821 of file simd.h.

◆ is_simd_mask_v

template<typename _Tp >
constexpr bool is_simd_mask_v
inlineconstexpr

Definition at line 2834 of file simd.h.

◆ is_simd_v

template<typename _Tp >
constexpr bool is_simd_v
inlineconstexpr

Definition at line 2828 of file simd.h.

◆ memory_alignment_v

template<typename _Tp , typename _Up = typename _Tp::value_type>
constexpr size_t memory_alignment_v
inlineconstexpr

Definition at line 2922 of file simd.h.

◆ overaligned

template<size_t _Np>
constexpr overaligned_tag<_Np> overaligned
inlineconstexpr

Definition at line 205 of file simd.h.

◆ simd_size_v

template<typename _Tp , typename _Abi = simd_abi::__default_abi<_Tp>>
constexpr size_t simd_size_v
inlineconstexpr

Definition at line 2850 of file simd.h.

◆ vector_aligned

constexpr vector_aligned_tag vector_aligned
inlineconstexpr

Definition at line 202 of file simd.h.