HomeSort by: relevance | last modified time | path
    Searched refs:__result (Results 1 - 25 of 72) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/lib/Headers/
sgxintrin.h 26 unsigned int __result; local
28 : "=a" (__result), "=b" (__d[0]), "=c" (__d[1]), "=d" (__d[2])
31 return __result;
37 unsigned int __result; local
39 : "=a" (__result), "=b" (__d[0]), "=c" (__d[1]), "=d" (__d[2])
42 return __result;
48 unsigned int __result; local
50 : "=a" (__result), "=b" (__d[0]), "=c" (__d[1]), "=d" (__d[2])
53 return __result;
pconfigintrin.h 28 unsigned int __result; local
30 : "=a" (__result), "=b" (__d[0]), "=c" (__d[1]), "=d" (__d[2])
33 return __result;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/m68k/
atomicity.h 39 register _Atomic_word __result = *__mem; local
45 : "=d" (__result), "=&d" (__temp), "=m" (*__mem)
46 : "d" (__val), "0" (__result), "m" (*__mem));
47 return __result;
60 _Atomic_word __result;
65 __result = *__mem;
66 *__mem = __result + __val;
69 return __result;
89 _Atomic_word __result;
115 __result = *__mem
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/cris/
atomicity.h 35 _Atomic_word __result; local
47 : "=&r" (__result), "=Q" (*__mem), "=&r" (__tmp)
60 : "=&r" (__result), "=Q" (*__mem), "=&r" (__tmp)
73 : "=&r" (__result), "=Q" (*__mem), "=&r" (__tmp)
81 return __result;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/i486/
atomicity.h 35 register _Atomic_word __result; local
37 : "=r" (__result), "=m" (*__mem)
39 return __result;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/generic/atomicity_mutex/
atomicity.h 47 _Atomic_word __result; local
48 __result = *__mem;
50 return __result;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
partial_sum.h 49 * @param __result Begin iterator of output sequence.
59 _OutputIterator __result,
64 return __result;
69 *__result = __value;
70 ++__result;
73 return __result;
80 * @param __result Begin iterator of output sequence.
90 _OutputIterator __result,
99 return __result;
106 *__result = *__begin
    [all...]
find.h 108 _DifferenceType __result = __length; local
132 # pragma omp flush(__result)
134 if (__result < __pos)
140 if (__pos < __result)
141 __result = __pos;
153 return std::pair<_RAIter1, _RAIter2>(__begin1 + __result,
154 __begin2 + __result);
214 _DifferenceType __result = __length; local
222 # pragma omp parallel shared(__result) num_threads(__num_threads)
243 # pragma omp flush(__result)
    [all...]
search.h 100 _DifferenceType __result = (__end1 - __begin1); local
137 #pragma omp flush(__result)
139 if (__result < __start)
149 __result = std::min(__result, __start);
168 return (__begin1 + __result);
unique_copy.h 43 * @param __result Begin iterator of result __sequence.
51 _OutputIterator __result,
63 return __result;
88 _OutputIterator __out = __result;
137 _OutputIterator __iter_out = __result + __begin_output;
160 _OutputIterator __iter_out = __result + __begin_output;
176 return __result + __end_output;
182 * @param __result Begin iterator of result __sequence.
187 _OutputIterator __result)
191 return __parallel_unique_copy(__first, __last, __result,
    [all...]
  /src/sys/arch/acorn32/include/
lock.h 73 int __result; local
75 __result = __swp(__SIMPLELOCK_LOCKED, alp) == __SIMPLELOCK_UNLOCKED;
76 if (__result)
78 return __result;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
parallel_backend_utils.h 140 _ForwardIterator2 __last2, _OutputIterator __result, _Compare __comp,
145 for (; __first1 != __last1; ++__result)
148 return __cc_range(__first1, __last1, __result);
151 ::new (std::addressof(*__result)) _Tp(*__first2);
156 ::new (std::addressof(*__result)) _Tp(*__first1);
162 return __cc_range(__first2, __last2, __result);
168 _ForwardIterator2 __last2, _OutputIterator __result, _Compare __comp)
180 ::new (std::addressof(*__result)) _Tp(*__first1);
181 ++__result;
187 return __result;
    [all...]
memory_impl.h 28 __brick_uninitialized_move(_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __result,
32 for (; __first != __last; ++__first, ++__result)
34 ::new (std::addressof(*__result)) _ValueType(std::move(*__first));
36 return __result;
41 __brick_uninitialized_move(_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __result,
49 __first, __last - __first, __result,
79 __brick_uninitialized_copy(_ForwardIterator __first, _ForwardIterator __last, _OutputIterator __result,
83 for (; __first != __last; ++__first, ++__result)
85 ::new (std::addressof(*__result)) _ValueType(*__first);
87 return __result;
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
stl_numeric.h 244 * is written to @p __result. Therefore, the first value in @p __result is
245 * the first value of the input, the second value in @p __result is the sum
250 * @param __result Output sum.
251 * @return Iterator pointing just beyond the values written to __result.
257 _OutputIterator __result)
268 return __result;
270 *__result = __value;
274 *++__result = __value;
276 return ++__result;
    [all...]
stl_uninitialized.h 114 _ForwardIterator __result)
116 _ForwardIterator __cur = __result;
125 std::_Destroy(__result, __cur);
136 _ForwardIterator __result)
137 { return std::__do_uninit_copy(__first, __last, __result); }
146 _ForwardIterator __result)
147 { return std::copy(__first, __last, __result); }
156 * @param __result An output iterator.
157 * @return __result + (__first - __last)
164 _ForwardIterator __result)
    [all...]
