HomeSort by relevance Sort by last modified time
    Searched defs:moves (Results 1 - 25 of 25) sorted by null

  /external/valgrind/exp-bbv/tests/x86/
rep_prefix.S 91 moves: label
  /external/v8/src/compiler/
gap-resolver.cc 29 static void VerifyMovesAreInjective(ZoneList<MoveOperands>* moves) {
32 for (op_iterator i = moves->begin(); i != moves->end(); ++i) {
41 ZoneList<MoveOperands>* moves = parallel_move->move_operands(); local
44 std::remove_if(moves->begin(), moves->end(),
46 moves->Rewind(static_cast<int>(end - moves->begin()));
48 VerifyMovesAreInjective(moves);
50 for (op_iterator move = moves->begin(); move != moves->end(); ++move)
    [all...]
  /external/valgrind/exp-bbv/tests/amd64-linux/
rep_prefix.S 125 moves: label
  /art/compiler/optimizing/
parallel_move_test.cc 156 HParallelMove* moves = new (allocator) HParallelMove(allocator); local
158 moves->AddMove(
164 return moves;
188 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}}; local
189 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
199 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {1, 4}}; local
200 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
215 static constexpr size_t moves[][2] = {{0, 1}, {1, 0}} local
226 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {1, 0}}; local
237 static constexpr size_t moves[][2] = {{0, 1}, {1, 0}, {0, 2}}; local
248 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {3, 4}, {4, 0}}; local
263 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
284 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
301 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
318 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
338 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
364 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
390 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
415 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
435 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
461 static constexpr size_t moves[][2] = {{0, 1}, {1, 0}, {2, 3}, {3, 2}}; local
472 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
498 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
526 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
559 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
586 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
    [all...]
  /external/v8/src/arm/
lithium-gap-resolver-arm.cc 14 // moves. We don't need access to roots while resolving the move list and using
17 // with any of the moves we are resolving.
33 // Build up a worklist of moves.
38 // Skip constants to perform them last. They don't block other moves
39 // and skipping such moves with register destinations keeps those
50 // Perform the moves with constant sources.
69 // Perform a linear sweep of the moves to add them to the initial list of
70 // moves to perform, ignoring any move that is redundant (the source is
73 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
74 for (int i = 0; i < moves->length(); ++i)
    [all...]
  /external/v8/src/arm64/
