/third_party/node/deps/v8/src/compiler/backend/ |
D | gap-resolver.cc | 24 ParallelMove* moves) { in Split() argument 70 moves->AddMove(AllocatedOperand(src_kind, smaller_rep, src_index), in Split() 88 void GapResolver::Resolve(ParallelMove* moves) { in Resolve() argument 96 size_t nmoves = moves->size(); in Resolve() 98 MoveOperands* move = (*moves)[i]; in Resolve() 101 if (i < nmoves) (*moves)[i] = (*moves)[nmoves]; in Resolve() 113 if (nmoves != moves->size()) moves->resize(nmoves); in Resolve() 115 if ((source_kinds & destination_kinds).empty() || moves->size() < 2) { in Resolve() 117 for (MoveOperands* move : *moves) { in Resolve() 129 for (size_t i = 0; i < moves->size(); ++i) { in Resolve() [all …]
|
D | move-optimizer.cc | 115 ParallelMove* moves = instr->parallel_moves()[i]; in FindFirstNonEmptySlot() local 116 if (moves == nullptr) continue; in FindFirstNonEmptySlot() 117 for (MoveOperands* move : *moves) { in FindFirstNonEmptySlot() 121 moves->clear(); // Clear this redundant move. in FindFirstNonEmptySlot() 167 ParallelMove* moves = instruction->parallel_moves()[0]; in RemoveClobberedDestinations() local 168 if (moves == nullptr) return; in RemoveClobberedDestinations() 191 for (MoveOperands* move : *moves) { in RemoveClobberedDestinations() 201 for (MoveOperands* move : *moves) { in RemoveClobberedDestinations() 471 ParallelMove* moves = instr->GetOrCreateParallelMove( in OptimizeMerge() local 483 moves->AddMove(move->source(), move->destination()); in OptimizeMerge()
|
D | register-allocator-verifier.cc | 35 const ParallelMove* moves = instr->GetParallelMove(inner_pos); in VerifyAllocatedGaps() local 36 if (moves == nullptr) continue; in VerifyAllocatedGaps() 37 for (const MoveOperands* move : *moves) { in VerifyAllocatedGaps() 289 void BlockAssessments::PerformParallelMoves(const ParallelMove* moves) { in PerformParallelMoves() argument 290 if (moves == nullptr) return; in PerformParallelMoves() 293 for (MoveOperands* move : *moves) { in PerformParallelMoves()
|
D | gap-resolver.h | 38 void PerformMove(ParallelMove* moves, MoveOperands* move);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | test_instance_tracker_test.cc | 33 EXPECT_EQ(1, tracker.moves()); in TEST() 44 EXPECT_EQ(1, tracker.moves()); in TEST() 56 EXPECT_EQ(0, tracker.moves()); in TEST() 69 EXPECT_EQ(0, tracker.moves()); in TEST() 79 EXPECT_EQ(0, tracker.moves()); in TEST() 90 EXPECT_EQ(0, tracker.moves()); in TEST() 105 EXPECT_EQ(2, tracker.moves()); in TEST() 116 EXPECT_EQ(0, tracker.moves()); in TEST() 135 EXPECT_EQ(0, tracker.moves()); in TEST() 143 EXPECT_EQ(1, tracker.moves()); in TEST() [all …]
|
D | compressed_tuple_test.cc | 78 EXPECT_LE(tracker.moves(), 1); in TEST() 89 EXPECT_LE(tracker.moves(), 1); in TEST() 103 EXPECT_EQ(tracker.moves(), 1); in TEST() 131 EXPECT_EQ(tracker.moves(), 2); in TEST() 150 EXPECT_EQ(tracker.moves(), 0); in TEST() 159 EXPECT_EQ(tracker.moves(), 0); in TEST() 167 EXPECT_EQ(tracker.moves(), 0); in TEST() 178 EXPECT_EQ(tracker.moves(), 1); in TEST() 186 EXPECT_EQ(tracker.moves(), 1); in TEST() 190 EXPECT_EQ(tracker.moves(), 1); in TEST() [all …]
|
/third_party/node/deps/v8/src/maglev/ |
D | maglev-code-generator.cc | 137 RegisterMoves& moves) { in EmitSingleParallelMove() argument 138 DCHECK(!moves[target.code()].is_valid()); in EmitSingleParallelMove() 140 moves[source.code()] = Register::no_reg(); in EmitSingleParallelMove() 144 Register target, RegisterMoves& moves) { in RecursivelyEmitParallelMoveChain() argument 151 EmitSingleParallelMove(target, kScratchRegister, moves); in RecursivelyEmitParallelMoveChain() 152 EmitSingleParallelMove(source, target, moves); in RecursivelyEmitParallelMoveChain() 156 if (moves[target.code()].is_valid()) { in RecursivelyEmitParallelMoveChain() 158 moves[target.code()], moves); in RecursivelyEmitParallelMoveChain() 163 EmitSingleParallelMove(kScratchRegister, target, moves); in RecursivelyEmitParallelMoveChain() 166 EmitSingleParallelMove(source, target, moves); in RecursivelyEmitParallelMoveChain() [all …]
|
/third_party/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()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/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()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/ |
D | inlined_vector_test.cc | 891 EXPECT_EQ(tracker.moves(), 0); in TYPED_TEST_P() 894 EXPECT_EQ((tracker.moves() ? tracker.moves() : tracker.copies()), in TYPED_TEST_P() 900 EXPECT_EQ((tracker.moves() ? tracker.moves() : tracker.copies()), in TYPED_TEST_P() 990 EXPECT_GE(tracker.copies() + tracker.moves(), in TYPED_TEST_P() 999 EXPECT_EQ(tracker.copies() + tracker.moves(), 10 + len); in TYPED_TEST_P() 1003 EXPECT_GE(tracker.copies() + tracker.moves(), in TYPED_TEST_P() 1012 EXPECT_EQ(tracker.moves(), 0); in TYPED_TEST_P() 1018 EXPECT_EQ(tracker.copies() + tracker.moves(), len); in TYPED_TEST_P() 1026 EXPECT_EQ(tracker.moves(), 0); in TYPED_TEST_P() 1032 EXPECT_EQ(tracker.copies() + tracker.moves(), len - 2); in TYPED_TEST_P() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/functional/ |
D | function_ref_test.cc | 168 EXPECT_EQ(tracker.moves(), 1); in TEST() 178 EXPECT_EQ(tracker.moves(), 0); in TEST() 188 EXPECT_EQ(tracker.moves(), 2); in TEST() 198 EXPECT_EQ(tracker.moves(), 1); in TEST()
|
/third_party/libinput/doc/user/ |
D | pointer-acceleration.rst | 39 movement at the time. If a device moves into the same direction, the 41 moves steadily for 10 events to the left, the velocity is calculated across 46 a device moves steadily for 8 events to the left and then 2 events to the 50 velocity calculation. For example, if a device moves steadily for 5 events 51 to the left, then pauses, then moves again for 5 events to the left, only 72 A factor higher than 1 moves the pointer further than the physical device 73 moves. This is acceleration and allows a user to cross the screen quickly
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/ |
D | reify.js | 409 const moves = this[_retiredPaths] 414 moves[path] = retired 426 const moves = this[_retiredPaths] = {} 433 log.silly('reify', 'moves', moves) 434 const movePromises = Object.entries(moves) 460 const moves = this[_retiredPaths] 461 const movePromises = Object.entries(moves) 1058 const moves = this[_retiredPaths] 1067 const retireFolder = moves[realFolder] 1123 const moves = this[_retiredPaths] [all …]
|
/third_party/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 | 635 const char *moves, in TestPreviousNext() argument 679 const char *move=moves; in TestPreviousNext() 696 uprv_strcpy(history, moves); in TestPreviousNext() 697 history[move-moves]=0; in TestPreviousNext() 708 uprv_strcpy(history, moves); in TestPreviousNext() 709 history[move-moves]=0; in TestPreviousNext() 778 static const char *const moves="0+0+0--0-0-+++0--+++++++0--------"; in TestPreviousNext() local 784 moves, UNORM_NFD, "basic"); in TestPreviousNext() 790 moves, UNORM_NFKC, "j2911"); in TestPreviousNext() 797 moves, UNORM_NFD, "basic_2"); in TestPreviousNext() [all …]
|
D | citrtest.h | 42 …void TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *…
|
/third_party/node/deps/v8/tools/turbolizer/src/ |
D | sequence-view.ts | 180 const moves = createElement("div", "comma-sep-list gap-move"); constant 190 moves.appendChild(moveEl); 192 gapEl.appendChild(moves);
|
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/opptrequal/ |
D | variable_pointers_vars_wg_equal.amber | 9 ; Two iterators are each stored in Private variables: one moves forward, one 10 ; moves backward. In each iteration an equal comparison is written. Iterators
|
D | variable_pointers_vars_ssbo_equal.amber | 8 ; Two iterators are each stored in Private variables: one moves forward, one 9 ; moves backward. In each iteration an OpPtrEqual comparison is written.
|
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/opptrnotequal/ |
D | variable_pointers_vars_wg_not_equal.amber | 9 ; Two iterators are each stored in Private variables: one moves forward, one 10 ; moves backward. In each iteration a not equal comparison is written. Iterators
|
D | variable_pointers_vars_ssbo_not_equal.amber | 8 ; Two iterators are each stored in Private variables: one moves forward, one 9 ; moves backward. In each iteration an OpPtrNotEqual comparison is written.
|
/third_party/vk-gl-cts/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/opptrdiff/ |
D | variable_pointers_vars_wg_diff.amber | 9 ; Two iterators are each stored in Private variables: one moves forward, one 10 ; moves backward. In each iteration an int2 result is written that contains
|
D | variable_pointers_vars_ssbo_diff.amber | 8 ; Two iterators are each stored in Private variables: one moves forward, one 9 ; moves backward. In each iteration an int2 result is written that contains two
|
/third_party/skia/third_party/externals/angle2/tools/android/md5sum/ |
D | BUILD.gn | 6 # This should be removed once //tools/android/md5sum moves to //build in Chromium.
|
/third_party/libevdev/ |
D | README.OpenSource | 9 …"Description": "libevdev is a wrapper library for evdev devices. it moves the common tasks when de…
|