Home
last modified time | relevance | path

Searched refs:__res (Results 1 – 25 of 37) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/
H A Dmmintrin.h239 __m64_union __mu1, __mu2, __res; in _mm_unpackhi_pi8()
244 __res.as_char[0] = __mu1.as_char[4]; in _mm_unpackhi_pi8()
245 __res.as_char[1] = __mu2.as_char[4]; in _mm_unpackhi_pi8()
246 __res.as_char[2] = __mu1.as_char[5]; in _mm_unpackhi_pi8()
247 __res.as_char[3] = __mu2.as_char[5]; in _mm_unpackhi_pi8()
248 __res.as_char[4] = __mu1.as_char[6]; in _mm_unpackhi_pi8()
249 __res.as_char[5] = __mu2.as_char[6]; in _mm_unpackhi_pi8()
250 __res.as_char[6] = __mu1.as_char[7]; in _mm_unpackhi_pi8()
251 __res.as_char[7] = __mu2.as_char[7]; in _mm_unpackhi_pi8()
253 return (__m64)__res.as_m64; in _mm_unpackhi_pi8()
[all …]
H A Dbmi2intrin.h26 unsigned long long __res = (unsigned long long)__X * __Y; in _mulx_u32() local
27 *__P = (unsigned int)(__res >> 32); in _mulx_u32()
28 return (unsigned int)__res; in _mulx_u32()
43 unsigned __int128 __res = (unsigned __int128)__X * __Y; in _mulx_u64() local
44 *__P = (unsigned long long)(__res >> 64); in _mulx_u64()
45 return (unsigned long long)__res; in _mulx_u64()
H A Dxmmintrin.h874 int __res; in _mm_cvtss_si32() local
884 : "+wa"(__A), "=r"(__res), "=f"(__dtmp) in _mm_cvtss_si32()
887 __res = __builtin_rint(__A[0]); in _mm_cvtss_si32()
889 return __res; in _mm_cvtss_si32()
905 long long __res; in _mm_cvtss_si64() local
915 : "+wa"(__A), "=r"(__res), "=f"(__dtmp) in _mm_cvtss_si64()
918 __res = __builtin_llrint(__A[0]); in _mm_cvtss_si64()
920 return __res; in _mm_cvtss_si64()
1402 __m64_union __m1, __m2, __res; 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()
[all …]
/freebsd/sys/amd64/include/xen/
H A Dhypercall.h59 type __res; \
62 : "=a" (__res) \
65 __res; \
70 type __res; \
74 : "=a" (__res), "=D" (__ign1) \
77 __res; \
82 type __res; \
86 : "=a" (__res), "=D" (__ign1), "=S" (__ign2) \
89 __res; \
94 type __res; \
[all …]
/freebsd/sys/i386/include/xen/
H A Dhypercall.h49 long __res; \
52 : "=a" (__res) \
55 (type)__res; \
60 long __res, __ign1; \
63 : "=a" (__res), "=b" (__ign1) \
66 (type)__res; \
71 long __res, __ign1, __ign2; \
74 : "=a" (__res), "=b" (__ign1), "=c" (__ign2) \
77 (type)__res; \
82 long __res, __ign1, __ign2, __ign3; \
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dbmi2intrin.h129 unsigned long long __res = (unsigned long long) __X * __Y; in _mulx_u32() local
130 *__P = (unsigned int)(__res >> 32); in _mulx_u32()
131 return (unsigned int)__res; in _mulx_u32()
246 unsigned __int128 __res = (unsigned __int128) __X * __Y; in _mulx_u64() local
247 *__P = (unsigned long long) (__res >> 64); in _mulx_u64()
248 return (unsigned long long) __res; in _mulx_u64()
/freebsd/sys/i386/include/
H A Dpcpu.h118 __pcpu_type(name) __res; \
120 u_char __b[MIN(sizeof(__res), 4)]; \
123 if (sizeof(__res) == 1 || sizeof(__res) == 2 || \
124 sizeof(__res) == 4) { \
126 : "=r" (*(struct __s *)(void *)&__res) \
129 __res = *__PCPU_PTR(name); \
131 __res; \
/freebsd/sys/amd64/include/
H A Dpcpu.h192 __pcpu_type(name) __res; \
197 if (sizeof(__res) == 1 || sizeof(__res) == 2 || \
198 sizeof(__res) == 4 || sizeof(__res) == 8) { \
200 : "=r" (*(struct __s *)(void *)&__res) \
203 __res = *__PCPU_PTR(name); \
205 __res; \
/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/locale_base_api/
H A Dbsd_locale_fallbacks.h99 int __res = vsnprintf(__s, __n, __format, __va);
101 return __res; in __libcpp_localeconv_l()
109 int __res = vasprintf(__s, __format, __va); in __libcpp_mbsrtowcs_l()
111 return __res; in __libcpp_mbsrtowcs_l()
119 int __res = vsscanf(__s, __format, __va); in __libcpp_snprintf_l()
121 return __res; in __libcpp_snprintf_l() local
131 int __res = vasprintf(__s, __format, __va); __libcpp_asprintf_l() local
141 int __res = vsscanf(__s, __format, __va); __libcpp_sscanf_l() local
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_mismatch.h50 auto __res = in __go() local
52 …return {std::__rewrap_range<_S1>(__first1, __res.first), std::__rewrap_range<_S2>(__first2, __res.… in __go()
54 auto __res = std::__mismatch( in __go() local
56 return {std::move(__res.first), std::move(__res.second)}; in __go()
H A Dmismatch.h156 auto __res = std::__mismatch( in mismatch() local
158 …return std::make_pair(std::__rewrap_iter(__first1, __res.first), std::__rewrap_iter(__first2, __re… in mismatch()
195 auto __res = std::__mismatch( in mismatch() local
203 return {std::__rewrap_iter(__first1, __res.first), std::__rewrap_iter(__first2, __res.second)}; in mismatch()
/freebsd/contrib/llvm-project/libcxx/include/__pstl/cpu_algos/
H A Dfind_if.h45 auto __res = in __parallel_find() local
60 if (!__res) in __parallel_find()
113 …auto __res = _FindIfUnseq()(std::__remove_parallel_policy(__policy), __brick_first, __brick_last, … in operator()
114 _LIBCPP_ASSERT_INTERNAL(__res, "unseq/seq should never try to allocate!"); in operator()
115 return *std::move(__res); in operator()
H A Dtransform.h68 auto __res = _TransformUnseq()( in operator()
74 _LIBCPP_ASSERT_INTERNAL(__res, "unseq/seq should never try to allocate!"); in operator()
75 return *std::move(__res); in operator()
112 auto __res = __cpu_traits<_Backend>::__for_each( in operator() local
127 if (!__res) in operator()
H A Dany_of.h81 …auto __res = _AnyOfUnseq()(std::__remove_parallel_policy(__policy), __brick_first, __brick_last, _… in operator()
82 _LIBCPP_ASSERT_INTERNAL(__res, "unseq/seq should never try to allocate!"); in operator()
83 return *std::move(__res); in operator()
H A Dfor_each.h48 [[maybe_unused]] auto __res = in operator()
50 _LIBCPP_ASSERT_INTERNAL(__res, "unseq/seq should never try to allocate!"); in operator()
H A Dfill.h48 [[maybe_unused]] auto __res = in operator()
50 _LIBCPP_ASSERT_INTERNAL(__res, "unseq/seq should never try to allocate!"); in operator()
/freebsd/contrib/llvm-project/libcxx/include/__tuple/
H A Dfind_index.h29 inline _LIBCPP_HIDE_FROM_ABI constexpr size_t __find_idx_return(size_t __curr_i, size_t __res, bool… in __find_idx_return() argument
30 return !__matches ? __res : (__res == __not_found ? __curr_i : __ambiguous); in __find_idx_return()
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/omp/
H A Dparallel_reduce.h
/freebsd/contrib/llvm-project/libcxx/src/experimental/
H A Dmemory_resource.cpp
/freebsd/contrib/llvm-project/libcxx/include/__pstl/backends/
H A Ddefault.h125 auto __res = _FindIf()(__policy, __first, __last, std::forward<_Pred>(__pred));
126 if (!__res)
128 return *__res != __last;
138 …auto __res = _AnyOf()(__policy, __first, __last, [&](__iter_reference<_ForwardIterator> __value)…
141 if (!__res)
143 return !*__res;
153 auto __res = _AnyOf()(__policy, __first, __last, std::forward<_Pred>(__pred));
154 if (!__res)
156 return !*__res;
404 auto __res =
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__mdspan/
H A Dlayout_left.h159 index_type __res = 0; in operator()
160 …((__res = __idx_a[extents_type::rank() - 1 - _Pos] + __extents_.extent(extents_type::rank() - 1 - … in operator()
162 return __res; in operator()
H A Dlayout_right.h157 index_type __res = 0; in operator()
158 ((__res = static_cast<index_type>(__idx) + __extents_.extent(_Pos) * __res), ...); in operator()
159 return __res; in operator()
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dglue_memory_impl.h
/freebsd/contrib/llvm-project/libcxx/include/__format/
H A Dformat_functions.h455 string __res; in vformat() local
456 std::vformat_to(std::back_inserter(__res), __fmt, __args); in vformat()
457 return __res; in vformat()
466 wstring __res; in vformat() local
467 std::vformat_to(std::back_inserter(__res), __fmt, __args); in vformat()
468 return __res; in vformat()
588 string __res; in vformat() local
589 std::vformat_to(std::back_inserter(__res), std::move(__loc), __fmt, __args); in vformat()
590 return __res; in vformat()
599 wstring __res; in vformat() local
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__numeric/
H A Dgcd_lcm.h120 _Rp __res;
121 [[maybe_unused]] bool __overflow = __builtin_mul_overflow(__val1, __val2, &__res);
123 return __res;

12