lithium-gap-resolver-arm64.cc 38 // Build up a worklist of moves.
44 // Skip constants to perform them last. They don't block other moves
45 // and skipping such moves with register destinations keeps those
54 // Perform the moves with constant sources.
71 // Perform a linear sweep of the moves to add them to the initial list of
72 // moves to perform, ignoring any move that is redundant (the source is
75 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
76 for (int i = 0; i < moves->length(); ++i) {
77 LMoveOperands move = moves->at(i);
95 // destination is saved in a stack allocated local. Multiple moves ca
    [all...]
  /external/v8/src/mips/
lithium-gap-resolver-mips.cc 23 // Build up a worklist of moves.
28 // Skip constants to perform them last. They don't block other moves
29 // and skipping such moves with register destinations keeps those
40 // Perform the moves with constant sources.
53 // Perform a linear sweep of the moves to add them to the initial list of
54 // moves to perform, ignoring any move that is redundant (the source is
57 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
58 for (int i = 0; i < moves->length(); ++i) {
59 LMoveOperands move = moves->at(i);
72 // We can only find a cycle, when doing a depth-first traversal of moves,
    [all...]
  /external/v8/src/mips64/
lithium-gap-resolver-mips64.cc 23 // Build up a worklist of moves.
28 // Skip constants to perform them last. They don't block other moves
29 // and skipping such moves with register destinations keeps those
40 // Perform the moves with constant sources.
53 // Perform a linear sweep of the moves to add them to the initial list of
54 // moves to perform, ignoring any move that is redundant (the source is
57 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
58 for (int i = 0; i < moves->length(); ++i) {
59 LMoveOperands move = moves->at(i);
72 // We can only find a cycle, when doing a depth-first traversal of moves,
    [all...]
  /external/v8/src/x64/
lithium-gap-resolver-x64.cc 21 // Build up a worklist of moves.
26 // Skip constants to perform them last. They don't block other moves
27 // and skipping such moves with register destinations keeps those
34 // Perform the moves with constant sources.
47 // Perform a linear sweep of the moves to add them to the initial list of
48 // moves to perform, ignoring any move that is redundant (the source is
51 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
52 for (int i = 0; i < moves->length(); ++i) {
53 LMoveOperands move = moves->at(i);
73 // multiple moves to be pending
    [all...]
  /external/v8/test/cctest/compiler/
test-gap-resolver.cc 17 typedef std::vector<MoveOperands> Moves;
19 void ExecuteInParallel(Moves moves) {
21 for (Moves::iterator it = moves.begin(); it != moves.end(); ++it) {
76 // An abstract interpreter for moves, swaps and parallel moves.
81 InterpreterState::Moves moves; variable
88 InterpreterState::Moves moves; variable
    [all...]
  /external/v8/src/ia32/
lithium-gap-resolver-ia32.cc 25 // Build up a worklist of moves.
30 // Skip constants to perform them last. They don't block other moves
31 // and skipping such moves with register destinations keeps those
38 // Perform the moves with constant sources.
52 // Perform a linear sweep of the moves to add them to the initial list of
53 // moves to perform, ignoring any move that is redundant (the source is
56 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
57 for (int i = 0; i < moves->length(); ++i) {
58 LMoveOperands move = moves->at(i);
85 // such moves
    [all...]
  /external/v8/src/x87/
lithium-gap-resolver-x87.cc 25 // Build up a worklist of moves.
30 // Skip constants to perform them last. They don't block other moves
31 // and skipping such moves with register destinations keeps those
38 // Perform the moves with constant sources.
52 // Perform a linear sweep of the moves to add them to the initial list of
53 // moves to perform, ignoring any move that is redundant (the source is
56 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
57 for (int i = 0; i < moves->length(); ++i) {
58 LMoveOperands move = moves->at(i);
85 // such moves
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasMoveItems.java 55 final List<MessageMove> moves = MessageMove.getMoves(mContext, getAccountId()); local
56 if (moves == null) {
60 final long[][] messageIds = new long[3][moves.size()];
64 for (final MessageMove move : moves) {
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
TestUCharacterIterator.java 345 String moves="0+0+0--0-0-+++0--+++++++0--------"; local
360 while(movesIndex<moves.length()) {
361 m=moves.charAt(movesIndex++);
375 // copy the moves until the current (m) move, and terminate
376 String history = moves.substring(0,movesIndex);
384 // copy the moves until the current (m) move, and terminate
385 String history = moves.substring(0,movesIndex);
400 String moves="0+0+0--0-0-+++0--+++++++0--------++++0000----0-"; local
405 while(movesIndex<moves.length()) {
406 m=moves.charAt(movesIndex++)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
MessageMove.java 25 /** The path for the URI for interacting with message moves. */
110 * Get the final moves that we want to upsync to the server, setting the status in the DB for
113 * Messages whose sequence of pending moves results in a no-op (i.e. the message has been moved
114 * back to its original folder) have their moves cleared from the DB without any upsync.
117 * @return The final moves to send to the server, or null if there are none.
144 LogUtils.w(LOG_TAG, "Moves were not in ascending id order");
162 // Prune any no-op moves (i.e. messages that have been moved back to the initial folder).
166 final ArrayList<MessageMove> moves = new ArrayList(moveCount); local
175 moves.add(move);
181 if (moves.isEmpty())
    [all...]
  /external/icu/icu4c/source/test/intltest/
citrtest.cpp 767 const char *moves, const char *which) {
774 switch(moves[m]) {
829 errln("error: unexpected move character '%c' in \"%s\"", moves[m], moves);
838 errln("error: UCharIterator(%s) misbehaving at \"%s\"[%d]='%c'", which, moves, m, moves[m]);
846 const char *const moves= local
847 "0+++++++++" // 10 moves per line
861 TestUCharIterator(&sIter, compareCI, moves, "uiter_setString");
863 TestUCharIterator(&cIter, compareCI, moves, "uiter_setCharacterIterator")
    [all...]
tstnorm.cpp 627 const char *moves,
648 const char *move=moves;
663 // copy the moves until the current (m) move, and terminate
665 uprv_strcpy(history, moves);
666 history[move-moves]=0;
675 // copy the moves until the current (m) move, and terminate
677 uprv_strcpy(history, moves);
678 history[move-moves]=0;
747 static const char *const moves="0+0+0--0-0-+++0--+++++++0--------"; local
753 moves, UNORM_NFD, "basic")
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 113 final ArrayList<MoveInfo> moves = new ArrayList<MoveInfo>(); local
114 moves.addAll(mPendingMoves);
115 mMovesList.add(moves);
120 for (MoveInfo moveInfo : moves) {
124 moves.clear();
125 mMovesList.remove(moves);
129 View view = moves.get(0).holder.itemView;
455 ArrayList<MoveInfo> moves = mMovesList.get(i); local
456 for (int j = moves.size() - 1; j >= 0; j--) {
457 MoveInfo moveInfo = moves.get(j)
571 ArrayList<MoveInfo> moves = mMovesList.get(i); local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/six/
six.py 164 A meta path importer to import six.moves and its submodules.
289 MovedModule("urllib_parse", __name__ + ".moves.urllib_parse", "urllib.parse"),
290 MovedModule("urllib_error", __name__ + ".moves.urllib_error", "urllib.error"),
291 MovedModule("urllib", __name__ + ".moves.urllib", __name__ + ".moves.urllib"),
300 _importer._add_module(attr, "moves." + attr.name)
305 moves = _MovedItems(__name__ + ".moves") variable
306 _importer._add_module(moves, "moves")
    [all...]
test_six.py 74 mod = six.moves.html_parser
100 item = getattr(six.moves, item_name)
102 __import__("six.moves." + item_name)
118 assert item_name in dir(six.moves)
130 assert item_name in dir(six.moves.urllib.parse)
131 getattr(six.moves.urllib.parse, item_name)
139 assert item_name in dir(six.moves.urllib.error)
140 getattr(six.moves.urllib.error, item_name)
148 assert item_name in dir(six.moves.urllib.request)
149 getattr(six.moves.urllib.request, item_name
172 from six import moves namespace
178 from six import moves namespace
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
BasicTest.java 1264 String moves="0+0+0--0-0-+++0--+++++++0--------"; local
1348 String moves="0+0+0--0-0-+++0--+++++++0--------"; local
    [all...]
  /external/skia/tests/
PathTest.cpp 1062 SkPath moves; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar 
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 

Completed in 984 milliseconds