Home
last modified time | relevance | path

Searched refs:__operation (Results 1 – 4 of 4) sorted by relevance

/src/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_transform.h49 …__unary(_InIter __first, _Sent __last, _OutIter __result, _Func& __operation, _Proj& __projection)… in __unary()
51 *__result = std::invoke(__operation, std::invoke(__projection, *__first)); in __unary()
94 …operator()(_InIter __first, _Sent __last, _OutIter __result, _Func __operation, _Proj __proj = {})… in operator()
95 return __unary(std::move(__first), std::move(__last), std::move(__result), __operation, __proj);
101 …operator()(_Range&& __range, _OutIter __result, _Func __operation, _Proj __projection = {}) const { in operator()
102 …return __unary(ranges::begin(__range), ranges::end(__range), std::move(__result), __operation, __p…
/src/contrib/llvm-project/libcxx/include/__format/
H A Dformatter_output.h143 _UnaryOperation __operation) -> decltype(__out_it) {
145 __out_it.__get_container()->__transform(__first, __last, std::move(__operation));
148 __out_it.__buffer_->__transform(__first, __last, std::move(__operation));
151 return std::ranges::transform(__first, __last, std::move(__out_it), __operation).out;
H A Dbuffer.h136 …_HIDE_FROM_ABI void __transform(_Iterator __first, _Iterator __last, _UnaryOperation __operation) { in __transform() argument
142 std::transform(__first, __last, std::addressof(__ptr_[__size_]), std::move(__operation)); in __transform()
152 std::transform(__first, __first + __chunk, std::addressof(__ptr_[__size_]), __operation); in __transform()
598 …_HIDE_FROM_ABI void __transform(_Iterator __first, _Iterator __last, _UnaryOperation __operation) {
607 std::transform(__first, __last, __ptr_ + __size_, std::move(__operation));
/src/contrib/llvm-project/libcxx/include/__atomic/
H A Datomic.h155 …__rmw_op(_This&& __self, _Tp __operand, memory_order __m, _Operation __operation, _BuiltinOp __bui…
160 _Tp __new = __operation(__old, __operand);
170 __new = __operation(__old, __operand);