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

  /external/valgrind/main/exp-bbv/tests/x86/
rep_prefix.S 91 moves: label
  /art/compiler/optimizing/
parallel_move_test.cc 70 HParallelMove* moves = new (allocator) HParallelMove(allocator); local
72 moves->AddMove(new (allocator) MoveOperands(
76 return moves;
85 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}}; local
86 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
92 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {1, 4}}; local
93 resolver.EmitNativeCode(BuildParallelMove(&allocator, moves, arraysize(moves)));
104 static constexpr size_t moves[][2] = {{0, 1}, {1, 0}} local
111 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {1, 0}}; local
118 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {3, 4}, {4, 1}}; local
125 static constexpr size_t moves[][2] = {{0, 1}, {1, 2}, {2, 3}, {3, 4}, {4, 1}, {5, 4}}; local
    [all...]
  /external/valgrind/main/exp-bbv/tests/amd64-linux/
rep_prefix.S 125 moves: label
  /external/chromium_org/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/chromium_org/v8/src/arm64/
lithium-gap-resolver-arm64.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.
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.
75 // Perform a linear sweep of the moves to add them to the initial list of
76 // moves to perform, ignoring any move that is redundant (the source is
79 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
80 for (int i = 0; i < moves->length(); ++i)
    [all...]
  /external/chromium_org/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/chromium_org/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/chromium_org/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/chromium_org/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) {
  /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/chromium_org/third_party/icu/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...]
  /external/icu/icu4c/source/test/intltest/
citrtest.cpp 768 const char *moves, const char *which) {
775 switch(moves[m]) {
830 errln("error: unexpected move character '%c' in \"%s\"", moves[m], moves);
839 errln("error: UCharIterator(%s) misbehaving at \"%s\"[%d]='%c'", which, moves, m, moves[m]);
847 const char *const moves= local
848 "0+++++++++" // 10 moves per line
862 TestUCharIterator(&sIter, compareCI, moves, "uiter_setString");
864 TestUCharIterator(&cIter, compareCI, moves, "uiter_setCharacterIterator")
    [all...]
tstnorm.cpp 628 const char *moves,
649 const char *move=moves;
664 // copy the moves until the current (m) move, and terminate
666 uprv_strcpy(history, moves);
667 history[move-moves]=0;
676 // copy the moves until the current (m) move, and terminate
678 uprv_strcpy(history, moves);
679 history[move-moves]=0;
748 static const char *const moves="0+0+0--0-0-+++0--+++++++0--------"; local
754 moves, UNORM_NFD, "basic")
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 112 final ArrayList<MoveInfo> moves = new ArrayList<MoveInfo>(); local
113 moves.addAll(mPendingMoves);
114 mMovesList.add(moves);
119 for (MoveInfo moveInfo : moves) {
123 moves.clear();
124 mMovesList.remove(moves);
128 View view = moves.get(0).holder.itemView;
451 ArrayList<MoveInfo> moves = mMovesList.get(i); local
452 for (int j = moves.size() - 1; j >= 0; j--) {
453 MoveInfo moveInfo = moves.get(j)
562 ArrayList<MoveInfo> moves = mMovesList.get(i); local
    [all...]
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_aura.cc 691 std::vector<WebPluginGeometry> moves = plugin_window_moves; local
695 for (size_t i = 0; i < moves.size(); ++i) {
696 gfx::Rect clip(moves[i].clip_rect);
698 moves[i].window_rect.OffsetFromOrigin());
702 moves[i].clip_rect = clip;
704 moves[i].window_rect.Offset(view_bounds.OffsetFromOrigin());
706 plugin_window_moves_[moves[i].window] = moves[i];
712 offset_cutout -= moves[i].window_rect.OffsetFromOrigin();
713 moves[i].cutout_rects.push_back(offset_cutout)
    [all...]
  /external/chromium_org/third_party/skia/tests/
PathTest.cpp 1043 SkPath moves; local
    [all...]
  /external/skia/tests/
PathTest.cpp 1043 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 

Completed in 527 milliseconds