Home
last modified time | relevance | path

Searched refs:__m2 (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dmmintrin.h163 _mm_packs_pi16(__m64 __m1, __m64 __m2) in _mm_packs_pi16() argument
166 (__v8hi)__builtin_shufflevector(__m1, __m2, 0, 1), (__v8hi){})); in _mm_packs_pi16()
189 _mm_packs_pi32(__m64 __m1, __m64 __m2) in _mm_packs_pi32() argument
192 (__v4si)__builtin_shufflevector(__m1, __m2, 0, 1), (__v4si){})); in _mm_packs_pi32()
215 _mm_packs_pu16(__m64 __m1, __m64 __m2) in _mm_packs_pu16() argument
218 (__v8hi)__builtin_shufflevector(__m1, __m2, 0, 1), (__v8hi){})); in _mm_packs_pu16()
243 _mm_unpackhi_pi8(__m64 __m1, __m64 __m2) in _mm_unpackhi_pi8() argument
245 return (__m64)__builtin_shufflevector((__v8qi)__m1, (__v8qi)__m2, in _mm_unpackhi_pi8()
267 _mm_unpackhi_pi16(__m64 __m1, __m64 __m2) in _mm_unpackhi_pi16() argument
269 return (__m64)__builtin_shufflevector((__v4hi)__m1, (__v4hi)__m2, in _mm_unpackhi_pi16()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/
H A Dmmintrin.h152 _mm_packs_pi16(__m64 __m1, __m64 __m2) { in _mm_packs_pi16() argument
158 {__m1, __m2}; in _mm_packs_pi16()
160 {__m2, __m1}; in _mm_packs_pi16()
168 _m_packsswb(__m64 __m1, __m64 __m2) { in _m_packsswb() argument
169 return _mm_packs_pi16(__m1, __m2); in _m_packsswb()
177 _mm_packs_pi32(__m64 __m1, __m64 __m2) { in _mm_packs_pi32() argument
183 {__m1, __m2}; in _mm_packs_pi32()
185 {__m2, __m1}; in _mm_packs_pi32()
193 _m_packssdw(__m64 __m1, __m64 __m2) { in _m_packssdw() argument
194 return _mm_packs_pi32(__m1, __m2); in _m_packssdw()
[all …]
H A Dxmmintrin.h1402 __m64_union __m1, __m2, __res; in _mm_max_pi16()
1405 __m2.as_m64 = __B; in _mm_max_pi16()
1407 __res.as_short[0] = (__m1.as_short[0] > __m2.as_short[0]) ? __m1.as_short[0] in _mm_max_pi16()
1408 : __m2.as_short[0]; in _mm_max_pi16()
1409 __res.as_short[1] = (__m1.as_short[1] > __m2.as_short[1]) ? __m1.as_short[1] in _mm_max_pi16()
1410 : __m2.as_short[1]; in _mm_max_pi16()
1411 __res.as_short[2] = (__m1.as_short[2] > __m2.as_short[2]) ? __m1.as_short[2] in _mm_max_pi16()
1412 : __m2.as_short[2]; in _mm_max_pi16()
1413 __res.as_short[3] = (__m1.as_short[3] > __m2.as_short[3]) ? __m1.as_short[3] in _mm_max_pi16()
1414 : __m2.as_short[3]; in _mm_max_pi16()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/
H A Dfind_end.h64 _Iter2 __m2 = __first2; in __find_end_impl() local
66 if (++__m2 == __last2) { // Pattern exhaused, record answer and search for another one in __find_end_impl()
75 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __find_end_impl()
119 _Iter2 __m2 = __l2; in __find_end() local
121 … if (__m2 == __first2) // If pattern exhausted, __m1 is the answer (works for 1 element pattern) in __find_end()
127 … if (!std::__invoke(__pred, std::__invoke(__proj1, *--__m1), std::__invoke(__proj2, *--__m2))) { in __find_end()
174 _Iter2 __m2 = __l2; in __find_end() local
176 if (__m2 == __first2) in __find_end()
179 if (!std::__invoke(__pred, std::__invoke(__proj1, *--__m1), std::__invoke(*--__m2))) { in __find_end()
H A Dinplace_merge.h160 _BidirectionalIterator __m2; // "median" of [__middle, __last) in __inplace_merge() local
166 __m2 = __middle; in __inplace_merge()
167 _Ops::advance(__m2, __len21); in __inplace_merge()
168 __m1 = std::__upper_bound<_AlgPolicy>(__first, __middle, *__m2, __comp, std::__identity()); in __inplace_merge()
180 __m2 = std::lower_bound(__middle, __last, *__m1, __comp); in __inplace_merge()
181 __len21 = _Ops::distance(__middle, __m2); in __inplace_merge()
187 __middle = std::__rotate<_AlgPolicy>(__m1, __middle, __m2).first; in __inplace_merge()
193 __middle = __m2; in __inplace_merge()
197 …std::__inplace_merge<_AlgPolicy>(__middle, __m2, __last, __comp, __len12, __len22, __buff, __buff_… in __inplace_merge()
H A Dsearch.h55 _Iter2 __m2 = __first2; in __search_forward_impl() local
57 …if (++__m2 == __last2) // If pattern exhausted, __first1 is the answer (works for 1 element patter… in __search_forward_impl()
64 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __search_forward_impl()
106 _Iter2 __m2 = __first2; in __search_random_access_impl() local
108 if (++__m2 == __last2) in __search_random_access_impl()
111 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __search_random_access_impl()
H A Drotate.h102 const difference_type __m2 = _Ops::distance(__middle, __last); in __rotate_gcd() local
103 if (__m1 == __m2) { in __rotate_gcd()
107 const difference_type __g = std::__algo_gcd(__m1, __m2); in __rotate_gcd()
123 return __first + __m2; in __rotate_gcd()
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dinplace_merge.h160 _BidirectionalIterator __m2; // "median" of [__middle, __last) in __inplace_merge() local
166 __m2 = __middle; in __inplace_merge()
167 _Ops::advance(__m2, __len21); in __inplace_merge()
168 __m1 = std::__upper_bound<_AlgPolicy>(__first, __middle, *__m2, __comp, std::__identity()); in __inplace_merge()
180 __m2 = std::lower_bound(__middle, __last, *__m1, __comp); in __inplace_merge()
181 __len21 = _Ops::distance(__middle, __m2); in __inplace_merge()
187 __middle = std::__rotate<_AlgPolicy>(__m1, __middle, __m2).first; in __inplace_merge()
193 __middle = __m2; in __inplace_merge()
197 …std::__inplace_merge<_AlgPolicy>(__middle, __m2, __last, __comp, __len12, __len22, __buff, __buff_… in __inplace_merge()
H A Dsearch.h56 _Iter2 __m2 = __first2; in __search_forward_impl() local
58 …if (++__m2 == __last2) // If pattern exhausted, __first1 is the answer (works for 1 element patter… in __search_forward_impl()
65 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __search_forward_impl()
107 _Iter2 __m2 = __first2; in __search_random_access_impl() local
109 if (++__m2 == __last2) in __search_random_access_impl()
112 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __search_random_access_impl()
H A Dfind_end.h60 _Iter2 __m2 = __first2; in __find_end_impl() local
62 if (++__m2 == __last2) { // Pattern exhaused, record answer and search for another one in __find_end_impl()
71 if (!std::__invoke(__pred, std::__invoke(__proj1, *__m1), std::__invoke(__proj2, *__m2))) { in __find_end_impl()
H A Drotate.h110 const difference_type __m2 = _Ops::distance(__middle, __last); in __rotate_gcd() local
111 if (__m1 == __m2) { in __rotate_gcd()
115 const difference_type __g = std::__algo_gcd(__m1, __m2); in __rotate_gcd()
131 return __first + __m2; in __rotate_gcd()
/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Dd2fixed.cpp265 uint64_t __m2; in __d2fixed_buffered_n() local
268 __m2 = __ieeeMantissa; in __d2fixed_buffered_n()
271 __m2 = (1ull << __DOUBLE_MANTISSA_BITS) | __ieeeMantissa; in __d2fixed_buffered_n()
283 … const uint32_t __digits = __mulShift_mod1e9(__m2 << 8, __POW10_SPLIT[__POW10_OFFSET[__idx] + __i], in __d2fixed_buffered_n()
351 uint32_t __digits = __mulShift_mod1e9(__m2 << 8, __POW10_SPLIT_2[__p], __j + 8); in __d2fixed_buffered_n()
371 … || (__requiredTwos < 60 && __multipleOfPowerOf2(__m2, static_cast<uint32_t>(__requiredTwos))); in __d2fixed_buffered_n()
456 uint64_t __m2; in __d2exp_buffered_n() local
459 __m2 = __ieeeMantissa; in __d2exp_buffered_n()
462 __m2 = (1ull << __DOUBLE_MANTISSA_BITS) | __ieeeMantissa; in __d2exp_buffered_n()
479 __digits = __mulShift_mod1e9(__m2 << 8, __POW10_SPLIT[__POW10_OFFSET[__idx] + __i], in __d2exp_buffered_n()
[all …]
H A Dd2s.cpp186 uint64_t __m2; in __d2d() local
190 __m2 = __ieeeMantissa; in __d2d()
193 __m2 = (1ull << __DOUBLE_MANTISSA_BITS) | __ieeeMantissa; in __d2d()
195 const bool __even = (__m2 & 1) == 0; in __d2d()
199 const uint64_t __mv = 4 * __m2; in __d2d()
218 __vr = __mulShiftAll(__m2, __DOUBLE_POW5_INV_SPLIT[__q], __i, &__vp, &__vm, __mmShift); in __d2d()
243 __vr = __mulShiftAll(__m2, __DOUBLE_POW5_SPLIT[__i], __j, &__vp, &__vm, __mmShift); in __d2d()
674 const uint64_t __m2 = (1ull << __DOUBLE_MANTISSA_BITS) | __ieeeMantissa; in __d2d_small_int() local
691 const uint64_t __fraction = __m2 & __mask; in __d2d_small_int()
699 __v->__mantissa = __m2 >> -__e2; in __d2d_small_int()
H A Df2s.cpp160 uint32_t __m2; in __f2d() local
164 __m2 = __ieeeMantissa; in __f2d()
167 __m2 = (1u << __FLOAT_MANTISSA_BITS) | __ieeeMantissa; in __f2d()
169 const bool __even = (__m2 & 1) == 0; in __f2d()
173 const uint32_t __mv = 4 * __m2; in __f2d()
174 const uint32_t __mp = 4 * __m2 + 2; in __f2d()
177 const uint32_t __mm = 4 * __m2 - 1 - __mmShift; in __f2d()
/freebsd/contrib/llvm-project/libcxx/include/__pstl/backends/
H A Dlibdispatch.h171 auto __m2 = std::lower_bound(__first2, __last2, __m1[-1], __comp);
172 return std::make_pair(__m1, __m2);
174 auto __m2 = __first2 + __chunk_size;
175 auto __m1 = std::lower_bound(__first1, __last1, __m2[-1], __comp);
176 return std::make_pair(__m1, __m2);
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dlist1214 iterator __m2 = std::next(__f2);
1215 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2, (void)++__ds)
1220 __link_pointer __l = __m2.__ptr_->__prev_;
1221 __f2 = __m2;
1223 __m2 = std::next(__f1);
1225 __f1 = __m2;
1266 iterator __m2 = std::next(__f2);
1267 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
1270 __link_pointer __l = __m2.__ptr_->__prev_;
1272 __e1 = __f2 = __m2;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dlist1632 iterator __m2 = std::next(__f2);
1633 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2, (void)++__ds)
1638 __base_pointer __l = __m2.__ptr_->__prev_;
1639 __f2 = __m2;
1641 __m2 = std::next(__f1);
1643 __f1 = __m2;
1684 iterator __m2 = std::next(__f2);
1685 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
1688 __base_pointer __l = __m2.__ptr_->__prev_;
1690 __e1 = __f2 = __m2;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dalgorithm_impl.h