Home
last modified time | relevance | path

Searched refs:_mm256_and_pd (Results 1 – 25 of 316) sorted by relevance

12345678910>>...13

/dports/devel/inastemp/inastemp-0.2.4/Src/AVX/
H A DInaVecAVXDouble.hpp374 return _mm256_and_pd(greater, ones); in isPositive()
380 return _mm256_and_pd(less, ones); in isNegative()
386 return _mm256_and_pd(greater, ones); in isPositiveStrict()
392 return _mm256_and_pd(less, ones); in isNegativeStrict()
398 return _mm256_and_pd(equalZero, ones); in isZero()
404 return _mm256_and_pd(equalZero, ones); in isNotZero()
451 return _mm256_and_pd(testResult, ones); in IsLowerOrEqual()
457 return _mm256_and_pd(testResult, ones); in IsLower()
463 return _mm256_and_pd(testResult, ones); in IsGreaterOrEqual()
469 return _mm256_and_pd(testResult, ones); in IsGreater()
[all …]
/dports/science/gromacs/gromacs-2021.4/src/gromacs/simd/impl_x86_avx_256/
H A Dimpl_x86_avx_256_simd_double.h175 return { _mm256_and_pd(a.simdInternal_, b.simdInternal_) };
249 return { _mm256_add_pd(a.simdInternal_, _mm256_and_pd(b.simdInternal_, m.simdInternal_)) }; in maskAdd()
254 return { _mm256_and_pd(_mm256_mul_pd(a.simdInternal_, b.simdInternal_), m.simdInternal_) }; in maskzMul()
259 …return { _mm256_and_pd(_mm256_add_pd(_mm256_mul_pd(a.simdInternal_, b.simdInternal_), c.simdIntern… in maskzFma()
268 …return { _mm256_and_pd(_mm256_cvtps_pd(_mm_rsqrt_ps(_mm256_cvtpd_ps(x.simdInternal_))), m.simdInte… in maskzRsqrt()
276 …return { _mm256_and_pd(_mm256_cvtps_pd(_mm_rcp_ps(_mm256_cvtpd_ps(x.simdInternal_))), m.simdIntern… in maskzRcp()
314 __m256i iExponent = _mm256_castpd_si256(_mm256_and_pd(value.simdInternal_, exponentMask)); in frexp()
325 __m256d result = _mm256_or_pd(_mm256_and_pd(value.simdInternal_, mantissaMask), half); in frexp()
422 return { _mm256_and_pd(a.simdInternal_, b.simdInternal_) };
437 return { _mm256_and_pd(a.simdInternal_, mask.simdInternal_) }; in selectByMask()
H A Dimpl_x86_avx_256_simd4_double.h111 return { _mm256_and_pd(a.simdInternal_, b.simdInternal_) };
250 return { _mm256_and_pd(a.simdInternal_, b.simdInternal_) };
265 return { _mm256_and_pd(a.simdInternal_, mask.simdInternal_) }; in selectByMask()
/dports/math/libpgmath/flang-d07daf3/runtime/libpgmath/lib/common/acos/fma3/
H A Dvdacos4.cpp73 x = _mm256_and_pd(a, (__m256d)ABS_MASK); in __fvd_acos_fma3_256()
108 __m256d pi_hi = _mm256_and_pd(pi_mask, PI_HI); in __fvd_acos_fma3_256()
109 fix = _mm256_and_pd(fix, SGN_MASK); in __fvd_acos_fma3_256()
110 sign = _mm256_and_pd(a, SGN_MASK); in __fvd_acos_fma3_256()
/dports/devel/vc/Vc-1.4.2/Vc/avx/
H A Dmath.h147 return _mm256_or_pd(_mm256_and_pd(sign.data(), AVX::setsignmask_pd()), in copysign()
148 _mm256_and_pd(mag.data(), AVX::setabsmask_pd())); in copysign()
162 const __m256d exponentPart = _mm256_and_pd(v.data(), exponentBits); in frexp()
170 _mm256_and_pd(exponentMaximized, in frexp()
186 _mm256_castpd_si256(_mm256_and_pd(w[0], exponentBits)), in frexp()
187 _mm256_castpd_si256(_mm256_and_pd(w[1], exponentBits))}; in frexp()
204 AVX::double_v(_mm256_and_pd(exponentMaximized[0], frexpMask))), in frexp()
206 AVX::double_v(_mm256_and_pd(exponentMaximized[1], frexpMask)))}; in frexp()
/dports/graphics/art/ART-1.9.3/rtengine/
H A Dhelperavx.h209 return (vmask)_mm256_and_pd((__m256d)x, (__m256d)y); in vandm()
287 …__m128i mask = _mm256_cvtpd_epi32(_mm256_and_pd(_mm256_cmp_pd(d0, d1, _CMP_LT_OQ), _mm256_set_pd(1… in vseli_lt()
428 return (vmask)_mm256_and_pd(d, _mm256_set_pd(-0.0, -0.0, -0.0, -0.0)); in vsignbit()
463 return _mm256_and_pd((vdouble)vmask_isinf(d), vsign(d)); in visinf()
468 return _mm256_and_pd((vdouble)vmask_isinf(d), _mm256_or_pd((vdouble)vsignbit(d), m)); in visinf2()
481 …y = _mm256_and_pd(y, (__m256d)_mm256_set_epi32(0xfff00000, 0, 0xfff00000, 0, 0xfff00000, 0, 0xfff0… in vpow2i()
512 …return (__m256d)_mm256_and_pd(d, (vdouble)_mm256_set_epi32(0xffffffff, 0xf8000000, 0xffffffff, 0xf… in vupper()
535 … return dd((__m256d)_mm256_xor_pd(_mm256_and_pd(_mm256_set_pd(-0.0, -0.0, -0.0, -0.0), x.x), x.x), in abs_d()
536 … (__m256d)_mm256_xor_pd(_mm256_and_pd(_mm256_set_pd(-0.0, -0.0, -0.0, -0.0), x.x), x.y)); in abs_d()
/dports/graphics/photoflow/PhotoFlow-8472024f/src/rt/rtengine/
H A Dhelperavx.h204 return (vmask)_mm256_and_pd((__m256d)x, (__m256d)y); in vandm()
282 …__m128i mask = _mm256_cvtpd_epi32(_mm256_and_pd(_mm256_cmp_pd(d0, d1, _CMP_LT_OQ), _mm256_set_pd(1… in vseli_lt()
423 return (vmask)_mm256_and_pd(d, _mm256_set_pd(-0.0, -0.0, -0.0, -0.0)); in vsignbit()
458 return _mm256_and_pd((vdouble)vmask_isinf(d), vsign(d)); in visinf()
463 return _mm256_and_pd((vdouble)vmask_isinf(d), _mm256_or_pd((vdouble)vsignbit(d), m)); in visinf2()
476 …y = _mm256_and_pd(y, (__m256d)_mm256_set_epi32(0xfff00000, 0, 0xfff00000, 0, 0xfff00000, 0, 0xfff0… in vpow2i()
507 …return (__m256d)_mm256_and_pd(d, (vdouble)_mm256_set_epi32(0xffffffff, 0xf8000000, 0xffffffff, 0xf… in vupper()
530 … return dd((__m256d)_mm256_xor_pd(_mm256_and_pd(_mm256_set_pd(-0.0, -0.0, -0.0, -0.0), x.x), x.x), in abs_d()
531 … (__m256d)_mm256_xor_pd(_mm256_and_pd(_mm256_set_pd(-0.0, -0.0, -0.0, -0.0), x.x), x.y)); in abs_d()
/dports/graphics/rawtherapee/rawtherapee-5.8/rtengine/
H A Dhelperavx.h204 return (vmask)_mm256_and_pd((__m256d)x, (__m256d)y); in vandm()
282 …__m128i mask = _mm256_cvtpd_epi32(_mm256_and_pd(_mm256_cmp_pd(d0, d1, _CMP_LT_OQ), _mm256_set_pd(1… in vseli_lt()
423 return (vmask)_mm256_and_pd(d, _mm256_set_pd(-0.0, -0.0, -0.0, -0.0)); in vsignbit()
458 return _mm256_and_pd((vdouble)vmask_isinf(d), vsign(d)); in visinf()
463 return _mm256_and_pd((vdouble)vmask_isinf(d), _mm256_or_pd((vdouble)vsignbit(d), m)); in visinf2()
476 …y = _mm256_and_pd(y, (__m256d)_mm256_set_epi32(0xfff00000, 0, 0xfff00000, 0, 0xfff00000, 0, 0xfff0… in vpow2i()
507 …return (__m256d)_mm256_and_pd(d, (vdouble)_mm256_set_epi32(0xffffffff, 0xf8000000, 0xffffffff, 0xf… in vupper()
530 … return dd((__m256d)_mm256_xor_pd(_mm256_and_pd(_mm256_set_pd(-0.0, -0.0, -0.0, -0.0), x.x), x.x), in abs_d()
531 … (__m256d)_mm256_xor_pd(_mm256_and_pd(_mm256_set_pd(-0.0, -0.0, -0.0, -0.0), x.x), x.y)); in abs_d()
/dports/math/libpgmath/flang-d07daf3/runtime/libpgmath/lib/common/asin/fma3/
H A Dvdasin4.cpp71 x = _mm256_and_pd(a, (__m256d)ABS_MASK); in __fvd_asin_fma3_256()
98 sign = _mm256_and_pd(a, SGN_MASK); in __fvd_asin_fma3_256()
99 fix = _mm256_and_pd(fix, SGN_MASK); in __fvd_asin_fma3_256()
/dports/math/libpgmath/flang-d07daf3/runtime/libpgmath/lib/common/pow/fma3/
H A Dvdpow4.cpp154 a_sign = (__m256i)_mm256_and_pd(a, SGN_MASK); in __pgm_pow_d_vec256_special_cases()
155 b_sign = (__m256i)_mm256_and_pd(b, SGN_MASK); in __pgm_pow_d_vec256_special_cases()
156 abs_a = _mm256_and_pd(a, (__m256d)ABS_MASK); in __pgm_pow_d_vec256_special_cases()
157 abs_b = _mm256_and_pd(b, (__m256d)ABS_MASK); in __pgm_pow_d_vec256_special_cases()
160 shiftb = (__m256i)_mm256_and_pd (b, SGN_EXP_MASK); in __pgm_pow_d_vec256_special_cases()
194 __m256d t_when_ais0 = _mm256_and_pd(thi_when_ais0, (__m256d)HI_MASK); in __pgm_pow_d_vec256_special_cases()
369 abs_a = _mm256_and_pd(a, (__m256d)ABS_MASK); in __fvd_pow_fma3_256()
370 a_mut = _mm256_and_pd(abs_a, HI_CONST_1); in __fvd_pow_fma3_256()
/dports/science/gromacs/gromacs-2021.4/src/gromacs/simd/impl_x86_avx2_256/
H A Dimpl_x86_avx2_256_simd_double.h87 __m256i iExponent = _mm256_castpd_si256(_mm256_and_pd(value.simdInternal_, exponentMask)); in frexp()
90 __m256d result = _mm256_or_pd(_mm256_and_pd(value.simdInternal_, mantissaMask), half); in frexp()
/dports/science/chrono/chrono-7.0.1/src/chrono/multicore_math/
H A Dsimd_avx.h49 return _mm256_and_pd(_mm256_div_pd(a, b), REAL3MASK); in Div3()
106 return _mm256_and_pd(v, ABSMASK); in Abs()
205 return _mm256_and_pd(tmp, REAL3MASK); in Normalize3()
250 __m256d a = _mm256_and_pd(v, ABSMASK); in IsZero()
/dports/audio/sc3-plugins/sc3-plugins-Version-3.9.0/external_libraries/nova-simd/vec/
H A Dvec_avx_double.hpp234 return _mm256_and_pd(_mm256_cmp_pd(data_, rhs.data_, RELATION), one); \ in NOVA_SIMD_DELEGATE_UNARY_TO_BASE()
254 BITWISE_OPERATOR(&, _mm256_and_pd)
287 return _mm256_and_pd(gen_abs_mask(), arg.data_); in abs()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/external_libraries/nova-simd/vec/
H A Dvec_avx_double.hpp241 return _mm256_and_pd(_mm256_cmp_pd(data_, rhs.data_, RELATION), one); \
261 BITWISE_OPERATOR(&, _mm256_and_pd)
294 return _mm256_and_pd(gen_abs_mask(), arg.data_); in abs()
/dports/science/gromacs/gromacs-2021.4/src/gromacs/simd/impl_x86_avx_128_fma/
H A Dimpl_x86_avx_128_fma_simd4_double.h108 return { _mm256_and_pd(a.simdInternal_, b.simdInternal_) };
243 return { _mm256_and_pd(a.simdInternal_, b.simdInternal_) };
258 return { _mm256_and_pd(a.simdInternal_, mask.simdInternal_) }; in selectByMask()
/dports/devel/simgear/simgear-2020.3.11/simgear/math/
H A Dsimd_neon.hxx323 simd4 = _mm256_and_pd(_mm256_loadu_pd(v), dmask3);
327 simd4 = _mm256_and_pd(_mm256_loadu_pd(v), dmask2);
335 simd4 = _mm256_and_pd(_mm256_set1_pd(d), dmask3);
339 simd4 = _mm256_and_pd(_mm256_set1_pd(d), dmask2);
/dports/lang/gcc6-aux/gcc-6-20180516/gcc/testsuite/gcc.target/i386/
H A Davx-vandpd-256-1.c25 u.x = _mm256_and_pd (s1.x, s2.x); in avx_test()
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gcc.target/i386/
H A Davx-vandpd-256-1.c25 u.x = _mm256_and_pd (s1.x, s2.x); in avx_test()
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gcc.target/i386/
H A Davx-vandpd-256-1.c25 u.x = _mm256_and_pd (s1.x, s2.x); in avx_test()
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gcc.target/i386/
H A Davx-vandpd-256-1.c25 u.x = _mm256_and_pd (s1.x, s2.x); in avx_test()
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gcc.target/i386/
H A Davx-vandpd-256-1.c25 u.x = _mm256_and_pd (s1.x, s2.x); in avx_test()
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gcc.target/i386/
H A Davx-vandpd-256-1.c25 u.x = _mm256_and_pd (s1.x, s2.x); in avx_test()
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.target/i386/
H A Davx-vandpd-256-1.c25 u.x = _mm256_and_pd (s1.x, s2.x); in avx_test()
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.target/i386/
H A Davx-vandpd-256-1.c25 u.x = _mm256_and_pd (s1.x, s2.x); in avx_test()
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.target/i386/
H A Davx-vandpd-256-1.c25 u.x = _mm256_and_pd (s1.x, s2.x); in avx_test()

12345678910>>...13