| /openbsd-src/gnu/llvm/libcxx/include/__numeric/ |
| H A D | accumulate.h | 25 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init) in accumulate() argument 29 __init = _VSTD::move(__init) + *__first; in accumulate() 31 __init = __init + *__first; in accumulate() 33 return __init; in accumulate() 39 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, _BinaryOperation __binary_op) in accumulate() argument 43 __init = __binary_op(_VSTD::move(__init), *__first); in accumulate() 45 __init = __binary_op(__init, *__first); in accumulate() 47 return __init; in accumulate()
|
| H A D | inner_product.h | 25 …er_product(_InputIterator1 __first1, _InputIterator1 __last1, _InputIterator2 __first2, _Tp __init) in inner_product() argument 29 __init = _VSTD::move(__init) + *__first1 * *__first2; in inner_product() 31 __init = __init + *__first1 * *__first2; in inner_product() 33 return __init; in inner_product() 40 _Tp __init, _BinaryOperation1 __binary_op1, _BinaryOperation2 __binary_op2) in inner_product() argument 44 __init = __binary_op1(_VSTD::move(__init), __binary_op2(*__first1, *__first2)); in inner_product() 46 __init = __binary_op1(__init, __binary_op2(*__first1, *__first2)); in inner_product() 48 return __init; in inner_product()
|
| H A D | transform_reduce.h | 26 … _InputIterator __last, _Tp __init, in transform_reduce() argument 29 __init = __b(__init, __u(*__first)); in transform_reduce() 30 return __init; in transform_reduce() 36 … _InputIterator2 __first2, _Tp __init, in transform_reduce() argument 39 __init = __b1(__init, __b2(*__first1, *__first2)); in transform_reduce() 40 return __init; in transform_reduce() 46 … _InputIterator2 __first2, _Tp __init) { in transform_reduce() argument 47 return _VSTD::transform_reduce(__first1, __last1, __first2, _VSTD::move(__init), _VSTD::plus<>(), in transform_reduce()
|
| H A D | exclusive_scan.h | 27 exclusive_scan(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _Tp __init,… in exclusive_scan() argument 29 _Tp __tmp(__b(__init, *__first)); in exclusive_scan() 31 *__result = _VSTD::move(__init); in exclusive_scan() 36 __init = _VSTD::move(__tmp); in exclusive_scan() 37 __tmp = __b(__init, *__first); in exclusive_scan() 45 exclusive_scan(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _Tp __init)… in exclusive_scan() argument 46 return _VSTD::exclusive_scan(__first, __last, __result, __init, _VSTD::plus<>()); in exclusive_scan()
|
| H A D | transform_inclusive_scan.h | 28 _OutputIterator __result, _BinaryOp __b, _UnaryOp __u, _Tp __init) in transform_inclusive_scan() argument 31 __init = __b(__init, __u(*__first)); in transform_inclusive_scan() 32 *__result = __init; in transform_inclusive_scan() 45 typename iterator_traits<_InputIterator>::value_type __init = __u(*__first); in transform_inclusive_scan() local 46 *__result++ = __init; in transform_inclusive_scan() 48 return _VSTD::transform_inclusive_scan(__first, __last, __result, __b, __u, __init); in transform_inclusive_scan()
|
| H A D | inclusive_scan.h | 28 …nputIterator __first, _InputIterator __last, _OutputIterator __result, _BinaryOp __b, _Tp __init) { in inclusive_scan() argument 30 __init = __b(__init, *__first); in inclusive_scan() 31 *__result = __init; in inclusive_scan() 40 typename iterator_traits<_InputIterator>::value_type __init = *__first; in inclusive_scan() local 41 *__result++ = __init; in inclusive_scan() 43 return _VSTD::inclusive_scan(__first, __last, __result, __b, __init); in inclusive_scan()
|
| H A D | reduce.h | 26 _Tp __init, _BinaryOp __b) { in reduce() argument 28 __init = __b(__init, *__first); in reduce() 29 return __init; in reduce() 34 _Tp __init) { in reduce() argument 35 return _VSTD::reduce(__first, __last, __init, _VSTD::plus<>()); in reduce()
|
| H A D | transform_exclusive_scan.h | 28 _OutputIterator __result, _Tp __init, in transform_exclusive_scan() argument 33 _Tp __saved = __init; in transform_exclusive_scan() 36 __init = __b(__init, __u(*__first)); in transform_exclusive_scan() 38 __saved = __init; in transform_exclusive_scan()
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| H A D | stl_numeric.h | 69 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init) in accumulate() argument 75 __init = __init + *__first; in accumulate() 76 return __init; in accumulate() 81 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, in accumulate() argument 88 __init = __binary_op(__init, *__first); in accumulate() 89 return __init; in accumulate() 95 _InputIterator2 __first2, _Tp __init) in inner_product() argument 102 __init = __init + (*__first1 * *__first2); in inner_product() 103 return __init; in inner_product() 110 _InputIterator2 __first2, _Tp __init, in inner_product() argument [all …]
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/bits/ |
| H A D | stl_numeric.h | 81 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init) in _GLIBCXX_BEGIN_NAMESPACE() 88 __init = __init + *__first; in _GLIBCXX_BEGIN_NAMESPACE() 89 return __init; in _GLIBCXX_BEGIN_NAMESPACE() 107 accumulate(_InputIterator __first, _InputIterator __last, _Tp __init, in accumulate() argument 115 __init = __binary_op(__init, *__first); in accumulate() 116 return __init; in accumulate() 136 _InputIterator2 __first2, _Tp __init) in inner_product() argument 144 __init = __init + (*__first1 * *__first2); in inner_product() 145 return __init; in inner_product() 168 _InputIterator2 __first2, _Tp __init, in inner_product() argument [all …]
|
| /openbsd-src/gnu/llvm/libcxx/src/ |
| H A D | system_error.cpp | 235 system_error::__init(const error_code& ec, string what_arg) in __init() function in system_error 247 : runtime_error(__init(ec, what_arg)), in system_error() 253 : runtime_error(__init(ec, what_arg)), in system_error() 259 : runtime_error(__init(ec, "")), in system_error() 265 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 271 : runtime_error(__init(error_code(ev, ecat), what_arg)), in system_error() 277 : runtime_error(__init(error_code(ev, ecat), "")), in system_error()
|
| H A D | strstream.cpp | 39 strstreambuf::__init(char* __gnext, streamsize __n, char* __pbeg) in __init() function in strstreambuf 60 __init(__gnext, __n, __pbeg); in strstreambuf() 69 __init(const_cast<char *>(__gnext), __n, nullptr); in strstreambuf() 78 …__init(const_cast<char *>(reinterpret_cast<const char*>(__gnext)), __n, reinterpret_cast<char*>(__… in strstreambuf() 87 __init(const_cast<char *>(reinterpret_cast<const char*>(__gnext)), __n, nullptr); in strstreambuf() 96 …__init(const_cast<char *>(reinterpret_cast<const char*>(__gnext)), __n, reinterpret_cast<char*>(__… in strstreambuf() 105 __init(const_cast<char *>(reinterpret_cast<const char*>(__gnext)), __n, nullptr); in strstreambuf()
|
| /openbsd-src/sys/dev/pci/drm/ |
| H A D | drm_privacy_screen_x86.c | 21 static acpi_status __init acpi_set_handle(acpi_handle handle, u32 level, in acpi_set_handle() 28 static bool __init detect_thinkpad_privacy_screen(void) in detect_thinkpad_privacy_screen() 54 static bool __init detect_chromeos_privacy_screen(void) in detect_chromeos_privacy_screen() 83 void __init drm_privacy_screen_lookup_init(void) in drm_privacy_screen_lookup_init()
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/ext/ |
| H A D | mt_allocator.h | 414 static bool __init; 415 if (__builtin_expect(__init == false, false)) 418 __init = true; 437 static bool __init; 438 if (__builtin_expect(__init == false, false)) 451 __init = true; 509 static bool __init; 510 if (__builtin_expect(__init == false, false)) 513 __init = true; 532 static bool __init; [all …]
|
| /openbsd-src/gnu/llvm/libcxx/include/__random/ |
| H A D | shuffle_order_engine.h | 87 shuffle_order_engine() {__init();} 90 : __e_(__e) {__init();} 94 : __e_(_VSTD::move(__e)) {__init();} 97 explicit shuffle_order_engine(result_type __sd) : __e_(__sd) {__init();} 103 : __e_(__q) {__init();} 105 void seed() {__e_.seed(); __init();} 107 void seed(result_type __sd) {__e_.seed(__sd); __init();} 115 seed(_Sseq& __q) {__e_.seed(__q); __init();} 157 void __init()
|
| H A D | seed_seq.h | 41 __init(__il.begin(), __il.end()); in seed_seq() 50 __init(__first, __last); in seed_seq() 73 void __init(_InputIterator __first, _InputIterator __last); 80 seed_seq::__init(_InputIterator __first, _InputIterator __last) in __init() function
|
| H A D | discrete_distribution.h | 49 : __p_(__f, __l) {__init();} in param_type() 53 : __p_(__wl.begin(), __wl.end()) {__init();} in param_type() 69 void __init(); 170 __init(); in param_type() 176 discrete_distribution<_IntType>::param_type::__init() in __init() function
|
| H A D | piecewise_constant_distribution.h | 71 void __init(); 187 piecewise_constant_distribution<_RealType>::param_type::__init() in __init() function 234 __init(); in param_type() 259 __init(); in param_type() 280 __init(); in param_type()
|
| /openbsd-src/gnu/gcc/gcc/config/bfin/ |
| H A D | crti.s | 38 .globl __init symbol 39 .type __init,@function 40 __init: label
|
| /openbsd-src/sys/dev/pci/drm/include/drm/ |
| H A D | drm_module.h | 38 static inline int __init drm_pci_register_driver(struct pci_driver *pci_drv) in drm_pci_register_driver() 61 static inline int __init 100 static inline int __init
|
| /openbsd-src/gnu/usr.bin/perl/ext/Amiga-ARexx/ |
| H A D | ARexx.pm | 35 return $self->__init(@_); 38 sub __init subroutine 126 return $self->__init(@_); 129 sub __init subroutine
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/h8300/ |
| H A D | crti.asm | 49 .global __init symbol 50 __init: label
|
| /openbsd-src/gnu/gcc/gcc/config/h8300/ |
| H A D | crti.asm | 64 .global __init symbol 65 __init: label
|
| /openbsd-src/lib/csu/ |
| H A D | crtbegin.c | 113 void __init(void); 118 MD_SECTION_PROLOGUE(".init", __init);
|
| /openbsd-src/gnu/llvm/libcxx/include/__string.d/__string/ |
| H A D | extern_template_lists.h | 33 …_Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::__init(value_type const*, size_type, size_typ… 42 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::__init(value_type const*, size_type)) \ 54 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::__init(size_type, value_type)) \ 83 …_Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::__init(value_type const*, size_type, size_typ… 90 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::__init(value_type const*, size_type)) \ 104 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::__init(size_type, value_type)) \
|