Home
last modified time | relevance | path

Searched refs:moves (Results 1 – 25 of 450) sorted by relevance

12345678910>>...18

/external/v8/src/compiler/
Dgap-resolver.cc31 ParallelMove* moves) { in Split() argument
77 moves->AddMove(AllocatedOperand(src_kind, smaller_rep, src_index), in Split()
86 void GapResolver::Resolve(ParallelMove* moves) { in Resolve() argument
90 for (size_t i = 0; i < moves->size();) { in Resolve()
91 MoveOperands* move = (*moves)[i]; in Resolve()
93 (*moves)[i] = moves->back(); in Resolve()
94 moves->pop_back(); in Resolve()
110 for (size_t i = 0; i < moves->size(); ++i) { in Resolve()
111 auto move = (*moves)[i]; in Resolve()
113 PerformMove(moves, move); in Resolve()
[all …]
Dmove-optimizer.cc118 ParallelMove* moves = instr->parallel_moves()[i]; in FindFirstNonEmptySlot() local
119 if (moves == nullptr) continue; in FindFirstNonEmptySlot()
120 for (MoveOperands* move : *moves) { in FindFirstNonEmptySlot()
124 moves->clear(); // Clear this redundant move. in FindFirstNonEmptySlot()
170 ParallelMove* moves = instruction->parallel_moves()[0]; in RemoveClobberedDestinations() local
171 if (moves == nullptr) return; in RemoveClobberedDestinations()
194 for (MoveOperands* move : *moves) { in RemoveClobberedDestinations()
204 for (MoveOperands* move : *moves) { in RemoveClobberedDestinations()
476 ParallelMove* moves = instr->GetOrCreateParallelMove( in OptimizeMerge() local
488 moves->AddMove(move->source(), move->destination()); in OptimizeMerge()
Dregister-allocator-verifier.cc37 const ParallelMove* moves = instr->GetParallelMove(inner_pos); in VerifyAllocatedGaps() local
38 if (moves == nullptr) continue; in VerifyAllocatedGaps()
39 for (const MoveOperands* move : *moves) { in VerifyAllocatedGaps()
275 void BlockAssessments::PerformParallelMoves(const ParallelMove* moves) { in PerformParallelMoves() argument
276 if (moves == nullptr) return; in PerformParallelMoves()
279 for (MoveOperands* move : *moves) { in PerformParallelMoves()
/external/llvm/test/CodeGen/SystemZ/
Dvec-move-01.ll1 ; Test vector register moves.
5 ; Test v16i8 moves.
13 ; Test v8i16 moves.
21 ; Test v4i32 moves.
29 ; Test v2i64 moves.
37 ; Test v4f32 moves.
45 ; Test v2f64 moves.
53 ; Test v2i8 moves.
61 ; Test v4i8 moves.
69 ; Test v8i8 moves.
[all …]
Dint-move-01.ll1 ; Test moves between GPRs.
5 ; Test 8-bit moves, which should get promoted to i32.
13 ; Test 16-bit moves, which again should get promoted to i32.
21 ; Test 32-bit moves.
29 ; Test 64-bit moves.
Dfp-move-01.ll1 ; Test moves between FPRs.
5 ; Test f32 moves.
13 ; Test f64 moves.
21 ; Test f128 moves. Since f128s are passed by reference, we need to force
Dfp-move-12.ll1 ; Test moves between FPRs on z13.
13 ; Test f64 moves.
21 ; Test f128 moves. Since f128s are passed by reference, we need to force
Dfp-move-10.ll1 ; Test moves between FPRs and GPRs for z13 and above.
5 ; Check that moves from i32s to floats use a low GR32 and vector operation.
19 ; Check that moves from floats to i32s use a low GR32 and vector operation.
Dfp-move-09.ll1 ; Test moves between FPRs and GPRs for z196 and zEC12.
5 ; Check that moves from i32s to floats can use high registers.
19 ; Check that moves from floats to i32s can use high registers.
Dint-const-06.ll1 ; Test moves of integers to 8-byte memory locations.
5 ; Check moves of zero.
32 ; Check moves of -1.
Dint-const-05.ll1 ; Test moves of integers to 4-byte memory locations.
5 ; Check moves of zero.
32 ; Check moves of -1.
/external/scapy/scapy/
Dmain.py27 IGNORED = list(six.moves.builtins.__dict__)
118 globals_dict = six.moves.builtins.__dict__
224 session = six.moves.builtins.__dict__["scapy_session"]
247 six.moves.cPickle.dump(to_be_saved, f, pickleProto)
260 s = six.moves.cPickle.load(gzip.open(fname,"rb"))
263 s = six.moves.cPickle.load(open(fname,"rb"))
268 scapy_session = six.moves.builtins.__dict__["scapy_session"]
283 s = six.moves.cPickle.load(gzip.open(fname,"rb"))
285 s = six.moves.cPickle.load(open(fname,"rb"))
286 scapy_session = six.moves.builtins.__dict__["scapy_session"]
[all …]
/external/syslinux/com32/lib/syslinux/
Dshuffle.c64 struct syslinux_movelist *moves = NULL, *mp; in syslinux_do_shuffle() local
136 if (syslinux_compute_movelist(&moves, fraglist, rxmap)) in syslinux_do_shuffle()
140 for (mp = moves; mp; mp = mp->next) in syslinux_do_shuffle()
153 syslinux_dump_movelist(moves); in syslinux_do_shuffle()
176 for (mp = moves; mp; mp = mp->next) { in syslinux_do_shuffle()
213 if (moves) in syslinux_do_shuffle()
214 syslinux_free_movelist(moves); in syslinux_do_shuffle()
Dmovebits.c312 move_chunk(struct syslinux_movelist ***moves, in move_chunk() argument
356 **moves = mv; in move_chunk()
357 *moves = &mv->next; in move_chunk()
383 syslinux_compute_movelist(struct syslinux_movelist **moves, in syslinux_compute_movelist() argument
410 *moves = NULL; in syslinux_compute_movelist()
593 *moves = mv; in syslinux_compute_movelist()
594 moves = &mv->next; in syslinux_compute_movelist()
617 move_chunk(&moves, &mmap, fp, copylen); in syslinux_compute_movelist()
621 for (op = moves; (o = *op); op = &o->next) ; /* Locate the end of the list */ in syslinux_compute_movelist()
646 struct syslinux_movelist *mv, *moves; in main() local
[all …]
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor_util/
Dmove.py21 moves = tuple(_Move(source, target) for source in sources)
24 refactor.Transform(functools.partial(_Update, moves), files_to_update)
27 for move in moves:
31 def _Update(moves, module): argument
33 for move in moves:
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
DTestUCharacterIterator.java346 String moves="0+0+0--0-0-+++0--+++++++0--------"; in previousNext() local
361 while(movesIndex<moves.length()) { in previousNext()
362 m=moves.charAt(movesIndex++); in previousNext()
377 String history = moves.substring(0,movesIndex); in previousNext()
386 String history = moves.substring(0,movesIndex); in previousNext()
402 String moves="0+0+0--0-0-+++0--+++++++0--------++++0000----0-"; in TestUCharacterIteratorWrapper() local
407 while(movesIndex<moves.length()) { in TestUCharacterIteratorWrapper()
408 m=moves.charAt(movesIndex++); in TestUCharacterIteratorWrapper()
423 String history = moves.substring(0,movesIndex); in TestUCharacterIteratorWrapper()
432 String history = moves.substring(0,movesIndex); in TestUCharacterIteratorWrapper()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
DTestUCharacterIterator.java343 String moves="0+0+0--0-0-+++0--+++++++0--------"; in previousNext() local
358 while(movesIndex<moves.length()) { in previousNext()
359 m=moves.charAt(movesIndex++); in previousNext()
374 String history = moves.substring(0,movesIndex); in previousNext()
383 String history = moves.substring(0,movesIndex); in previousNext()
399 String moves="0+0+0--0-0-+++0--+++++++0--------++++0000----0-"; in TestUCharacterIteratorWrapper() local
404 while(movesIndex<moves.length()) { in TestUCharacterIteratorWrapper()
405 m=moves.charAt(movesIndex++); in TestUCharacterIteratorWrapper()
420 String history = moves.substring(0,movesIndex); in TestUCharacterIteratorWrapper()
429 String history = moves.substring(0,movesIndex); in TestUCharacterIteratorWrapper()
/external/tensorflow/tensorflow/examples/tutorials/mnist/
Dinput_data.py27 from six.moves import urllib
28 from six.moves import xrange # pylint: disable=redefined-builtin
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/
Dmemset2.ll7 define i32 @test(%struct.Moves addrspace(1)* nocapture %moves) {
10 %gep = getelementptr inbounds %struct.Moves addrspace(1)* %moves, i32 1, i32 0, i32 9
/external/llvm/test/Transforms/InstCombine/
Dmemset2.ll7 define i32 @test(%struct.Moves addrspace(1)* nocapture %moves) {
10 …%gep = getelementptr inbounds %struct.Moves, %struct.Moves addrspace(1)* %moves, i32 1, i32 0, i32…
/external/tensorflow/tensorflow/contrib/opt/python/training/
Dmultitask_optimizer_wrapper.py125 gradients, variables = six.moves.zip(*gradients_variables)
140 return list(six.moves.zip(gradients, variables)), fixed_global_norm
Dmoving_average_optimizer_test.py71 list(six.moves.zip([grads0, grads1], [var0, var1])))
141 for i in six.moves.range(len(val0)):
161 for i in six.moves.range(len(val0)):
/external/tensorflow/tensorflow/contrib/cluster_resolver/python/training/
Dtpu_cluster_resolver.py22 from six.moves.urllib.request import Request
23 from six.moves.urllib.request import urlopen
/external/icu/icu4c/source/test/intltest/
Dcitrtest.cpp769 const char *moves, const char *which) { in TestUCharIterator() argument
776 switch(moves[m]) { in TestUCharIterator()
831 errln("error: unexpected move character '%c' in \"%s\"", moves[m], moves); in TestUCharIterator()
840 … errln("error: UCharIterator(%s) misbehaving at \"%s\"[%d]='%c'", which, moves, m, moves[m]); in TestUCharIterator()
848 const char *const moves= in TestUCharIterator() local
863 TestUCharIterator(&sIter, compareCI, moves, "uiter_setString"); in TestUCharIterator()
865 TestUCharIterator(&cIter, compareCI, moves, "uiter_setCharacterIterator"); in TestUCharIterator()
867 TestUCharIterator(&rIter, compareCI, moves, "uiter_setReplaceable"); in TestUCharIterator()
Dtstnorm.cpp633 const char *moves, in TestPreviousNext() argument
654 const char *move=moves; in TestPreviousNext()
671 uprv_strcpy(history, moves); in TestPreviousNext()
672 history[move-moves]=0; in TestPreviousNext()
683 uprv_strcpy(history, moves); in TestPreviousNext()
684 history[move-moves]=0; in TestPreviousNext()
753 static const char *const moves="0+0+0--0-0-+++0--+++++++0--------"; in TestPreviousNext() local
759 moves, UNORM_NFD, "basic"); in TestPreviousNext()
765 moves, UNORM_NFKC, "j2911"); in TestPreviousNext()
772 moves, UNORM_NFD, "basic_2"); in TestPreviousNext()
[all …]

12345678910>>...18