/external/v8/src/compiler/ |
D | gap-resolver.cc | 31 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 …]
|
D | move-optimizer.cc | 118 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()
|
D | register-allocator-verifier.cc | 37 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/ |
D | vec-move-01.ll | 1 ; 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 …]
|
D | int-move-01.ll | 1 ; 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.
|
D | fp-move-01.ll | 1 ; 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
|
D | fp-move-12.ll | 1 ; Test moves between FPRs on z13. 13 ; Test f64 moves. 21 ; Test f128 moves. Since f128s are passed by reference, we need to force
|
D | fp-move-10.ll | 1 ; 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.
|
D | fp-move-09.ll | 1 ; 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.
|
D | int-const-06.ll | 1 ; Test moves of integers to 8-byte memory locations. 5 ; Check moves of zero. 32 ; Check moves of -1.
|
D | int-const-05.ll | 1 ; Test moves of integers to 4-byte memory locations. 5 ; Check moves of zero. 32 ; Check moves of -1.
|
/external/scapy/scapy/ |
D | main.py | 27 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/ |
D | shuffle.c | 64 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()
|
D | movebits.c | 312 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/ |
D | move.py | 21 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/ |
D | TestUCharacterIterator.java | 346 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/ |
D | TestUCharacterIterator.java | 343 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/ |
D | input_data.py | 27 from six.moves import urllib 28 from six.moves import xrange # pylint: disable=redefined-builtin
|
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/ |
D | memset2.ll | 7 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/ |
D | memset2.ll | 7 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/ |
D | multitask_optimizer_wrapper.py | 125 gradients, variables = six.moves.zip(*gradients_variables) 140 return list(six.moves.zip(gradients, variables)), fixed_global_norm
|
D | moving_average_optimizer_test.py | 71 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/ |
D | tpu_cluster_resolver.py | 22 from six.moves.urllib.request import Request 23 from six.moves.urllib.request import urlopen
|
/external/icu/icu4c/source/test/intltest/ |
D | citrtest.cpp | 769 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()
|
D | tstnorm.cpp | 633 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 …]
|