| /freebsd/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/ |
| H A D | tmmintrin.h | 95 const __v16qu __zero = {0}; in _mm_alignr_epi8() local 96 return (__m128i)__zero; in _mm_alignr_epi8() 133 const __m64 __zero = {0}; in _mm_alignr_pi8() local 134 return __zero; in _mm_alignr_pi8() 199 const __v4si __zero = {0}; in _mm_hadds_pi16() local 201 __v4si __D = vec_sum4s(__C, __zero); in _mm_hadds_pi16() 281 const __v16qi __zero = {0}; in _mm_shuffle_epi8() local 282 __vector __bool char __select = vec_cmplt((__v16qi)__B, __zero); in _mm_shuffle_epi8() 284 return (__m128i)vec_sel(__C, __zero, __select); in _mm_shuffle_epi8() 290 const __v16qi __zero = {0}; in _mm_shuffle_pi8() local [all …]
|
| H A D | xmmintrin.h | 1105 const __vector unsigned short __zero = {0, 0, 0, 0, 0, 0, 0, 0}; in _mm_cvtpu16_ps() local 1113 (__vs8, __zero); in _mm_cvtpu16_ps() 1115 (__zero, __vs8); in _mm_cvtpu16_ps() 1144 const __vector unsigned char __zero = {0, 0, 0, 0, 0, 0, 0, 0}; in _mm_cvtpu8_ps() local 1152 __vs8 = (__vector unsigned short)vec_mergel(__vc16, __zero); in _mm_cvtpu8_ps() 1154 (__vector unsigned int)vec_mergeh(__vs8, (__vector unsigned short)__zero); in _mm_cvtpu8_ps() 1156 __vs8 = (__vector unsigned short)vec_mergel(__zero, __vc16); in _mm_cvtpu8_ps() 1158 (__vector unsigned int)vec_mergeh((__vector unsigned short)__zero, __vs8); in _mm_cvtpu8_ps() 1198 static const __vector signed int __zero = {0, 0, 0, 0}; in _mm_cvtps_pi8() local 1204 __tmp_s = vec_pack(__tmp_i, __zero); in _mm_cvtps_pi8() [all …]
|
| H A D | mmintrin.h | 210 const __vector signed short __zero = {0}; in _mm_packs_pu16() local 211 __vector __bool short __select = vec_cmplt(__vm1, __zero); in _mm_packs_pu16() 215 __r = vec_sel(__r, (const __vector unsigned char)__zero, __packsel); in _mm_packs_pu16() 1059 __vector signed int __zero = {0, 0, 0, 0}; in _mm_madd_pi16() local 1063 __c = vec_vmsumshm(__a, __b, __zero); in _mm_madd_pi16()
|
| H A D | emmintrin.h | 1378 __vector signed int __zero = {0, 0, 0, 0}; in _mm_madd_epi16() local 1380 return (__m128i)vec_vmsumshm((__v8hi)__A, (__v8hi)__B, __zero); in _mm_madd_epi16() 2122 const __v4su __zero = {0, 0, 0, 0}; in _mm_sad_epu8() local 2135 __vsum = (__vector signed int)vec_sum4s(__vabsdiff, __zero); in _mm_sad_epu8() 2138 __asm__("vsum2sws %0,%1,%2" : "=v"(__result) : "v"(__vsum), "v"(__zero)); in _mm_sad_epu8() 2147 __result = vec_sum2s(__vsum, (__vector signed int)__zero); in _mm_sad_epu8()
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | bitset | 274 __to_string(_CharT __zero, _CharT __one) const { 275 basic_string<_CharT, _Traits, _Allocator> __r(_Size, _Sparse ? __zero : __one); 281 __r[_Size - 1 - (__bits + std::__countr_zero(__word))] = _Sparse ? __one : __zero; 481 __to_string(_CharT __zero, _CharT __one) const { 482 basic_string<_CharT, _Traits, _Allocator> __r(_Size, _Sparse ? __zero : __one); 488 __r[_Size - 1 - __pos] = _Sparse ? __one : __zero; 633 _CharT __zero = _CharT('0'), 636 __init_from_string_view(basic_string_view<_CharT>(__str), __zero, __one); 638 __init_from_string_view(basic_string_view<_CharT>(__str, __n), __zero, __one); 646 _CharT __zero = _CharT('0'), [all …]
|
| H A D | istream | 1366 _CharT __zero = __ct.widen('0'); 1375 if (!_Traits::eq(__ch, __zero) && !_Traits::eq(__ch, __one))
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | bitset | 579 _CharT __zero = _CharT('0'), 582 __init_from_string_view(basic_string_view<_CharT>(__str, __rlen), __zero, __one); 591 _CharT __zero = _CharT('0'), 597 …_from_string_view(basic_string_view<_CharT, _Traits>(__str.data() + __pos, __rlen), __zero, __one); 625 to_string(_CharT __zero = _CharT('0'), _CharT __one = _CharT('1')) const; 628 to_string(_CharT __zero = _CharT('0'), _CharT __one = _CharT('1')) const; 631 to_string(_CharT __zero = _CharT('0'), _CharT __one = _CharT('1')) const; 633 to_string(char __zero = '0', char __one = '1') const; 648 __init_from_string_view(basic_string_view<_CharT, _Traits> __str, _CharT __zero, _CharT __one) { 650 if (!_Traits::eq(__str[__i], __zero) && !_Traits::eq(__str[__i], __one)) [all …]
|
| H A D | new | 180 enum align_val_t { __zero = 0, __max = (size_t)-1 };
|
| H A D | istream | 1297 _CharT __zero = __ct.widen('0'); 1306 if (!_Traits::eq(__ch, __zero) && !_Traits::eq(__ch, __one))
|
| /freebsd/contrib/llvm-project/libcxx/include/__new/ |
| H A D | align_val_t.h | 24 enum align_val_t { __zero = 0, __max = (size_t)-1 };
|
| /freebsd/contrib/llvm-project/libcxx/include/__compare/ |
| H A D | ordering.h | 44 _LIBCPP_HIDE_FROM_ABI consteval _CmpUnspecifiedParam(_Tp __zero) noexcept in _CmpUnspecifiedParam() 47 …__zero == 0, "Only literal 0 is allowed as the operand of a comparison with one of the ordering ty… in _CmpUnspecifiedParam() 50 (void)__zero; in _CmpUnspecifiedParam()
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | vecintrin.h | 225 const __vector signed char __zero = (__vector signed char)0; in vec_promote() local 226 __vector signed char __vec = __builtin_shufflevector(__zero, __zero, in vec_promote() 234 const __vector unsigned char __zero = (__vector unsigned char)0; in vec_promote() local 235 __vector unsigned char __vec = __builtin_shufflevector(__zero, __zero, in vec_promote() 243 const __vector signed short __zero = (__vector signed short)0; in vec_promote() local 244 __vector signed short __vec = __builtin_shufflevector(__zero, __zero, in vec_promote() 252 const __vector unsigned short __zero = (__vector unsigned short)0; in vec_promote() local 253 __vector unsigned short __vec = __builtin_shufflevector(__zero, __zero, in vec_promote() 261 const __vector signed int __zero = (__vector signed int)0; in vec_promote() local 262 __vector signed int __vec = __builtin_shufflevector(__zero, __zero, in vec_promote() [all …]
|
| H A D | altivec.h | 14650 const vector signed char __zero = (vector signed char)0; in vec_promote() local 14652 __builtin_shufflevector(__zero, __zero, -1, -1, -1, -1, -1, -1, -1, -1, in vec_promote() 14660 const vector unsigned char __zero = (vector unsigned char)(0); in vec_promote() local 14662 __builtin_shufflevector(__zero, __zero, -1, -1, -1, -1, -1, -1, -1, -1, in vec_promote() 14669 const vector short __zero = (vector short)(0); in vec_promote() local 14671 __builtin_shufflevector(__zero, __zero, -1, -1, -1, -1, -1, -1, -1, -1); in vec_promote() 14678 const vector unsigned short __zero = (vector unsigned short)(0); in vec_promote() local 14680 __builtin_shufflevector(__zero, __zero, -1, -1, -1, -1, -1, -1, -1, -1); in vec_promote() 14686 const vector int __zero = (vector int)(0); in vec_promote() local 14687 vector int __res = __builtin_shufflevector(__zero, __zero, -1, -1, -1, -1); in vec_promote() [all …]
|