HomeSort by relevance Sort by last modified time
    Searched refs:iszero_mask (Results 1 - 4 of 4) sorted by null

  /external/eigen/Eigen/src/Core/arch/AVX/
MathFunctions.h 148 Packet8f iszero_mask = _mm256_cmp_ps(x, _mm256_setzero_ps(), _CMP_EQ_OQ); local
200 _mm256_andnot_ps(iszero_mask, _mm256_or_ps(x, invalid_mask)),
201 _mm256_and_ps(iszero_mask, p8f_minus_inf));
  /external/eigen/Eigen/src/Core/arch/SSE/
MathFunctions.h 56 Packet4f iszero_mask = _mm_cmpeq_ps(x, _mm_setzero_ps()); local
102 return _mm_or_ps(_mm_andnot_ps(iszero_mask, _mm_or_ps(x, invalid_mask)),
103 _mm_and_ps(iszero_mask, p4f_minus_inf));
  /external/eigen/Eigen/src/Core/arch/AVX512/
MathFunctions.h 69 __mmask16 iszero_mask = local
122 return _mm512_mask_blend_ps(iszero_mask, p16f_minus_inf,
  /external/eigen/Eigen/src/Core/arch/AltiVec/
MathFunctions.h 103 Packet4ui iszero_mask = reinterpret_cast<Packet4ui>(vec_cmpeq(x, p4f_ZERO)); local
150 x = vec_sel(x, p4f_minus_inf, iszero_mask);

Completed in 97 milliseconds