Home
last modified time | relevance | path

Searched full:move (Results 1 – 25 of 4087) sorted by relevance

12345678910>>...164

/openbsd-src/sys/dev/microcode/siop/
H A Dsiop.ss120 MOVE 0 to SCRATCHA0 ; flags
121 MOVE 0 to SCRATCHA1 ; DSA offset (for S/G save data pointer)
122 MOVE SCRATCHA3 to SFBR ; pending message ?
135 MOVE CTEST2 & 0x40 TO SFBR;
137 ; a NOP by default; patched with MOVE GPREG & 0xfe to GPREG on compile-time
143 MOVE 0xff to DSA0;
144 MOVE 0xff to DSA1;
145 MOVE 0xff to DSA2;
146 MOVE 0xff to DSA3;
147 MOVE 0 to SCRATCHA0 ; flags
[all …]
H A Dosiop.ss97 MOVE FROM ds_MsgIn, WHEN MSG_IN
115 MOVE FROM ds_ExtMsg, WHEN MSG_IN
121 MOVE FROM ds_SyncMsg, WHEN MSG_IN
138 MOVE FROM ds_ExtMsg, WHEN MSG_IN
148 MOVE LCRC to SFBR ; Save reselect ID
149 MOVE SFBR to SCRATCH0
152 MOVE FROM ds_Msg, WHEN MSG_IN
158 MOVE SCNTL1 & 0x10 to SFBR ; get connected status
160 MOVE CTEST2 & 0x40 to SFBR ; clear Sig_P
164 MOVE FROM ds_MsgOut, WHEN MSG_OUT
[all …]
/openbsd-src/usr.bin/vi/docs/
H A Dhelp4 h - cursor left w - move forward a "word" n - repeat the last search
5 l - cursor right b - move backward a "word"
17 :#<Enter> - move to a line (e.g., :35<Enter> moves to line 35)
33 ^H move left by characters
34 ^J move down by lines
36 ^M move down by lines (to first non-blank)
37 ^N move down by lines
38 ^P move up by lines
43 ^W move to next screen
50 <space> move right by columns
[all …]
/openbsd-src/gnu/llvm/libcxx/include/__algorithm/
H A Dset_union.h18 #include <__utility/move.h>
36 … : __in1_(std::move(__in_iter1)), __in2_(std::move(__in_iter2)), __out_(std::move(__out_iter)) {} in __set_union_result()
44 …auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)… in __set_union()
46 std::move(__ret1.first), std::move(__first2), std::move((__ret1.second))); in __set_union()
59 …auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)… in __set_union()
61 std::move(__first1), std::move(__ret2.first), std::move((__ret2.second))); in __set_union()
73 std::move(__first1), in set_union()
74 std::move(__last1), in set_union()
75 std::move(__first2), in set_union()
76 std::move(__last2), in set_union()
[all …]
H A Dset_symmetric_difference.h18 #include <__utility/move.h>
36 … : __in1_(std::move(__in_iter1)), __in2_(std::move(__in_iter2)), __out_(std::move(__out_iter)) {} in __set_symmetric_difference_result()
45 …auto __ret1 = std::__copy<_AlgPolicy>(std::move(__first1), std::move(__last1), std::move(__result)… in __set_symmetric_difference()
47 std::move(__ret1.first), std::move(__first2), std::move((__ret1.second))); in __set_symmetric_difference()
63 …auto __ret2 = std::__copy<_AlgPolicy>(std::move(__first2), std::move(__last2), std::move(__result)… in __set_symmetric_difference()
65 std::move(__first1), std::move(__ret2.first), std::move((__ret2.second))); in __set_symmetric_difference()
77 std::move(__first1), in set_symmetric_difference()
78 std::move(__last1), in set_symmetric_difference()
79 std::move(__first2), in set_symmetric_difference()
80 std::move(__last2), in set_symmetric_difference()
[all …]
H A Dset_intersection.h18 #include <__utility/move.h>
35 … : __in1_(std::move(__in_iter1)), __in2_(std::move(__in_iter2)), __out_(std::move(__out_iter)) {} in __set_intersection_result()
56 _IterOps<_AlgPolicy>::next(std::move(__first1), std::move(__last1)), in __set_intersection()
57 _IterOps<_AlgPolicy>::next(std::move(__first2), std::move(__last2)), in __set_intersection()
58 std::move(__result)); in __set_intersection()
70 std::move(__first1), in set_intersection()
71 std::move(__last1), in set_intersection()
72 std::move(__first2), in set_intersection()
73 std::move(__last2), in set_intersection()
74 std::move(__result), in set_intersection()
[all …]
H A Dunwrap_range.h18 #include <__utility/move.h>
38 return pair{std::__unwrap_iter(std::move(__first)), std::__unwrap_iter(std::move(__last))}; in __unwrap()
42 return pair{std::move(__first), std::move(__last)}; in __unwrap()
49 return std::__rewrap_iter(std::move(__orig_iter), std::move(__iter)); in __rewrap()
62 return pair{std::__unwrap_iter(std::move(__first)), std::__unwrap_iter(std::move(__last))};
67 return std::__rewrap_iter(std::move(__orig_iter), std::move(__iter));
73 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 Dmove.h19 #include <__utility/move.h>
45 return std::make_pair(std::move(__first), std::move(__result)); in operator()
55 … std::__move<_AlgPolicy>(_Traits::__local(__first), _Traits::__local(__last), std::move(__result)); in operator()
56 return std::make_pair(__last, std::move(__iters.second)); in operator()
59 …_move<_AlgPolicy>(_Traits::__local(__first), _Traits::__end(__sfirst), std::move(__result)).second; in operator()
63 …std::__move<_AlgPolicy>(_Traits::__begin(__sfirst), _Traits::__end(__sfirst), std::move(__result))… in operator()
67 …std::__move<_AlgPolicy>(_Traits::__begin(__sfirst), _Traits::__local(__last), std::move(__result))… 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()
[all …]
H A Dis_permutation.h22 #include <__utility/move.h>
117 std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2),
151 std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2),
166 std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2),
179 std::move(__first1), std::move(__last1), std::move(__first2), std::move(__last2),
195 std::move(__first1), std::move(__last1), std::move(__first2), __pred);
212 std::move(__first1),
213 std::move(__last1),
214 std::move(__first2),
215 std::move(__last2),
[all …]
H A Dcopy_move_common.h25 #include <__utility/move.h>
106 auto __range = std::__unwrap_range(__first, std::move(__last));
107 …auto __result = _Algorithm()(std::move(__range.first), std::move(__range.second), std::__unwrap_it…
108 return std::make_pair(std::__rewrap_range<_Sent>(std::move(__first), std::move(__result.first)),
109 … std::__rewrap_iter(std::move(__out_first), std::move(__result.second)));
119 return _Algorithm()(std::move(__first), std::move(__last), std::move(__out_first));
143 …eturn std::__unwrap_and_dispatch<_NaiveAlgorithm>(std::move(__first), std::move(__last), std::move
152 …eturn std::__unwrap_and_dispatch<_NaiveAlgorithm>(std::move(__first), std::move(__last), std::move
158 …return std::__unwrap_and_dispatch<_Algorithm>(std::move(__first), std::move(__last), std::move(__o…
H A Dcopy.h18 #include <__utility/move.h>
44 return std::make_pair(std::move(__first), std::move(__result)); in operator()
54 … std::__copy<_AlgPolicy>(_Traits::__local(__first), _Traits::__local(__last), std::move(__result)); in operator()
55 return std::make_pair(__last, std::move(__iters.second)); in operator()
58 …_copy<_AlgPolicy>(_Traits::__local(__first), _Traits::__end(__sfirst), std::move(__result)).second; in operator()
62 …std::__copy<_AlgPolicy>(_Traits::__begin(__sfirst), _Traits::__end(__sfirst), std::move(__result))… in operator()
66 …std::__copy<_AlgPolicy>(_Traits::__begin(__sfirst), _Traits::__local(__last), std::move(__result))… in operator()
67 return std::make_pair(__last, std::move(__result)); in operator()
81 return std::make_pair(std::move(__first), std::move(__result)); in operator()
89 __first = std::move(__iters.first); in operator()
[all …]
/openbsd-src/lib/libform/
H A Dform_driver.378 REQ_BEG_FIELD Move to the beginning of the field.
79 REQ_BEG_LINE Move to the beginning of the line.
87 REQ_DOWN_CHAR Move down in the field.
88 REQ_DOWN_FIELD Move down to a field.
89 REQ_END_FIELD Move to the end of the 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 …]
/openbsd-src/games/phantasia/
H A Dmap.c17 move(-1400, -1000); in main()
62 move(-670, 1075); in main()
65 move(-360, 80); in main()
67 move(-385, -100); in main()
69 move(-560, 80); in main()
71 move(-580, -100); in main()
85 move(340, 900); in main()
87 move(300, 840); in main()
89 move(340, -840); in main()
91 move(300, -900); in main()
[all …]
/openbsd-src/games/canfield/canfield/
H A Dcanfield.c237 * procedure to set the move command box
253 move(moverow, boxcol); in movebox()
255 move(msgrow, boxcol); in movebox()
272 * print directions above move box
277 move(tboxrow, boxcol); in printtopinstructions()
279 move(tboxrow + 1, boxcol); in printtopinstructions()
281 move(tboxrow + 2, boxcol); in printtopinstructions()
283 move(tboxrow + 3, boxcol); in printtopinstructions()
285 move(tboxrow + 4, boxcol); in printtopinstructions()
287 move(tboxrow + 5, boxcol); in printtopinstructions()
[all …]
/openbsd-src/gnu/llvm/libcxx/include/__memory/
H A Dranges_uninitialized_algorithms.h27 #include <__utility/move.h>
51 _VSTD::move(__first), _VSTD::move(__last)); in operator()
77 return _VSTD::__uninitialized_default_construct_n<_ValueType>(_VSTD::move(__first), __n); in operator()
98 _VSTD::move(__first), _VSTD::move(__last)); in operator()
124 return _VSTD::__uninitialized_value_construct_n<_ValueType>(_VSTD::move(__first), __n); in operator()
145 return _VSTD::__uninitialized_fill<_ValueType>(_VSTD::move(__first), _VSTD::move(__last), __x); in operator()
172 return _VSTD::__uninitialized_fill_n<_ValueType>(_VSTD::move(__first), __n, __x); in operator()
199 …auto __result = _VSTD::__uninitialized_copy<_ValueType>(_VSTD::move(__ifirst), _VSTD::move(__ilast… in operator()
200 … _VSTD::move(__ofirst), _VSTD::move(__olast)); in operator()
201 return {_VSTD::move(__result.first), _VSTD::move(__result.second)}; in operator()
[all …]
/openbsd-src/gnu/llvm/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()
53 [S = std::move(Self)](AllocResult AR) mutable { in linkPhase1()
56 // S->linkPhase2(std::move(S), std::move(AR)); in linkPhase1()
58 TmpSelf->linkPhase2(std::move(S), std::move(AR)); in linkPhase1()
66 Alloc = std::move(*AR); in linkPhase2()
78 return Ctx->notifyFailed(std::move(Err)); in linkPhase2()
84 return Ctx->notifyFailed(std::move(Err)); in linkPhase2()
97 TmpSelf.linkPhase3(std::move(Self), AsyncLookupResult()); in linkPhase2()
113 // Ctx->lookup(std::move(UnresolvedExternals), in linkPhase2()
[all …]
/openbsd-src/gnu/llvm/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 DMemoryMapper.cpp100 std::move(*DeinitializeActions); in initialize()
119 AllErr = joinErrors(std::move(AllErr), std::move(Err)); in deinitialize()
127 AllErr = joinErrors(std::move(AllErr), errorCodeToError(EC)); in deinitialize()
134 OnDeinitialized(std::move(AllErr)); in deinitialize()
154 deinitialize(AllocAddrs, [&](Error Err) { P.set_value(std::move(Err)); }); in release()
156 Err = joinErrors(std::move(Err), std::move(E)); in release()
164 Err = joinErrors(std::move(Err), errorCodeToError(EC)); in release()
171 OnReleased(std::move(Err)); in release()
187 release(ReservationAddrs, [&](Error Err) { P.set_value(std::move(Err)); }); in ~InProcessMemoryMapper()
223 [this, NumBytes, OnReserved = std::move(OnReserved)]( in reserve()
[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 …]
/openbsd-src/usr.bin/mg/
H A Dtutorial17 The first thing to learn is how to move up and down a document. To move your
20 >> Now type C-n multiple times and move your cursor past this line.
22 Congratulations. You have now learned how to move your cursor down. To move
26 >> Try using C-p and C-n to move up and down and then move past this line.
28 The next commands to learn are how to move your cursor left and right. To do
37 Now that you've learned how to move single characters at a time, next we learn
38 how to move one word at a time. To do this, you can use M-f (Meta and f) or
39 M-b (Meta and b) to move forwards and backwards, one word at a time.
54 >> Now move the cursor down to this line and then type C-l (that's Control and
59 To move to the beginning or end of a line, you can use the Home and End keys,
[all …]
/openbsd-src/usr.bin/vi/vi/
H A Dv_cmd.c63 "^H move left by characters"},
69 "^J move down by lines"},
79 "^M move down by lines (to first non-blank)"},
83 "^N move down by lines"},
89 "^P move up by lines"},
113 "^W move to next screen"},
145 " <space> move right by columns"},
159 " $ move to last column"},
163 " % move to match"},
171 " ' move to mark (to first non-blank)"},
[all …]
/openbsd-src/games/backgammon/teachgammon/
H A Ddata.c40 "that I get to start first. I move 8-5,6-5 since this makes a",
42 "able to do a similar move with your roll.",
48 "Now you shall see a move using doubles. I just rolled double",
49 "5's. I will move two men from position 13 to position 3. The",
51 "bles, but you will be able to make a much stronger move.",
62 "My roll now is 5 6. Normally, I would use that roll to move from",
64 "that. Instead, I am forced to move from 13 to 2, where my man is",
72 "tively safe move to an advantageous position, which might help",
88 "Not a spectacular move, but a safe one. I follow by rolling 6 1.",
89 "I decide to use this roll to move 22-16,16-15. It leaves me with",
[all …]
/openbsd-src/gnu/llvm/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A DKaleidoscopeJIT.h48 : Proto(std::move(Proto)), Body(std::move(Body)) {} in FunctionAST()
96 std::move(F)), in add()
102 BaseLayer.emit(std::move(MR), irgenAndTakeOwnership(*F, "")); in emit()
110 return MaterializationUnit::Interface(std::move(Symbols), nullptr); in getInterface()
120 : MaterializationUnit(L.getInterface(*F)), L(L), F(std::move(F)) {} in KaleidoscopeASTMaterializationUnit()
124 L.emit(std::move(R), std::move(F)); in materialize()
151 : ES(std::move(ES)), EPCIU(std::move(EPCIU)), DL(std::move(DL)), in KaleidoscopeJIT()
156 std::make_unique<ConcurrentIRCompiler>(std::move(JTMB))),
167 ES->reportError(std::move(Err)); in ~KaleidoscopeJIT()
169 ES->reportError(std::move(Err)); in ~KaleidoscopeJIT()
[all …]
/openbsd-src/lib/libelf/
H A Dgelf_getmove.332 .Nd read and update Elf Move information
38 .Fn gelf_getmove "Elf_Data *data" "int ndx" "GElf_Move *move"
40 .Fn gelf_update_move "Elf_Data *data" "int ndx" "GElf_Move *move"
56 is the index of the move record being retrieved or updated.
64 retrieves class-dependent move record at index
69 .Ar move
74 converts the class-independent move information pointed to
76 .Ar move
77 to class-dependent form, and writes it to the move record at index
90 .Ar move
[all …]
/openbsd-src/gnu/llvm/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 …]

12345678910>>...164