/freebsd/contrib/bmake/unit-tests/ |
H A D | hanoi-include.exp | 1 Move the upper disk from stack A to stack C. 2 Move the upper disk from stack A to stack B. 3 Move the upper disk from stack C to stack B. 4 Move the upper disk from stack A to stack C. 5 Move the upper disk from stack B to stack A. 6 Move the upper disk from stack B to stack C. 7 Move the upper disk from stack A to stack C. 8 Move the upper disk from stack A to stack B. 9 Move the upper disk from stack C to stack B. 10 Move the upper disk from stack C to stack A. [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | pstl.h | 33 # include <__utility/move.h> 47 …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() [all …]
|
H A D | set_symmetric_difference.h | 18 #include <__utility/move.h> 39 : __in1_(std::move(__in_iter1)), __in2_(std::move(__in_iter2)), __out_(std::move(__out_iter)) {} 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((__ret in __set_symmetric_difference() [all...] |
H A D | set_union.h | 18 #include <__utility/move.h> 39 : __in1_(std::move(__in_iter1)), __in2_(std::move(__in_iter2)), __out_(std::move(__out_iter)) {} 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((__ret in __set_union() [all...] |
H A D | set_intersection.h | 22 #include <__utility/move.h> 43 … : __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() [all …]
|
H A D | unwrap_range.h | 18 #include <__utility/move.h> 41 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)}; 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(__las [all...] |
H A D | is_permutation.h | 23 #include <__utility/move.h> 135 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), [all …]
|
H A D | move.h | 20 #include <__utility/move.h> 46 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()
|
/freebsd/contrib/ncurses/man/ |
H A D | form_driver.3x | 78 REQ_BEG_FIELD Move to beginning of field. 79 REQ_BEG_LINE Move to beginning of the line. 87 REQ_DOWN_CHAR Move down in field. 88 REQ_DOWN_FIELD Move down to a field. 89 REQ_END_FIELD Move to the end of field. 90 REQ_END_LINE Move to the end of the line. 91 REQ_FIRST_FIELD Move to the first field. 92 REQ_FIRST_PAGE Move to the first page. 96 REQ_LAST_FIELD Move to the last field. 97 REQ_LAST_PAGE Move to the last field. [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/cpu_algos/ |
H A D | transform_reduce.h | 22 #include <__utility/move.h> 82 __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() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | TargetRegistry.cpp | 36 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 …]
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/backends/ |
H A D | default.h | 26 #include <__utility/move.h> 87 // - move 103 …__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); [all …]
|
H A D | serial.h | 23 #include <__utility/move.h> 52 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)); [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__numeric/ |
H A D | pstl.h | 34 # include <__utility/move.h> 50 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() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | ranges_uninitialized_algorithms.h | 27 #include <__utility/move.h> 52 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); 168 return std::__uninitialized_fill_n<_ValueType>(std::move(__firs [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | JITLinkGeneric.cpp | 33 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 { 64 // S->linkPhase2(std::move(S), std::move(AR)); in linkPhase2() 66 TmpSelf->linkPhase2(std::move(S), std::move(AR)); in linkPhase2() 74 Alloc = std::move(*AR); in linkPhase2() 86 return abandonAllocAndBailOut(std::move(Sel in linkPhase2() [all...] |
/freebsd/contrib/tcsh/nls/russian/ |
H A D | set3 | 3 1 Move back a character 7 5 Move to beginning of current word 8 6 Move to beginning of line 27 25 Move to next history line 30 28 Move cursor to end of line 36 34 Move forward one character 37 35 Move forward to end of current word 81 79 Move to previous history line 91 89 Vi move to previous character (backspace) 93 91 Vi move to the end of the current space delimited word [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | EPCGenericJITLinkMemoryManager.cpp | 43 : 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 D | SimpleRemoteEPC.cpp | 41 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 D | ObjectLinkingLayer.cpp | 83 new LinkGraphMaterializationUnit(ObjLinkingLayer, std::move(G), in Create() 84 std::move(LGI))); in Create() 89 ObjLinkingLayer.emit(std::move(MR), std::move(G)); in materialize() 127 : MaterializationUnit(std::move(LGI)), ObjLinkingLayer(ObjLinkingLayer), in LinkGraphMaterializationUnit() 128 G(std::move(G)) {} in LinkGraphMaterializationUnit() 159 MR(std::move(MR)), ObjBuffer(std::move(ObjBuffer)) { in ObjectLinkingLayerJITLinkContext() 168 Layer.ReturnObjectBuffer(std::move(ObjBuffer)); in ~ObjectLinkingLayerJITLinkContext() 182 Err = joinErrors(std::move(Err), P->notifyFailed(*MR)); in notifyFailed() 183 Layer.getExecutionSession().reportError(std::move(Err)); in notifyFailed() 212 std::move(LC)](Expected<SymbolMap> Result) mutable { in lookup() [all …]
|
/freebsd/contrib/tcsh/nls/C/ |
H A D | set3 | 3 1 Move back a character 7 5 Move to beginning of current word 8 6 Move to beginning of line 27 25 Move to next history line 30 28 Move cursor to end of line 36 34 Move forward one character 37 35 Move forward to end of current word 81 79 Move to previous history line 91 89 Vi move to previous character (backspace) 93 91 Vi move to the end of the current space delimited word [all …]
|
/freebsd/contrib/tcsh/nls/ukrainian/ |
H A D | set3 | 3 1 Move back a character 7 5 Move to beginning of current word 8 6 Move to beginning of line 27 25 Move to next history line 30 28 Move cursor to end of line 36 34 Move forward one character 37 35 Move forward to end of current word 81 79 Move to previous history line 91 89 Vi move to previous character (backspace) 93 91 Vi move to the end of the current space delimited word [all …]
|
/freebsd/contrib/nvi/vi/ |
H A D | v_cmd.c | 61 "^H move left by characters"}, 67 "^J move down by lines"}, 77 "^M move down by lines (to first non-blank)"}, 81 "^N move down by lines"}, 87 "^P move up by lines"}, 111 "^W move to next screen"}, 143 " <space> move right by columns"}, 157 " $ move to last column"}, 161 " % move to match"}, 169 " ' move to mark (to first non-blank)"}, [all …]
|
/freebsd/share/doc/psd/02.implement/ |
H A D | fig1.pic | 44 T: box invis ht .2i "Process Table"; move down .125i 49 move right 1.5i 51 T: box invis ht .2i "Text Table"; move down .125i 56 move down 1i from TT.C.s 57 move right 0.5i 61 move left 1.5i from UTS.w 63 SDS: box "System" "Data" "Segment" ; move down .5i from SDS.n ; 66 move left 1i from DS.UDS.w 67 move down 0.25i 83 move up 1.3175i from UAS.nw [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Transformer/ |
H A D | RewriteRule.cpp | 59 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 …]
|