Home
last modified time | relevance | path

Searched refs:__init (Results 1 – 25 of 127) sorted by relevance

123456

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/pstl/
H A Dnumeric_impl.h34 …duce(_ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, _Tp __init, in __brick_transform_reduce() argument
38 return std::inner_product(__first1, __last1, __first2, __init, __binary_op1, __binary_op2); in __brick_transform_reduce()
43 …duce(_ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, _Tp __init, in __brick_transform_reduce() argument
49 __last1 - __first1, __init, __binary_op1, in __brick_transform_reduce()
57 _ForwardIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1, in __pattern_transform_reduce() argument
61 …return __brick_transform_reduce(__first1, __last1, __first2, __init, __binary_op1, __binary_op2, _… in __pattern_transform_reduce()
68 … _RandomAccessIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1, in __pattern_transform_reduce() argument
77 __init, in __pattern_transform_reduce()
80 … __is_vector](_RandomAccessIterator1 __i, _RandomAccessIterator1 __j, _Tp __init) -> _Tp { in __pattern_transform_reduce()
81 …n __internal::__brick_transform_reduce(__i, __j, __first2 + (__i - __first1), __init, __binary_op1, in __pattern_transform_reduce()
[all …]
H A Dunseq_backend_simd.h447 __simd_transform_reduce(_DifferenceType __n, _Tp __init, _BinaryOperation, _UnaryOperation __f) noe… in __simd_transform_reduce() argument
449 _PSTL_PRAGMA_SIMD_REDUCTION(+ : __init) in __simd_transform_reduce()
451 __init += __f(__i); in __simd_transform_reduce()
452 return __init; in __simd_transform_reduce()
457 __simd_transform_reduce(_Size __n, _Tp __init, _BinaryOperation __binary_op, _UnaryOperation __f) n… in __simd_transform_reduce() argument
491 __init = __binary_op(__init, __lane[__i]); in __simd_transform_reduce()
504 __init = __binary_op(__init, __f(__i)); in __simd_transform_reduce()
507 return __init; in __simd_transform_reduce()
514 …InputIterator __first, _Size __n, _OutputIterator __result, _UnaryOperation __unary_op, _Tp __init, in __simd_scan() argument
517 _PSTL_PRAGMA_SIMD_SCAN(+ : __init) in __simd_scan()
[all …]
H A Dglue_numeric_impl.h25 reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init, in reduce() argument
28 …return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, __binary_… in reduce()
34 reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init) in reduce() argument
36 …return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, std::plus… in reduce()
55 _ForwardIterator2 __first2, _Tp __init) in transform_reduce() argument
60 …std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __init, std::plus<_InputType>… in transform_reduce()
70 …_ForwardIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary… in transform_reduce() argument
74 …std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __init, __binary_op1, __binar… in transform_reduce()
81 …rm_reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init, in transform_reduce() argument
86 std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, __binary_op, __unary_op, in transform_reduce()
[all …]
H A Dglue_numeric_defs.h21 reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init,
26 reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init);
36 _ForwardIterator2 __first2, _Tp __init);
42 _ForwardIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1,
47 …rm_reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init,
55 _ForwardIterator2 __result, _Tp __init);
60 _ForwardIterator2 __result, _Tp __init, _BinaryOperation __binary_op);
77 _ForwardIterator2 __result, _BinaryOperation __binary_op, _Tp __init);
85 _ForwardIterator2 __result, _Tp __init, _BinaryOperation __binary_op,
95 _Tp __init);
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/pstl/
H A Dnumeric_impl.h34 …duce(_ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, _Tp __init, in __brick_transform_reduce() argument
38 return std::inner_product(__first1, __last1, __first2, __init, __binary_op1, __binary_op2); in __brick_transform_reduce()
43 …duce(_ForwardIterator1 __first1, _ForwardIterator1 __last1, _ForwardIterator2 __first2, _Tp __init, in __brick_transform_reduce() argument
49 __last1 - __first1, __init, __binary_op1, in __brick_transform_reduce()
57 _ForwardIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1, in __pattern_transform_reduce() argument
61 …return __brick_transform_reduce(__first1, __last1, __first2, __init, __binary_op1, __binary_op2, _… in __pattern_transform_reduce()
68 … _RandomAccessIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1, in __pattern_transform_reduce() argument
77 __init, in __pattern_transform_reduce()
80 … __is_vector](_RandomAccessIterator1 __i, _RandomAccessIterator1 __j, _Tp __init) -> _Tp { in __pattern_transform_reduce()
81 …n __internal::__brick_transform_reduce(__i, __j, __first2 + (__i - __first1), __init, __binary_op1, in __pattern_transform_reduce()
[all …]
H A Dunseq_backend_simd.h447 __simd_transform_reduce(_DifferenceType __n, _Tp __init, _BinaryOperation, _UnaryOperation __f) noe… in __simd_transform_reduce() argument
449 _PSTL_PRAGMA_SIMD_REDUCTION(+ : __init) in __simd_transform_reduce()
451 __init += __f(__i); in __simd_transform_reduce()
452 return __init; in __simd_transform_reduce()
457 __simd_transform_reduce(_Size __n, _Tp __init, _BinaryOperation __binary_op, _UnaryOperation __f) n… in __simd_transform_reduce() argument
491 __init = __binary_op(__init, __lane[__j]); in __simd_transform_reduce()
504 __init = __binary_op(__init, __f(__i)); in __simd_transform_reduce()
507 return __init; in __simd_transform_reduce()
514 …InputIterator __first, _Size __n, _OutputIterator __result, _UnaryOperation __unary_op, _Tp __init, in __simd_scan() argument
517 _PSTL_PRAGMA_SIMD_SCAN(+ : __init) in __simd_scan()
[all …]
H A Dglue_numeric_impl.h25 reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init, in reduce() argument
28 …return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, __binary_… in reduce()
34 reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init) in reduce() argument
36 …return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, std::plus… in reduce()
55 _ForwardIterator2 __first2, _Tp __init) in transform_reduce() argument
59 …std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __init, std::plus<_InputType>… in transform_reduce()
71 …_ForwardIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary… in transform_reduce() argument
74 …std::forward<_ExecutionPolicy>(__exec), __first1, __last1, __first2, __init, __binary_op1, __binar… in transform_reduce()
83 …rm_reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init, in transform_reduce() argument
87 std::forward<_ExecutionPolicy>(__exec), __first, __last, __init, __binary_op, __unary_op, in transform_reduce()
[all …]
H A Dglue_numeric_defs.h21 reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init,
26 reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init);
36 _ForwardIterator2 __first2, _Tp __init);
42 _ForwardIterator2 __first2, _Tp __init, _BinaryOperation1 __binary_op1,
47 …rm_reduce(_ExecutionPolicy&& __exec, _ForwardIterator __first, _ForwardIterator __last, _Tp __init,
55 _ForwardIterator2 __result, _Tp __init);
60 _ForwardIterator2 __result, _Tp __init, _BinaryOperation __binary_op);
77 _ForwardIterator2 __result, _BinaryOperation __binary_op, _Tp __init);
85 _ForwardIterator2 __result, _Tp __init, _BinaryOperation __binary_op,
95 _Tp __init);
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dnumeric167 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init)
171 __init = _VSTD::move(__init) + *__first;
173 __init = __init + *__first;
175 return __init;
181 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, _BinaryOperation __binary_op)
185 __init = __binary_op(_VSTD::move(__init), *__first);
187 __init = __binary_op(__init, *__first);
189 return __init;
196 reduce(_InputIterator __first, _InputIterator __last, _Tp __init, _BinaryOp __b)
199 __init = __b(__init, *__first);
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstl_numeric.h134 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init) in _GLIBCXX_VISIBILITY()
141 __init = _GLIBCXX_MOVE_IF_20(__init) + *__first; in _GLIBCXX_VISIBILITY()
142 return __init; in _GLIBCXX_VISIBILITY()
161 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, in _GLIBCXX_VISIBILITY()
169 __init = __binary_op(_GLIBCXX_MOVE_IF_20(__init), *__first); in _GLIBCXX_VISIBILITY()
170 return __init; in _GLIBCXX_VISIBILITY()
191 _InputIterator2 __first2, _Tp __init) in _GLIBCXX_VISIBILITY()
199 __init = _GLIBCXX_MOVE_IF_20(__init) + (*__first1 * *__first2); in _GLIBCXX_VISIBILITY()
200 return __init; in _GLIBCXX_VISIBILITY()
224 _InputIterator2 __first2, _Tp __init, in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dstl_numeric.h134 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init) in _GLIBCXX_VISIBILITY()
141 __init = _GLIBCXX_MOVE_IF_20(__init) + *__first; in _GLIBCXX_VISIBILITY()
142 return __init; in _GLIBCXX_VISIBILITY()
161 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, in _GLIBCXX_VISIBILITY()
169 __init = __binary_op(_GLIBCXX_MOVE_IF_20(__init), *__first); in _GLIBCXX_VISIBILITY()
170 return __init; in _GLIBCXX_VISIBILITY()
191 _InputIterator2 __first2, _Tp __init) in _GLIBCXX_VISIBILITY()
199 __init = _GLIBCXX_MOVE_IF_20(__init) + (*__first1 * *__first2); in _GLIBCXX_VISIBILITY()
200 return __init; in _GLIBCXX_VISIBILITY()
224 _InputIterator2 __first2, _Tp __init, in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/
H A Dnumeric56 accumulate(_IIter __begin, _IIter __end, _Tp __init,
58 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init); }
62 accumulate(_IIter __begin, _IIter __end, _Tp __init,
64 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init, __binary_op); }
70 _Tp __init, _IteratorTag)
71 { return accumulate(__begin, __end, __init,
77 __accumulate_switch(_IIter __begin, _IIter __end, _Tp __init,
79 { return accumulate(__begin, __end, __init, __binary_op,
86 _Tp __init, _BinaryOperation __binary_op,
95 _Tp __res = __init;
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/
H A Dnumeric56 accumulate(_IIter __begin, _IIter __end, _Tp __init,
58 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init); }
62 accumulate(_IIter __begin, _IIter __end, _Tp __init,
64 { return _GLIBCXX_STD_A::accumulate(__begin, __end, __init, __binary_op); }
70 _Tp __init, _IteratorTag)
71 { return accumulate(__begin, __end, __init,
77 __accumulate_switch(_IIter __begin, _IIter __end, _Tp __init,
79 { return accumulate(__begin, __end, __init, __binary_op,
86 _Tp __init, _BinaryOperation __binary_op,
95 _Tp __res = __init;
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/
H A Dnumeric258 * @param __init Starting value to add other values to.
275 reduce(_InputIterator __first, _InputIterator __last, _Tp __init,
290 __init = __binary_op(__init, __v3);
295 __init = __binary_op(__init, *__first);
296 return __init;
304 * @param __init Starting value to add other values to.
313 reduce(_InputIterator __first, _InputIterator __last, _Tp __init)
314 { return std::reduce(__first, __last, std::move(__init), plus<>()); }
342 * @param __init Starting value to add other values to.
359 _InputIterator2 __first2, _Tp __init,
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
H A Dnumeric270 * @param __init Starting value to add other values to.
287 reduce(_InputIterator __first, _InputIterator __last, _Tp __init,
302 __init = __binary_op(__init, __v3);
307 __init = __binary_op(__init, *__first);
308 return __init;
316 * @param __init Starting value to add other values to.
325 reduce(_InputIterator __first, _InputIterator __last, _Tp __init)
326 { return std::reduce(__first, __last, std::move(__init), plus<>()); }
354 * @param __init Starting value to add other values to.
371 _InputIterator2 __first2, _Tp __init,
[all …]
/netbsd-src/external/apache2/llvm/dist/libcxx/src/
H A Dsystem_error.cpp232 system_error::__init(const error_code& ec, string what_arg) in __init() function in system_error
244 : runtime_error(__init(ec, what_arg)), in system_error()
250 : runtime_error(__init(ec, what_arg)), in system_error()
256 : runtime_error(__init(ec, "")), in system_error()
262 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error()
268 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error()
274 : runtime_error(__init(error_code(ev, ecat), "")), in system_error()
H A Dstrstream.cpp36 strstreambuf::__init(char* __gnext, streamsize __n, char* __pbeg) in __init() function in strstreambuf
57 __init(__gnext, __n, __pbeg); in strstreambuf()
66 __init(const_cast<char *>(__gnext), __n, nullptr); in strstreambuf()
75__init(const_cast<char *>(reinterpret_cast<const char*>(__gnext)), __n, reinterpret_cast<char*>(__… in strstreambuf()
84 __init(const_cast<char *>(reinterpret_cast<const char*>(__gnext)), __n, nullptr); in strstreambuf()
93__init(const_cast<char *>(reinterpret_cast<const char*>(__gnext)), __n, reinterpret_cast<char*>(__… in strstreambuf()
102 __init(const_cast<char *>(reinterpret_cast<const char*>(__gnext)), __n, nullptr); in strstreambuf()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Dmt_allocator.h414 static bool __init; in _GLIBCXX_VISIBILITY()
415 if (__builtin_expect(__init == false, false)) in _GLIBCXX_VISIBILITY()
418 __init = true; in _GLIBCXX_VISIBILITY()
437 static bool __init; in _GLIBCXX_VISIBILITY()
438 if (__builtin_expect(__init == false, false)) in _GLIBCXX_VISIBILITY()
451 __init = true; in _GLIBCXX_VISIBILITY()
510 static bool __init; in _GLIBCXX_VISIBILITY()
511 if (__builtin_expect(__init == false, false)) in _GLIBCXX_VISIBILITY()
514 __init = true; in _GLIBCXX_VISIBILITY()
533 static bool __init; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dmt_allocator.h414 static bool __init; in _GLIBCXX_VISIBILITY()
415 if (__builtin_expect(__init == false, false)) in _GLIBCXX_VISIBILITY()
418 __init = true; in _GLIBCXX_VISIBILITY()
437 static bool __init; in _GLIBCXX_VISIBILITY()
438 if (__builtin_expect(__init == false, false)) in _GLIBCXX_VISIBILITY()
451 __init = true; in _GLIBCXX_VISIBILITY()
510 static bool __init; in _GLIBCXX_VISIBILITY()
511 if (__builtin_expect(__init == false, false)) in _GLIBCXX_VISIBILITY()
514 __init = true; in _GLIBCXX_VISIBILITY()
533 static bool __init; in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/bfin/
H A Dcrti.S35 .globl __init symbol
36 .type __init,@function
37 __init: label
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/bfin/
H A Dcrti.S35 .globl __init symbol
36 .type __init,@function
37 __init: label
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/visium/
H A Dcrti.S29 .globl __init symbol
30 .type __init,@function
31 __init: label
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/visium/
H A Dcrti.S29 .globl __init symbol
30 .type __init,@function
31 __init: label
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/
H A Dsocket960 async_completion<_CompletionToken, void(error_code)> __init{__token};
969 __init.completion_handler, get_executor());
971 __init.completion_handler, std::allocator<void>());
973 [__h = std::move(__init.completion_handler), __ec]
976 return __init.result.get();
982 [__h = std::move(__init.completion_handler),
995 return __init.result.get();
1023 async_completion<_CompletionToken, void(error_code)> __init{__token};
1026 [__h = std::move(__init.completion_handler)]
1030 return __init.result.get();
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/
H A Dsocket996 async_completion<_CompletionToken, void(error_code)> __init{__token};
1005 __init.completion_handler, get_executor());
1007 __init.completion_handler, std::allocator<void>());
1009 [__h = std::move(__init.completion_handler), __ec]
1012 return __init.result.get();
1018 [__h = std::move(__init.completion_handler),
1031 return __init.result.get();
1059 async_completion<_CompletionToken, void(error_code)> __init{__token};
1062 [__h = std::move(__init.completion_handler)]
1066 return __init.result.get();
[all …]

123456