Home
last modified time | relevance | path

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

12345678910>>...27

/external/v8/src/compiler/backend/
Dgap-resolver.cc24 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()
112 if (nmoves != moves->size()) moves->resize(nmoves); in Resolve()
114 if ((source_kinds & destination_kinds).empty() || moves->size() < 2) { in Resolve()
116 for (MoveOperands* move : *moves) { in Resolve()
128 for (size_t i = 0; i < moves->size(); ++i) { in Resolve()
[all …]
Dmove-optimizer.cc116 ParallelMove* moves = instr->parallel_moves()[i]; in FindFirstNonEmptySlot() local
117 if (moves == nullptr) continue; in FindFirstNonEmptySlot()
118 for (MoveOperands* move : *moves) { in FindFirstNonEmptySlot()
122 moves->clear(); // Clear this redundant move. in FindFirstNonEmptySlot()
168 ParallelMove* moves = instruction->parallel_moves()[0]; in RemoveClobberedDestinations() local
169 if (moves == nullptr) return; in RemoveClobberedDestinations()
192 for (MoveOperands* move : *moves) { in RemoveClobberedDestinations()
202 for (MoveOperands* move : *moves) { in RemoveClobberedDestinations()
472 ParallelMove* moves = instr->GetOrCreateParallelMove( in OptimizeMerge() local
484 moves->AddMove(move->source(), move->destination()); in OptimizeMerge()
/external/python/six/
DCHANGES20 - Pull request #167: Add `six.moves.getoutput`.
22 - Pull request #80: Add `six.moves.urllib_parse.splitvalue`.
24 - Pull request #75: Add `six.moves.email_mime_image`.
34 - Pull request #55 and issue #99: Don't add the `winreg` module to `six.moves`
37 - Pull request #60 and issue #108: Add `six.moves.getcwd` and
38 `six.moves.getcwdu`.
60 - Issue #98: Fix `six.moves` race condition in multi-threaded code.
65 - Issue #112: `six.moves.reload_module` now uses the importlib module on
71 - Issue #90: Add `six.moves.shlex_quote`.
73 - Issue #59: Add `six.moves.intern`.
[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/swiftshader/third_party/llvm-7.0/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.
5 ; Test f32 moves.
13 ; Test f64 moves.
21 ; Test f128 moves. Since f128s are passed by reference, we need to force
Dfp-move-13.ll1 ; Test f128 moves on z14.
5 ; VR-to-VR moves. Since f128s are passed by reference,
21 ; Test 128-bit moves from GPRs to VRs. i128 isn't a legitimate type,
34 ; Test 128-bit moves from VRs to GPRs, with the same restriction as f2.
Dfp-move-12.ll1 ; Test moves between FPRs on z13.
13 ; Test f64 moves.
21 ; Test f128 moves. Since f128s are passed by reference, we need to force
/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.
5 ; Test f32 moves.
13 ; Test f64 moves.
21 ; Test f128 moves. Since f128s are passed by reference, we need to force
Dfp-move-12.ll1 ; Test moves between FPRs on z13.
13 ; Test f64 moves.
21 ; Test f128 moves. Since f128s are passed by reference, we need to force
/external/scapy/scapy/
Dmain.py27 IGNORED = list(six.moves.builtins.__dict__)
118 globals_dict = six.moves.builtins.__dict__
224 session = six.moves.builtins.__dict__["scapy_session"]
247 six.moves.cPickle.dump(to_be_saved, f, pickleProto)
260 s = six.moves.cPickle.load(gzip.open(fname,"rb"))
263 s = six.moves.cPickle.load(open(fname,"rb"))
268 scapy_session = six.moves.builtins.__dict__["scapy_session"]
283 s = six.moves.cPickle.load(gzip.open(fname,"rb"))
285 s = six.moves.cPickle.load(open(fname,"rb"))
286 scapy_session = six.moves.builtins.__dict__["scapy_session"]
[all …]
/external/chromium-trace/catapult/common/py_utils/py_utils/refactor_util/
Dmove.py23 moves = tuple(_Move(source, target) for source in sources)
26 refactor.Transform(functools.partial(_Update, moves), files_to_update)
29 for move in moves:
33 def _Update(moves, module): argument
35 for move in moves:
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/iterator/
DTestUCharacterIterator.java346 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()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
DTestUCharacterIterator.java343 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()
/external/python/oauth2client/oauth2client/
Dtools.py28 from six.moves import BaseHTTPServer
29 from six.moves import http_client
30 from six.moves import input
31 from six.moves import urllib
/external/python/apitools/apitools/base/py/
Dutil.py24 from six.moves import http_client
25 import six.moves.urllib.error as urllib_error
26 import six.moves.urllib.parse as urllib_parse
27 import six.moves.urllib.request as urllib_request
/external/python/oauth2client/oauth2client/contrib/
D_metadata.py24 from six.moves import http_client
25 from six.moves.urllib import parse as urlparse
/external/python/oauth2client/scripts/
Drun_gce_system_tests.py18 from six.moves import http_client
19 from six.moves import urllib
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/
Dmemset2.ll7 define i32 @test(%struct.Moves addrspace(1)* nocapture %moves) {
10 …%gep = getelementptr inbounds %struct.Moves, %struct.Moves addrspace(1)* %moves, i32 1, i32 0, i32…
/external/llvm/test/Transforms/InstCombine/
Dmemset2.ll7 define i32 @test(%struct.Moves addrspace(1)* nocapture %moves) {
10 …%gep = getelementptr inbounds %struct.Moves, %struct.Moves addrspace(1)* %moves, i32 1, i32 0, i32…
/external/python/six/documentation/
Dindex.rst495 .. module:: six.moves
500 :mod:`six.moves` module. For example, to load the module for parsing HTML on
503 from six.moves import html_parser
508 from six.moves import reload_module
510 For the most part, :mod:`six.moves` aliases are the names of the modules in
525 :mod:`six.moves.urllib` package is a version-independent location for this
533 from six.moves.cPickle import loads
538 interpreter. For example, ``sys.modules["six.moves.winreg"].LoadKey`` would
544 directly from ``six.moves`` modules, you can workaround the issue by removing
547 d = [name for name in sys.modules if name.startswith("six.moves.")]
[all …]
/external/python/dateutil/
Dupdatezinfo.py7 from six.moves.urllib import request
8 from six.moves.urllib import error as urllib_error

12345678910>>...27