/external/v8/src/compiler/backend/ |
D | gap-resolver.cc | 24 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 …]
|
D | move-optimizer.cc | 116 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/ |
D | CHANGES | 20 - 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 …]
|
D | test_six.py | 94 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/ |
D | vec-move-01.ll | 1 ; 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 …]
|
D | int-move-01.ll | 1 ; 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.
|
D | fp-move-01.ll | 1 ; 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
|
D | fp-move-13.ll | 1 ; 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.
|
D | fp-move-12.ll | 1 ; 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/ |
D | vec-move-01.ll | 1 ; 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 …]
|
D | int-move-01.ll | 1 ; 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.
|
D | fp-move-01.ll | 1 ; 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
|
D | fp-move-12.ll | 1 ; 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/ |
D | main.py | 27 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/ |
D | move.py | 23 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/ |
D | TestUCharacterIterator.java | 346 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/ |
D | TestUCharacterIterator.java | 343 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/ |
D | tools.py | 28 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/ |
D | util.py | 24 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.py | 24 from six.moves import http_client 25 from six.moves.urllib import parse as urlparse
|
/external/python/oauth2client/scripts/ |
D | run_gce_system_tests.py | 18 from six.moves import http_client 19 from six.moves import urllib
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | memset2.ll | 7 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/ |
D | memset2.ll | 7 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/ |
D | index.rst | 495 .. 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/ |
D | updatezinfo.py | 7 from six.moves.urllib import request 8 from six.moves.urllib import error as urllib_error
|