Home
last modified time | relevance | path

Searched refs:moves (Results 1 – 25 of 243) sorted by relevance

12345678910

/external/v8/src/compiler/
Dgap-resolver.cc27 void GapResolver::Resolve(ParallelMove* moves) const { in Resolve()
30 std::remove_if(moves->begin(), moves->end(), std::ptr_fun(IsRedundant)); in Resolve()
31 moves->erase(it, moves->end()); in Resolve()
32 for (auto move : *moves) { in Resolve()
33 if (!move->IsEliminated()) PerformMove(moves, move); in Resolve()
38 void GapResolver::PerformMove(ParallelMove* moves, MoveOperands* move) const { in PerformMove() argument
56 for (auto other : *moves) { in PerformMove()
67 PerformMove(moves, other); in PerformMove()
86 auto blocker = std::find_if(moves->begin(), moves->end(), in PerformMove()
88 if (blocker == moves->end()) { in PerformMove()
[all …]
Dmove-optimizer.cc55 ParallelMove* moves = instr->parallel_moves()[i]; in GapsCanMoveOver() local
56 if (moves == nullptr) continue; in GapsCanMoveOver()
57 for (MoveOperands* move : *moves) { in GapsCanMoveOver()
71 ParallelMove* moves = instr->parallel_moves()[i]; in FindFirstNonEmptySlot() local
72 if (moves == nullptr) continue; in FindFirstNonEmptySlot()
73 for (MoveOperands* move : *moves) { in FindFirstNonEmptySlot()
77 moves->clear(); // Clear this redundant move. in FindFirstNonEmptySlot()
268 ParallelMove* moves = instr->GetOrCreateParallelMove( in OptimizeMerge() local
281 moves->AddMove(move->source(), move->destination()); in OptimizeMerge()
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/wsgi/
Dutil_test.py20 from six.moves import filter
25 import six.moves.http_client
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)
220 self.assertEquals(six.moves.http_client.responses[six.moves.http_client.OK], status_text)
231 self.assertEquals(six.moves.http_client.OK, status)
[all …]
Dservice.py31 import six.moves.http_client
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,
193 return send_rpc_error(six.moves.http_client.INTERNAL_SERVER_ERROR,
[all …]
Dutil.py26 import six.moves.http_client
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:
/external/llvm/test/CodeGen/SystemZ/
Dvec-move-01.ll1 ; 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 …]
Dint-move-01.ll1 ; 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.
Dfp-move-01.ll1 ; Test moves between FPRs.
6 ; Test f32 moves.
14 ; Test f64 moves.
22 ; Test f128 moves. Since f128s are passed by reference, we need to force
/external/chromium-trace/catapult/third_party/six/
DCHANGES11 - Pull request #55 and issue #99: Don't add the `winreg` module to `six.moves`
14 - Pull request #60 and issue #108: Add `six.moves.getcwd` and
15 `six.moves.getcwdu`.
37 - Issue #98: Fix `six.moves` race condition in multi-threaded code.
42 - Issue #112: `six.moves.reload_module` now uses the importlib module on
48 - Issue #90: Add `six.moves.shlex_quote`.
50 - Issue #59: Add `six.moves.intern`.
64 - Pull request #45: Add `six.moves.email_mime_nonmultipart`.
75 - Issue #74: `six.moves.xmlrpc_server` should map to `SimpleXMLRPCServer` on Python
86 - Issue #71: Make the six.moves meta path importer handle reloading of the six
[all …]
Dtest_six.py94 mod = six.moves.html_parser
120 item = getattr(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)
177 assert item_name in dir(six.moves.urllib.response)
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/
DCHANGES24 - Issue #98: Fix `six.moves` race condition in multi-threaded code.
32 - Issue #90: Add `six.moves.shlex_quote`.
34 - Issue #59: Add `six.moves.intern`.
48 - Pull request #45: Add `six.moves.email_mime_nonmultipart`.
59 - Issue #74: `six.moves.xmlrpc_server` should map to `SimpleXMLRPCServer` on Python
70 - Issue #71: Make the six.moves meta path importer handle reloading of the six
76 - Pull request #30: Implement six.moves with a PEP 302 meta path hook.
94 - Raise an AttributeError for six.moves.X when X is a module not available in
102 - Issue #56: Make the fake modules six.moves puts into sys.modules appear not to
114 - Issue #53: Make the fake modules six.moves puts into sys.modules appear not to
[all …]
Dtest_six.py74 mod = six.moves.html_parser
100 item = getattr(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)
157 assert item_name in dir(six.moves.urllib.response)
[all …]
/external/v8/test/cctest/compiler/
Dtest-gap-resolver.cc18 void ExecuteInParallel(const ParallelMove* moves) { in ExecuteInParallel() argument
20 for (const auto m : *moves) { in ExecuteInParallel()
138 ParallelMove* moves = new (zone_) ParallelMove(zone_); in AssembleMove() local
139 moves->AddMove(*source, *destination); in AssembleMove()
140 state_.ExecuteInParallel(moves); in AssembleMove()
145 ParallelMove* moves = new (zone_) ParallelMove(zone_); in AssembleSwap() local
146 moves->AddMove(*source, *destination); in AssembleSwap()
147 moves->AddMove(*destination, *source); in AssembleSwap()
148 state_.ExecuteInParallel(moves); in AssembleSwap()
151 void AssembleParallelMove(const ParallelMove* moves) { in AssembleParallelMove() argument
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/
Dcompat.py52 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/chromium-trace/catapult/catapult_base/catapult_base/refactor_util/
Dmove.py21 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/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
Dtransport_test.py19 import six.moves.http_client
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 …]
Dtransport.py26 import six.moves.http_client
267 content = six.moves.http_client.responses.get(response.status, 'Unknown Error')
288 if response.status == six.moves.http_client.OK:
313 connection_type = six.moves.http_client.HTTPSConnection
315 connection_type = six.moves.http_client.HTTPConnection
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
DTestUCharacterIterator.java345 String moves="0+0+0--0-0-+++0--+++++++0--------"; in previousNext() local
360 while(movesIndex<moves.length()) { in previousNext()
361 m=moves.charAt(movesIndex++); in previousNext()
376 String history = moves.substring(0,movesIndex); in previousNext()
385 String history = moves.substring(0,movesIndex); in previousNext()
400 String moves="0+0+0--0-0-+++0--+++++++0--------++++0000----0-"; in TestUCharacterIteratorWrapper() local
405 while(movesIndex<moves.length()) { in TestUCharacterIteratorWrapper()
406 m=moves.charAt(movesIndex++); in TestUCharacterIteratorWrapper()
421 String history = moves.substring(0,movesIndex); in TestUCharacterIteratorWrapper()
430 String history = moves.substring(0,movesIndex); in TestUCharacterIteratorWrapper()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
DTestUCharacterIterator.java349 String moves="0+0+0--0-0-+++0--+++++++0--------"; in previousNext() local
364 while(movesIndex<moves.length()) { in previousNext()
365 m=moves.charAt(movesIndex++); in previousNext()
380 String history = moves.substring(0,movesIndex); in previousNext()
389 String history = moves.substring(0,movesIndex); in previousNext()
404 String moves="0+0+0--0-0-+++0--+++++++0--------++++0000----0-"; in TestUCharacterIteratorWrapper() local
409 while(movesIndex<moves.length()) { in TestUCharacterIteratorWrapper()
410 m=moves.charAt(movesIndex++); in TestUCharacterIteratorWrapper()
425 String history = moves.substring(0,movesIndex); in TestUCharacterIteratorWrapper()
434 String history = moves.substring(0,movesIndex); in TestUCharacterIteratorWrapper()
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/base/py/
Dutil.py10 from six.moves import http_client
11 import six.moves.urllib.error as urllib_error
12 import six.moves.urllib.parse as urllib_parse
13 import six.moves.urllib.request as urllib_request
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
Dtools.py31 from six.moves import BaseHTTPServer
32 from six.moves import urllib
33 from six.moves import input
/external/chromium-trace/catapult/third_party/six/documentation/
Dindex.rst493 .. module:: six.moves
498 :mod:`six.moves` module. For example, to load the module for parsing HTML on
501 from six.moves import html_parser
506 from six.moves import reload_module
508 For the most part, :mod:`six.moves` aliases are the names of the modules in
523 :mod:`six.moves.urllib` package is a version-independent location for this
531 from six.moves.cPickle import loads
536 interpreter. For example, ``sys.modules["six.moves.winreg"].LoadKey`` would
542 directly from ``six.moves`` modules, you can workaround the issue by removing
545 d = [name for name in sys.modules if name.startswith("six.moves.")]
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/six/documentation/
Dindex.rst486 .. module:: six.moves
491 :mod:`six.moves` module. For example, to load the module for parsing HTML on
494 from six.moves import html_parser
499 from six.moves import reload_module
501 For the most part, :mod:`six.moves` aliases are the names of the modules in
516 :mod:`six.moves.urllib` package is a version-independent location for this
524 from six.moves.cPickle import loads
529 interpreter. For example, ``sys.modules["six.moves.winreg"].LoadKey`` would
535 directly from ``six.moves`` modules, you can workaround the issue by removing
538 d = [name for name in sys.modules if name.startswith("six.moves.")]
[all …]
/external/v8/test/unittests/compiler/
Dregister-allocator-unittest.cc17 int GetMoveCount(const ParallelMove& moves) { in GetMoveCount() argument
19 for (auto move : moves) { in GetMoveCount()
52 const ParallelMove* moves = in GetParallelMoveCount() local
54 if (moves == nullptr) return 0; in GetParallelMoveCount()
55 return GetMoveCount(*moves); in GetParallelMoveCount()
63 const ParallelMove* moves = in IsParallelMovePresent() local
65 EXPECT_NE(nullptr, moves); in IsParallelMovePresent()
68 for (auto move : *moves) { in IsParallelMovePresent()
/external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/webapp/
Dservice_handlers.py93 import six.moves.http_client
483 response_message = six.moves.http_client.responses.get(code, 'Unknown Error')
565 self.error(six.moves.http_client.UNSUPPORTED_MEDIA_TYPE)
568 self.__send_simple_error(six.moves.http_client.UNSUPPORTED_MEDIA_TYPE,
575 self.error(six.moves.http_client.METHOD_NOT_ALLOWED)
578 self.__send_simple_error(six.moves.http_client.METHOD_NOT_ALLOWED,

12345678910