Home
last modified time | relevance | path

Searched refs:move (Results 1 – 25 of 2621) sorted by relevance

12345678910>>...105

/src/contrib/llvm-project/libcxx/include/__algorithm/
H A Dpstl.h47 …std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__last), std::move(__pred)… in any_of()
60 …std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__last), std::move(__pred)… in all_of()
73 …std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__last), std::move(__pred)… in none_of()
91 …std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__last), std::move(__resul… in copy()
110 …std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__n), std::move(__result)); in copy_n()
124 …std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__last), std::move(__pred)… in count_if()
138 std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__last), __value); in count()
158 std::move(__first1), in equal()
159 std::move(__last1), in equal()
160 std::move(__first2), in equal()
[all …]
H A Dset_symmetric_difference.h39 … : __in1_(std::move(__in_iter1)), __in2_(std::move(__in_iter2)), __out_(std::move(__out_iter)) {} in __set_symmetric_difference_result()
48 …auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)… in __set_symmetric_difference()
50 std::move(__ret1.first), std::move(__first2), std::move((__ret1.second))); in __set_symmetric_difference()
66 …auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)… in __set_symmetric_difference()
68 std::move(__first1), std::move(__ret2.first), std::move((__ret2.second))); in __set_symmetric_difference()
80 std::move(__first1), in set_symmetric_difference()
81 std::move(__last1), in set_symmetric_difference()
82 std::move(__first2), in set_symmetric_difference()
83 std::move(__last2), in set_symmetric_difference()
84 std::move(__result), in set_symmetric_difference()
[all …]
H A Dset_union.h39 … : __in1_(std::move(__in_iter1)), __in2_(std::move(__in_iter2)), __out_(std::move(__out_iter)) {} in __set_union_result()
47 …auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)… in __set_union()
49 std::move(__ret1.first), std::move(__first2), std::move((__ret1.second))); in __set_union()
62 …auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)… in __set_union()
64 std::move(__first1), std::move(__ret2.first), std::move((__ret2.second))); in __set_union()
76 std::move(__first1), in set_union()
77 std::move(__last1), in set_union()
78 std::move(__first2), in set_union()
79 std::move(__last2), in set_union()
80 std::move(__result), in set_union()
[all …]
H A Dset_intersection.h43 … : __in1_(std::move(__in_iter1)), __in2_(std::move(__in_iter2)), __out_(std::move(__out_iter)) {} in __set_intersection_result()
119 _IterOps<_AlgPolicy>::next(std::move(__first1), std::move(__last1)), in __set_intersection()
120 _IterOps<_AlgPolicy>::next(std::move(__first2), std::move(__last2)), in __set_intersection()
121 std::move(__result)); in __set_intersection()
157 _IterOps<_AlgPolicy>::next(std::move(__first1), std::move(__last1)), in __set_intersection()
158 _IterOps<_AlgPolicy>::next(std::move(__first2), std::move(__last2)), in __set_intersection()
159 std::move(__result)); in __set_intersection()
168 std::move(__first1), in __set_intersection()
169 std::move(__last1), in __set_intersection()
170 std::move(__first2), in __set_intersection()
[all …]
H A Dunwrap_range.h41 return pair{std::__unwrap_iter(std::move(__first)), std::__unwrap_iter(std::move(__last))}; in __unwrap()
45 return pair{std::move(__first), std::move(__last)}; in __unwrap()
49 __rewrap(_Iter __orig_iter, decltype(std::__unwrap_iter(std::move(__orig_iter))) __iter) in __rewrap()
52 return std::__rewrap_iter(std::move(__orig_iter), std::move(__iter)); in __rewrap()
65 return pair{std::__unwrap_iter(std::move(__first)), std::__unwrap_iter(std::move(__last))};
70 return std::__rewrap_iter(std::move(__orig_iter), std::move(__iter));
76 return __unwrap_range_impl<_Iter, _Sent>::__unwrap(std::move(__first), std::move(__last));
81 return __unwrap_range_impl<_Iter, _Sent>::__rewrap(std::move(__orig_iter), std::move(__iter));
86 …return std::make_pair(std::__unwrap_iter(std::move(__first)), std::__unwrap_iter(std::move(__last)…
91 return std::__rewrap_iter(std::move(__orig_iter), std::move(__iter));
H A Dis_permutation.h135 std::move(__first1),
136 std::move(__last1),
137 std::move(__first2),
138 std::move(__last2),
184 …std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2), __pred, __proj1,…
208 std::move(__first1),
209 std::move(__last1),
210 std::move(__first2),
211 std::move(__last2),
236 std::move(__first1),
[all …]
H A Dmove.h46 return std::make_pair(std::move(__first), std::move(__result)); in operator()
60 __result_ = std::__move<_AlgPolicy>(__lfirst, __llast, std::move(__result_)).second; in operator()
68 return std::make_pair(__last, std::move(__result)); in operator()
82 return std::make_pair(std::move(__first), std::move(__result)); in operator()
90 __first = std::move(__iters.first); in operator()
93 …return std::make_pair(std::move(__first), _Traits::__compose(__segment_iterator, std::move(__iters… in operator()
111 std::move(__first), std::move(__last), std::move(__result)); in __move()
116 move(_InputIterator __first, _InputIterator __last, _OutputIterator __result) { in move() function
120 …return std::__move<_ClassicAlgPolicy>(std::move(__first), std::move(__last), std::move(__result)).… in move()
/src/contrib/llvm-project/llvm/lib/MC/
H A DTargetRegistry.cpp36 S = COFFStreamerCtorFn(Ctx, std::move(TAB), std::move(OW), in createMCObjectStreamer()
37 std::move(Emitter)); in createMCObjectStreamer()
41 S = MachOStreamerCtorFn(Ctx, std::move(TAB), std::move(OW), in createMCObjectStreamer()
42 std::move(Emitter)); in createMCObjectStreamer()
44 S = createMachOStreamer(Ctx, std::move(TAB), std::move(OW), in createMCObjectStreamer()
45 std::move(Emitter), false); in createMCObjectStreamer()
49 S = ELFStreamerCtorFn(T, Ctx, std::move(TAB), std::move(OW), in createMCObjectStreamer()
50 std::move(Emitter)); in createMCObjectStreamer()
52 S = createELFStreamer(Ctx, std::move(TAB), std::move(OW), in createMCObjectStreamer()
53 std::move(Emitter)); in createMCObjectStreamer()
[all …]
/src/contrib/llvm-project/libcxx/include/__pstl/cpu_algos/
H A Dtransform_reduce.h82 __lane[__j] = __binary_op(std::move(__lane[__j]), __f(__i + __j)); in __simd_transform_reduce()
88 __lane[__j] = __binary_op(std::move(__lane[__j]), __f(__last_iteration + __j)); in __simd_transform_reduce()
92 __init = __binary_op(std::move(__init), std::move(__lane[__j])); in __simd_transform_reduce()
101 __init = __binary_op(std::move(__init), __f(__i)); in __simd_transform_reduce()
128 std::move(__last1), in operator()
132 std::move(__init), in operator()
133 std::move(__reduce), in operator()
141 std::move(__brick_last), in operator()
143 std::move(__brick_init), in operator()
144 std::move(__reduce), in operator()
[all …]
/src/contrib/llvm-project/libcxx/include/__pstl/backends/
H A Ddefault.h103 …__policy, std::move(__first), std::move(__last), [&](__iter_reference<_ForwardIterator> __element)…
166 auto __maybe_first = _FindIfNot()(__policy, std::move(__first), std::move(__last), __pred);
175 return _NoneOf()(__policy, std::move(__first), std::move(__last), __pred);
190 return _ForEach()(__policy, std::move(__first), std::move(__last), std::move(__func));
193 std::for_each_n(std::move(__first), __size, std::move(__func));
206 …return _ForEach()(__policy, std::move(__first), std::move(__last), [&](_Ref __element) { __element…
218 return _Fill()(__policy, std::move(__first), std::move(__last), __value);
221 std::fill_n(std::move(__first), __n, __value);
236 …__policy, std::move(__first), std::move(__last), [&](_Ref __element) { return __element == __old; …
248 return _ForEach()(__policy, std::move(__first), std::move(__last), [&](_Ref __element) {
[all …]
H A Dserial.h52 return std::find_if(std::move(__first), std::move(__last), std::forward<_Pred>(__pred));
61 std::for_each(std::move(__first), std::move(__last), std::forward<_Function>(__func));
78 std::move(__first1),
79 std::move(__last1),
80 std::move(__first2),
81 std::move(__last2),
82 std::move(__outit),
92 std::stable_sort(std::move(__first), std::move(__last), std::forward<_Comp>(__comp));
104 … std::move(__first), std::move(__last), std::move(__outit), std::forward<_UnaryOperation>(__op));
123 std::move(__first1),
[all …]
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkGeneric.cpp33 return Ctx->notifyFailed(std::move(Err)); in linkPhase1()
49 return Ctx->notifyFailed(std::move(Err)); in linkPhase1()
55 linkPhase2(std::move(Self), nullptr); in linkPhase1()
61 [S = std::move(Self)](AllocResult AR) mutable { in linkPhase1()
66 TmpSelf->linkPhase2(std::move(S), std::move(AR)); in linkPhase1()
74 Alloc = std::move(*AR); in linkPhase2()
86 return abandonAllocAndBailOut(std::move(Self), std::move(Err)); in linkPhase2()
92 return abandonAllocAndBailOut(std::move(Self), std::move(Err)); in linkPhase2()
105 TmpSelf.linkPhase3(std::move(Self), AsyncLookupResult()); in linkPhase2()
125 Ctx->lookup(std::move(ExternalSymbols), in linkPhase2()
[all …]
H A DELF.cpp117 link_ELF_aarch64(std::move(G), std::move(Ctx)); in link_ELF()
123 link_ELF_aarch32(std::move(G), std::move(Ctx)); in link_ELF()
127 link_ELF_loongarch(std::move(G), std::move(Ctx)); in link_ELF()
130 link_ELF_ppc64(std::move(G), std::move(Ctx)); in link_ELF()
133 link_ELF_ppc64le(std::move(G), std::move(Ctx)); in link_ELF()
137 link_ELF_riscv(std::move(G), std::move(Ctx)); in link_ELF()
140 link_ELF_x86_64(std::move(G), std::move(Ctx)); in link_ELF()
143 link_ELF_i386(std::move(G), std::move(Ctx)); in link_ELF()
/src/contrib/llvm-project/libcxx/include/__numeric/
H A Dpstl.h50 std::move(__first), in reduce()
51 std::move(__last), in reduce()
52 std::move(__init), in reduce()
53 std::move(__op)); in reduce()
66 …std::forward<_ExecutionPolicy>(__policy), std::move(__first), std::move(__last), std::move(__init)… in reduce()
79 std::move(__first), in reduce()
80 std::move(__last), in reduce()
107 std::move(__first1), in transform_reduce()
108 std::move(__last1), in transform_reduce()
109 std::move(__first2), in transform_reduce()
[all …]
/src/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DEPCGenericJITLinkMemoryManager.cpp43 : Parent(Parent), G(G), AllocAddr(AllocAddr), Segs(std::move(Segs)) {} in InFlightAlloc()
63 [OnFinalize = std::move(OnFinalize), AllocAddr = this->AllocAddr]( in finalize()
67 cantFail(std::move(FinalizeErr)); in finalize()
68 OnFinalize(std::move(SerializationErr)); in finalize()
70 OnFinalize(std::move(FinalizeErr)); in finalize()
74 Parent.SAs.Allocator, std::move(FR)); in finalize()
82 [OnAbandoned = std::move(OnAbandoned)](Error SerializationErr, in abandon()
85 cantFail(std::move(DeallocateErr)); in abandon()
86 OnAbandoned(std::move(SerializationErr)); in abandon()
88 OnAbandoned(std::move(DeallocateErr)); in abandon()
[all …]
H A DLayer.cpp28 *this, *getManglingOptions(), std::move(TSM)), in add()
29 std::move(RT)); in add()
35 : MaterializationUnit(Interface()), TSM(std::move(TSM)) { in IRMaterializationUnit()
105 : MaterializationUnit(std::move(I)), TSM(std::move(TSM)), in IRMaterializationUnit()
106 SymbolToDefinition(std::move(SymbolToDefinition)) {} in IRMaterializationUnit()
137 : IRMaterializationUnit(L.getExecutionSession(), MO, std::move(TSM)), L(L) { in BasicIRLayerMaterializationUnit()
158 L.emit(std::move(R), std::move(TSM)); in materialize()
175 *this, std::move(O), std::move(I)), in add()
176 std::move(RT)); in add()
183 return add(std::move(RT), std::move(O), std::move(*I)); in add()
[all …]
H A DSimpleRemoteEPC.cpp41 return Complete(std::move(Result)); in lookupSymbolsAsyncHelper()
45 [&DylibMgr, Request, Complete = std::move(Complete), in lookupSymbolsAsyncHelper()
46 Result = std::move(Result)](auto R) mutable { in lookupSymbolsAsyncHelper()
55 DylibMgr, Request.drop_front(), std::move(Result), in lookupSymbolsAsyncHelper()
56 std::move(Complete)); in lookupSymbolsAsyncHelper()
62 lookupSymbolsAsyncHelper(*DylibMgr, Request, {}, std::move(Complete)); in lookupSymbolsAsync()
70 return std::move(Err); in runAsMain()
78 return std::move(Err); in runAsVoidFunction()
87 return std::move(Err); in runAsIntFunction()
99 PendingCallWrapperResults[SeqNo] = std::move(OnComplete); in callWrapperAsync()
[all …]
H A DCompileOnDemandLayer.cpp78 : IRMaterializationUnit(ES, MO, std::move(TSM)), Parent(Parent) {} in PartitioningIRMaterializationUnit()
84 : IRMaterializationUnit(std::move(TSM), std::move(I), in PartitioningIRMaterializationUnit()
85 std::move(SymbolToDefinition)), in PartitioningIRMaterializationUnit()
90 Parent.emitPartition(std::move(R), std::move(TSM), in materialize()
91 std::move(SymbolToDefinition)); in materialize()
107 return std::move(Requested); in compileRequested()
120 BuildIndirectStubsManager(std::move(BuildIndirectStubsManager)) {} in CompileOnDemandLayer()
123 this->Partition = std::move(Partition); in setPartitionFunction()
159 ES, *getManglingOptions(), std::move(TSM), *this))) { in emit()
160 ES.reportError(std::move(Err)); in emit()
[all …]
H A DMemoryMapper.cpp104 std::move(*DeinitializeActions); in initialize()
123 AllErr = joinErrors(std::move(AllErr), std::move(Err)); in deinitialize()
131 AllErr = joinErrors(std::move(AllErr), errorCodeToError(EC)); in deinitialize()
138 OnDeinitialized(std::move(AllErr)); in deinitialize()
158 deinitialize(AllocAddrs, [&](Error Err) { P.set_value(std::move(Err)); }); in release()
160 Err = joinErrors(std::move(Err), std::move(E)); in release()
168 Err = joinErrors(std::move(Err), errorCodeToError(EC)); in release()
175 OnReleased(std::move(Err)); in release()
191 release(ReservationAddrs, [&](Error Err) { P.set_value(std::move(Err)); }); in ~InProcessMemoryMapper()
227 [this, NumBytes, OnReserved = std::move(OnReserved)]( in reserve()
[all …]
/src/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DRewriteRule.cpp59 T.Replacement = std::move(*Replacement); in translateEdits()
65 T.Note = std::move(*Note); in translateEdits()
71 T.Metadata = std::move(*Metadata); in translateEdits()
73 Edits.push_back(std::move(T)); in translateEdits()
79 return [Edits = std::move(Edits)](const MatchResult &Result) { in editList()
85 return [Edit = std::move(Edit)](const MatchResult &Result) { in edit()
91 return [Anchor = std::move(Anchor)](const MatchResult &Result) in noopEdit()
111 return std::move(Generators[0]); in flattenVector()
113 [Gs = std::move(Generators)]( in flattenVector()
128 E.TargetRange = std::move(Target); in changeTo()
[all …]
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DLookup.h199 : ResultKind(std::move(Other.ResultKind)), in LookupResult()
200 Ambiguity(std::move(Other.Ambiguity)), Decls(std::move(Other.Decls)), in LookupResult()
201 Paths(std::move(Other.Paths)), in LookupResult()
202 NamingClass(std::move(Other.NamingClass)), in LookupResult()
203 BaseObjectType(std::move(Other.BaseObjectType)), in LookupResult()
204 SemaPtr(std::move(Other.SemaPtr)), NameInfo(std::move(Other.NameInfo)), in LookupResult()
205 NameContextRange(std::move(Other.NameContextRange)), in LookupResult()
206 LookupKind(std::move(Other.LookupKind)), IDNS(std::move(Other.IDNS)), in LookupResult()
207 Redecl(std::move(Other.Redecl)), in LookupResult()
208 ExternalRedecl(std::move(Other.ExternalRedecl)), in LookupResult()
[all …]
/src/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DUDTLayout.cpp74 DataMember(std::move(Member)) { in DataMemberLayoutItem()
77 UdtLayout = std::make_unique<ClassLayout>(std::move(UDT)); in DataMemberLayoutItem()
86 Type(std::move(Sym)) { in VBPtrLayoutItem()
102 VTable(std::move(VT)) { in VTableLayoutItem()
147 OwnedStorage = std::move(UDT); in ClassLayout()
159 Base(std::move(B)) { in BaseClassLayout()
182 VirtualBaseSyms.push_back(std::move(Base)); in initializeChildren()
184 Bases.push_back(std::move(Base)); in initializeChildren()
188 Members.push_back(std::move(Data)); in initializeChildren()
190 Other.push_back(std::move(Data)); in initializeChildren()
[all …]
/src/contrib/llvm-project/libcxx/include/__memory/
H A Dranges_uninitialized_algorithms.h52 … return std::__uninitialized_default_construct<_ValueType>(std::move(__first), std::move(__last)); in operator()
78 return std::__uninitialized_default_construct_n<_ValueType>(std::move(__first), __n); in operator()
97 return std::__uninitialized_value_construct<_ValueType>(std::move(__first), std::move(__last)); in operator()
123 return std::__uninitialized_value_construct_n<_ValueType>(std::move(__first), __n); in operator()
142 return std::__uninitialized_fill<_ValueType>(std::move(__first), std::move(__last), __x); in operator()
168 return std::__uninitialized_fill_n<_ValueType>(std::move(__first), __n, __x); in operator()
197 std::move(__ifirst), std::move(__ilast), std::move(__ofirst), __stop_copying); in operator()
198 return {std::move(__result.first), std::move(__result.second)}; in operator()
236 …std::__uninitialized_copy_n<_ValueType>(std::move(__ifirst), __n, std::move(__ofirst), __stop_copy… in operator()
237 return {std::move(__result.first), std::move(__result.second)}; in operator()
[all …]
/src/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DPDBFile.cpp44 Buffer(std::move(PdbFileBuffer)) {} in PDBFile()
109 return std::move(EC); in getBlockData()
125 consumeError(std::move(EC)); in parseFileHeaders()
228 DirectoryStream = std::move(DS); in parseStreamData()
266 auto TempGlobals = std::make_unique<GlobalsStream>(std::move(*GlobalS)); in getPDBGlobalsStream()
268 return std::move(EC); in getPDBGlobalsStream()
269 Globals = std::move(TempGlobals); in getPDBGlobalsStream()
279 auto TempInfo = std::make_unique<InfoStream>(std::move(*InfoS)); in getPDBInfoStream()
281 return std::move(EC); in getPDBInfoStream()
282 Info = std::move(TempInfo); in getPDBInfoStream()
[all …]
/src/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DRewriteRule.h149 return ifBound(std::move(ID), edit(std::move(TrueEdit)), in ifBound()
150 edit(std::move(FalseEdit))); in ifBound()
156 return ifBound(std::move(ID), edit(std::move(TrueEdit)), noEdits()); in ifBound()
168 inline EditGenerator injectEdits(ASTEdit E) { return edit(std::move(E)); } in injectEdits()
185 return changeTo(std::move(Target), std::move(Replacement)); in change()
195 return changeTo(node(RootID), std::move(Replacement)); in changeTo()
199 return changeTo(std::move(Replacement)); in change()
205 return changeTo(before(std::move(S)), std::move(Replacement)); in insertBefore()
211 return changeTo(after(std::move(S)), std::move(Replacement)); in insertAfter()
246 [Gen = std::move(Metadata)]( in withMetadata()
[all …]

12345678910>>...105