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

1 2 3 4 5 6

  /external/v8/src/compiler/
gap-resolver.cc 27 void GapResolver::Resolve(ParallelMove* moves) const {
28 // Clear redundant moves.
30 std::remove_if(moves->begin(), moves->end(), std::ptr_fun(IsRedundant));
31 moves->erase(it, moves->end());
32 for (auto move : *moves) {
33 if (!move->IsEliminated()) PerformMove(moves, move);
38 void GapResolver::PerformMove(ParallelMove* moves, MoveOperands* move) const {
55 // destination blocks this one so recursively perform all such moves
    [all...]
gap-resolver.h 16 // Interface used by the gap resolver to emit moves and swaps.
31 // Resolve a set of parallel moves, emitting assembler instructions.
35 // Perform the given move, possibly requiring other moves to satisfy
37 void PerformMove(ParallelMove* moves, MoveOperands* move) const;
39 // Assembler used to emit moves and save registers.
move-optimizer.cc 55 ParallelMove* moves = instr->parallel_moves()[i]; local
56 if (moves == nullptr) continue;
57 for (MoveOperands* move : *moves) {
71 ParallelMove* moves = instr->parallel_moves()[i]; local
72 if (moves == nullptr) continue;
73 for (MoveOperands* move : *moves) {
77 moves->clear(); // Clear this redundant move.
106 // This would pull down common moves. If the moves occur in deferred
127 // Modify the right moves in place and collect moves that will be killed b
268 ParallelMove* moves = instr->GetOrCreateParallelMove( local
    [all...]
  /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
618 HParallelMove* moves = new (&allocator) HParallelMove(&allocator); local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
compat.py 52 from boto.vendored.six.moves import filter, http_client, map, _thread, \
54 from boto.vendored.six.moves.queue import Queue
55 from boto.vendored.six.moves.urllib.parse import parse_qs, quote, unquote, \
57 from boto.vendored.six.moves.urllib.request import urlopen
  /external/icu/icu4c/source/test/intltest/
citrtest.h 40 void TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *which);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/wsgi/
service.py 31 import six.moves.http_client namespace
49 _HTTP_BAD_REQUEST = wsgi_util.error(six.moves.http_client.BAD_REQUEST)
50 _HTTP_NOT_FOUND = wsgi_util.error(six.moves.http_client.NOT_FOUND)
51 _HTTP_UNSUPPORTED_MEDIA_TYPE = wsgi_util.error(six.moves.http_client.UNSUPPORTED_MEDIA_TYPE)
101 six.moves.http_client.METHOD_NOT_ALLOWED,
102 six.moves.http_client.responses[six.moves.http_client.METHOD_NOT_ALLOWED],
140 return send_rpc_error(six.moves.http_client.BAD_REQUEST,
151 return send_rpc_error(six.moves.http_client.BAD_REQUEST,
185 return send_rpc_error(six.moves.http_client.BAD_REQUEST
    [all...]
util_test.py 20 from six.moves import filter
25 import six.moves.http_client namespace
35 NOT_FOUND = wsgi_util.error(six.moves.http_client.NOT_FOUND)
50 connection = six.moves.http_client.HTTPConnection('localhost', self.port)
206 self.assertEquals(six.moves.http_client.NOT_FOUND, status)
207 self.assertEquals(six.moves.http_client.responses[six.moves.http_client.NOT_FOUND], status_text)
208 self.assertEquals(util.pad_string(six.moves.http_client.responses[six.moves.http_client.NOT_FOUND]),
219 self.assertEquals(six.moves.http_client.OK, status
    [all...]
util.py 26 import six.moves.http_client namespace
66 status = '%d %s' % (status, six.moves.http_client.responses.get(status, 'Unknown Error'))
120 status_message = six.moves.http_client.responses.get(status_code, 'Unknown Error')
150 not_found = error(six.moves.http_client.NOT_FOUND)
167 if int(status_code) == six.moves.http_client.NOT_FOUND:
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i860/
pseudo-ops01.s 2 # Floating point moves.
  /external/v8/test/cctest/compiler/
test-gap-resolver.cc 18 void ExecuteInParallel(const ParallelMove* moves) {
20 for (const auto m : *moves) {
131 // An abstract interpreter for moves, swaps and parallel moves.
138 ParallelMove* moves = new (zone_) ParallelMove(zone_); variable
139 moves->AddMove(*source, *destination);
140 state_.ExecuteInParallel(moves);
145 ParallelMove* moves = new (zone_) ParallelMove(zone_); variable
146 moves->AddMove(*source, *destination);
147 moves->AddMove(*destination, *source)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/samples/
oauth2_for_devices.py 6 from six.moves import input
  /external/chromium-trace/catapult/catapult_base/catapult_base/refactor_util/
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):
33 for move in moves:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/six/
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/chromium-trace/catapult/third_party/six/
test_six.py 94 mod = six.moves.html_parser
120 item = getattr(six.moves, item_name)
122 __import__("six.moves." + item_name)
138 assert item_name in dir(six.moves)
150 assert item_name in dir(six.moves.urllib.parse)
151 getattr(six.moves.urllib.parse, item_name)
159 assert item_name in dir(six.moves.urllib.error)
160 getattr(six.moves.urllib.error, item_name)
168 assert item_name in dir(six.moves.urllib.request)
169 getattr(six.moves.urllib.request, item_name
192 from six import moves namespace
198 from six import moves namespace
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/tests/
test_httpserver.py 4 from six.moves import StringIO
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_tools.py 5 from six.moves.urllib import request
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
quoting.py 7 from six.moves import html_entities
8 from six.moves.urllib.parse import quote, unquote
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
TestUCharacterIterator.java 349 String moves="0+0+0--0-0-+++0--+++++++0--------"; local
364 while(movesIndex<moves.length()) {
365 m=moves.charAt(movesIndex++);
379 // copy the moves until the current (m) move, and terminate
380 String history = moves.substring(0,movesIndex);
388 // copy the moves until the current (m) move, and terminate
389 String history = moves.substring(0,movesIndex);
404 String moves="0+0+0--0-0-+++0--+++++++0--------++++0000----0-"; local
409 while(movesIndex<moves.length()) {
410 m=moves.charAt(movesIndex++)
    [all...]
  /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...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
transport_test.py 19 import six.moves.http_client namespace
253 return six.moves.http_client.HTTPConnection(*args, **kwargs)
255 original_https_connection = six.moves.http_client.HTTPSConnection
256 six.moves.http_client.HTTPSConnection = https_connection
260 six.moves.http_client.HTTPSConnection = original_https_connection
283 original_request = six.moves.http_client.HTTPConnection.request
284 six.moves.http_client.HTTPConnection.request = request_error
295 six.moves.http_client.HTTPConnection.request = original_request
298 self.ResetServer(wsgi_util.error(six.moves.http_client.INTERNAL_SERVER_ERROR,
311 self.ResetServer(wsgi_util.error(six.moves.http_client.NOT_IMPLEMENTED
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
tools.py 31 from six.moves import BaseHTTPServer
32 from six.moves import urllib
33 from six.moves import input
  /external/v8/test/mjsunit/regress/
regress-234101.js 30 // Currently, the gap resolver doesn't handle moves from a ConstantOperand to a
31 // DoubleRegister, but these kind of moves appeared when HConstant::EmitAtUses
33 // either enhance the gap resolver or make sure that such moves don't happen.
  /external/chromium-trace/catapult/third_party/Paste/tests/test_auth/
test_auth_digest.py 63 from six.moves.urllib.error import HTTPError
64 from six.moves.urllib.request import build_opener, HTTPDigestAuthHandler
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
DefaultItemAnimator.java 113 final ArrayList<MoveInfo> moves = new ArrayList<>(); 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;
460 ArrayList<MoveInfo> moves = mMovesList.get(i); local
461 for (int j = moves.size() - 1; j >= 0; j--) {
462 MoveInfo moveInfo = moves.get(j)
580 ArrayList<MoveInfo> moves = mMovesList.get(i); local
    [all...]

Completed in 444 milliseconds

1 2 3 4 5 6