ranges_algobase.h 203 __copy_or_move_backward(_Iter __first, _Sent __last, _Out __result);
214 __copy_or_move(_Iter __first, _Sent __last, _Out __result)
226 std::move(__result));
235 std::move(__result).base());
243 std::move(__result));
249 = ranges::__copy_or_move<_IsMove>(std::move(__first), __last, __result.base());
250 return {std::move(__in), decltype(__result){__out}};
264 __builtin_memmove(__result, __first,
266 return {__first + __num, __result + __num};
273 *__result = std::move(*__first)
    [all...]
streambuf_iterator.h 340 ostreambuf_iterator<_CharT> __result)
342 if (__first._M_sbuf && !__last._M_sbuf && !__result._M_failed)
345 __copy_streambufs_eof(__first._M_sbuf, __result._M_sbuf, __ineof);
347 __result._M_failed = true;
349 return __result;
356 ostreambuf_iterator<_CharT> __result)
360 __result._M_put(__first, __num);
361 return __result;
368 ostreambuf_iterator<_CharT> __result)
372 __result._M_put(__first, __num)
    [all...]
invoke.h 93 using __result = __invoke_result<_Callable, _Args...>;
94 using __type = typename __result::type;
95 using __tag = typename __result::__invoke_type;
107 using __result = __invoke_result<_Callable, _Args...>;
108 using __type = typename __result::type;
109 using __tag = typename __result::__invoke_type;
139 using __result = __invoke_result<_Callable, _Args...>;
140 using __type = typename __result::type;
141 using __tag = typename __result::__invoke_type;
151 using __result = __invoke_result<_Callable, _Args...>
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/i386/
atomicity.h 46 register _Atomic_word __result, __tmp = 1; local
58 __result = *__mem;
64 return __result;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
functional_hash.h 103 size_t __result = 0; local
106 __result = (__result * 131) + *__cptr++;
107 return __result;
118 size_t __result = static_cast<size_t>(2166136261UL); local
122 __result ^= static_cast<size_t>(*__cptr++);
123 __result *= static_cast<size_t>(16777619UL);
125 return __result;
136 size_t __result local
141 __result ^= static_cast<size_t>(*__cptr++)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
bmi2intrin.h 80 unsigned long __result = 0x0UL; local
98 __result |= (__t & (__mask >> __c));
101 return __result;
112 unsigned long __result; local
128 __result = __builtin_bpermd (__p, __X);
133 __result = 0;
145 __result |= (__t);
149 return __result;
emmintrin.h 144 __v2df __result = (__v2df) __A; local
145 __result [0] = ((__v2df) __B)[0];
146 return (__m128d) __result;
867 __v4si __result, __temp; local
885 __result = (__v4si) vec_vpkudum ((__vector long long) __temp,
891 __result = (__v4si) vec_perm ((__v16qu) __temp, (__v16qu) __vzero, __pkperm);
894 return (__m128i) __result;
900 __m128i __result = _mm_cvtpd_epi32(__A); local
902 return (__m64) __result[0];
908 __v4sf __result; local
939 __v4si __result; local
973 __m128i __result = _mm_cvttpd_epi32 (__A); local
990 __v2df __result; local
1003 __v4si __result; local
1013 __v4si __result; local
1058 int __result = ((__v2df)__rounded)[0]; local
1067 long long __result = ((__v2df) __rounded)[0]; local
1082 int __result = ((__v2df)__A)[0]; local
1091 long long __result = ((__v2df)__A)[0]; local
1106 __v4sf __result = (__v4sf)__A; local
1132 __v2df __result = (__v2df)__A; local
1142 __v2df __result = (__v2df)__A; local
1179 __vector double __result; local
1216 __v2df __result = (__v2df)__A; local
1224 __v2df __result = (__v2df)__A; local
1474 __v2du __result; local
1502 __v8hi __result = { 0, 0, 0, 0, 0, 0, 0, 0 }; local
1521 __v4si __result = { 0, 0, 0, 0 }; local
1541 __v2di __result = { 0, 0 }; local
1561 __v8hi __result; local
1579 __v4si __result; local
1601 __v16qu __result; local
1615 __v16qu __result; local
1650 __v16qu __result; local
1670 __v8hi __result = { 0, 0, 0, 0, 0, 0, 0, 0 }; local
1689 __v4si __result = { 0, 0, 0, 0 }; local
1714 __v2di __result = { 0, 0 }; local
1741 __v8hu __result; local
1761 __v4su __result; local
1781 __v2du __result; local
1797 __v8hi __result; local
1815 __v4si __result; local
1834 __v8hu __result; local
1854 __v4su __result; local
1875 __v2du __result; local
1997 __v8hi __result = (__v8hi)__A; local
2203 __v4si __result; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
pool_allocator.cc 65 char* __result; local
71 __result = _S_start_free;
73 return __result ;
79 __result = _S_start_free;
81 return __result;
138 _Obj* __result; local
147 __result = (_Obj*)(void*)__chunk;
161 return __result;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/impl/
profiler_algos.h 99 _ForwardIterator __result = __first;
104 *__result = *__first;
105 ++__result;
107 return __result;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/config/cpu/sparc/
atomicity.h 84 _Atomic_word __result, __tmp;
93 __result = *__mem;
99 return __result;

Completed in 47 milliseconds

1 2 3