Searched refs:__temp (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | regex | 2741 _ForwardIterator __temp = __parse(__first, __last); 2742 if (__temp != __last) 2790 _ForwardIterator __temp = std::next(__first); 2791 if (__temp == __last && *__first == '$') { 2808 _ForwardIterator __temp = __parse_ERE_branch(__first, __last); 2809 if (__temp == __first) 2811 __first = __temp; 2814 __temp = __parse_ERE_branch(++__first, __last); 2815 if (__temp == __first) 2818 __first = __temp; [all …]
|
H A D | string | 1409 const basic_string __temp(__first, __last, __alloc()); 1410 append(__temp.data(), __temp.size()); 1571 basic_string __temp(from_range, std::forward<_Range>(__range), __alloc()); 1572 return insert(__position, __temp.data(), __temp.data() + __temp.size()); 1666 basic_string __temp(from_range, std::forward<_Range>(__range), __alloc()); 1667 return replace(__i1, __i2, __temp); 2743 …const basic_string __temp(__init_with_sentinel_tag(), std::move(__first), std::move(__last), __all… 2744 assign(__temp.data(), __temp.size()); 2931 const basic_string __temp(__first, __last, __alloc()); 2932 append(__temp.data(), __temp.size()); [all …]
|
H A D | istream | 442 long __temp; 443 std::use_facet<_Fp>(__is.getloc()).get(_Ip(__is), _Ip(), __is, __state, __temp); 444 if (__temp < numeric_limits<_Tp>::min()) { 447 } else if (__temp > numeric_limits<_Tp>::max()) { 451 __n = static_cast<_Tp>(__temp);
|
/freebsd/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/ |
H A D | emmintrin.h | 382 __v2df __temp = (__v2df)vec_cmpeq((__v2df)__A, (__v2df)__B); in _mm_cmpneq_pd() local 383 return ((__m128d)vec_nor(__temp, __temp)); in _mm_cmpneq_pd() 845 __v4si __result, __temp; in _mm_cvtpd_epi32() local 850 __asm__("xvcvdpsxws %x0,%x1" : "=wa"(__temp) : "wa"(__rounded) :); in _mm_cvtpd_epi32() 854 __temp = vec_mergeo(__temp, __temp); in _mm_cvtpd_epi32() 856 __temp = vec_mergee(__temp, __temp); in _mm_cvtpd_epi32() 858 __result = (__v4si)vec_vpkudum((__vector long long)__temp, in _mm_cvtpd_epi32() 864 __result = (__v4si)vec_perm((__v16qu)__temp, (__v16qu)__vzero, __pkperm); in _mm_cvtpd_epi32() 882 __v4si __temp; in _mm_cvtpd_ps() local 885 __asm__("xvcvdpsp %x0,%x1" : "=wa"(__temp) : "wa"(__A) :); in _mm_cvtpd_ps() [all …]
|
H A D | xmmintrin.h | 511 __v4sf __temp = (__v4sf)vec_cmpeq((__v4sf)__A, (__v4sf)__B); in _mm_cmpneq_ps() local 512 return ((__m128)vec_nor(__temp, __temp)); in _mm_cmpneq_ps() 956 __v4sf __temp, __rounded; in _mm_cvtps_pi32() local 960 __temp = (__v4sf)vec_splat((__vector long long)__A, 0); in _mm_cvtps_pi32() 961 __rounded = vec_rint(__temp); in _mm_cvtps_pi32() 978 float __temp = __A[0]; in _mm_cvttss_si32() local 980 return __temp; in _mm_cvttss_si32() 994 float __temp = __A[0]; in _mm_cvttss_si64() local 996 return __temp; in _mm_cvttss_si64() 1004 float __temp = __A[0]; in _mm_cvttss_si64x() local [all …]
|
/freebsd/contrib/llvm-project/libcxx/src/include/ryu/ |
H A D | d2s_intrinsics.h | 77 auto __temp = __a * (unsigned __int128)__b; 78 *__productHi = __temp >> 64; 79 return static_cast<uint64_t>(__temp); 89 auto __temp = __lo | ((unsigned __int128)__hi << 64); 92 return static_cast<uint64_t>(__temp >> (__dist & 63));
|
/freebsd/contrib/llvm-project/libcxx/include/__ranges/ |
H A D | elements_view.h | 230 auto __temp = *this; 232 return __temp; 245 auto __temp = *this; 247 return __temp;
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | shared_ptr.h | 1655 shared_ptr<_Tp> __temp; 1659 std::swap(__temp, *__p); 1664 std::swap(__temp, *__v);
|