Searched refs:moves (Results 1 - 25 of 53) sorted by relevance

123

/external/v8/src/compiler/
H A Dgap-resolver.cc29 static void VerifyMovesAreInjective(ZoneList<MoveOperands>* moves) { argument
32 for (op_iterator i = moves->begin(); i != moves->end(); ++i) {
41 ZoneList<MoveOperands>* moves = parallel_move->move_operands(); local
44 std::remove_if(moves->begin(), moves->end(),
46 moves->Rewind(static_cast<int>(end - moves->begin()));
48 VerifyMovesAreInjective(moves);
50 for (op_iterator move = moves
56 PerformMove(ZoneList<MoveOperands>* moves, MoveOperands* move) const argument
[all...]
H A Dgap-resolver.h16 // 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(ZoneList<MoveOperands>* moves, MoveOperands* move) const;
39 // Assembler used to emit moves and save registers.
/external/icu/icu4c/source/test/intltest/
H A Dcitrtest.h40 void TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *which);
H A Dtstnorm.h59 const char *moves,
H A Dtstnorm.cpp627 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_NF
623 TestPreviousNext(const UChar *src, int32_t srcLength, const UChar32 *expect, int32_t expectLength, const int32_t *expectIndex, int32_t srcMiddle, int32_t expectMiddle, const char *moves, UNormalizationMode mode, const char *name) argument
[all...]
H A Dcitrtest.cpp767 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_setCharacterIterato
766 TestUCharIterator(UCharIterator *iter, CharacterIterator &ci, const char *moves, const char *which) argument
[all...]
/external/v8/test/cctest/compiler/
H A Dtest-gap-resolver.cc19 void ExecuteInParallel(Moves moves) { argument
21 for (Moves::iterator it = moves.begin(); it != moves.end(); ++it) {
76 // An abstract interpreter for moves, swaps and parallel moves.
81 InterpreterState::Moves moves; variable
82 moves.push_back(MoveOperands(source, destination));
83 state_.ExecuteInParallel(moves);
88 InterpreterState::Moves moves; variable
89 moves
[all...]
/external/chromium-trace/trace-viewer/third_party/six/
H A Dtest_six.py74 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
172 from six import moves namespace
178 from six import moves namespace
[all...]
H A Dsix.py164 A meta path importer to import six.moves and its submodules.
289 MovedModule("urllib_parse", __name__ + ".moves.urllib_parse", "urllib.parse"),
290 MovedModule("urllib_error", __name__ + ".moves.urllib_error", "urllib.error"),
291 MovedModule("urllib", __name__ + ".moves.urllib", __name__ + ".moves.urllib"),
300 _importer._add_module(attr, "moves." + attr.name)
305 moves = _MovedItems(__name__ + ".moves") variable
306 _importer._add_module(moves, "moves")
[all...]
/external/chromium-trace/trace-viewer/third_party/Paste/tests/
H A Dtest_httpserver.py4 from six.moves import StringIO
/external/chromium-trace/trace-viewer/third_party/Paste/paste/util/
H A Dquoting.py7 from six.moves import html_entities
8 from six.moves.urllib.parse import quote, unquote
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/iterator/
H A DTestUCharacterIterator.java345 String moves="0+0+0--0-0-+++0--+++++++0--------";
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-";
405 while(movesIndex<moves.length()) {
406 m=moves
[all...]
/external/chromium-trace/trace-viewer/third_party/Paste/tests/test_auth/
H A Dtest_auth_digest.py63 from six.moves.urllib.error import HTTPError
64 from six.moves.urllib.request import build_opener, HTTPDigestAuthHandler
H A Dtest_auth_cookie.py5 from six.moves import xrange
/external/chromium-trace/trace-viewer/third_party/Paste/paste/auth/
H A Dcas.py21 from six.moves.urllib.parse import urlencode
/external/chromium-trace/trace-viewer/third_party/Paste/paste/evalexception/
H A Devalcontext.py3 from six.moves import cStringIO as StringIO
/external/chromium-trace/trace-viewer/third_party/Paste/paste/debug/
H A Dtestserver.py70 from six.moves.urllib.request import urlopen
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
H A Dproxy.py32 from six.moves import http_client as httplib
33 from six.moves.urllib import parse as urlparse
34 from six.moves.urllib.parse import quote
H A Dcgitb_catcher.py14 from six.moves import cStringIO as StringIO
H A Drequest.py21 from six.moves.urllib import parse as urlparse
22 from six.moves.urllib.parse import quote, parse_qsl
/external/v8/src/arm/
H A Dlithium-gap-resolver-arm.cc14 // 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
[all...]
/external/v8/src/arm64/
H A Dlithium-gap-resolver-arm64.cc38 // 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.
71 // Perform a linear sweep of the moves to add them to the initial list of
72 // moves to perform, ignoring any move that is redundant (the source is
75 const ZoneList<LMoveOperands>* moves = parallel_move->move_operands(); local
76 for (int i = 0; i < moves->length(); ++i) {
77 LMoveOperands move = moves->at(i);
95 // destination is saved in a stack allocated local. Multiple moves ca
[all...]
/external/v8/src/mips/
H A Dlithium-gap-resolver-mips.cc23 // 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/v8/src/mips64/
H A Dlithium-gap-resolver-mips64.cc23 // 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/v8/src/x64/
H A Dlithium-gap-resolver-x64.cc21 // 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 t
[all...]

Completed in 608 milliseconds

123