| /external/vixl/test/aarch32/ |
| test-simulator-cond-rd-rn-operand-rm-shift-amount-1to32-a32.cc | 169 // It used to generate a loop over an instruction. 1451 Label loop; local [all...] |
| test-simulator-cond-rd-rn-operand-rm-shift-amount-1to32-t32.cc | 169 // It used to generate a loop over an instruction. 1451 Label loop; local [all...] |
| test-simulator-cond-rd-rn-operand-rm-shift-rs-a32.cc | 170 // It used to generate a loop over an instruction. 2146 Label loop; local [all...] |
| test-simulator-cond-rd-rn-operand-rm-t32.cc | 181 // It used to generate a loop over an instruction. 1124 Label loop; local [all...] |
| test-simulator-cond-rd-rn-rm-a32-ge.cc | 161 // It used to generate a loop over an instruction. 378 // A loop will be generated for each element of this array. 430 // Generate a loop for each element in `kTests`. Each loop tests one specific 443 Label loop; local 467 __ Bind(&loop); 535 // Loop back until `input_ptr` is lower than `input_base`. 538 __ B(ne, &loop);
|
| test-simulator-cond-rd-rn-rm-a32-q.cc | 153 // It used to generate a loop over an instruction. 370 // A loop will be generated for each element of this array. 414 // Generate a loop for each element in `kTests`. Each loop tests one specific 427 Label loop; local 451 __ Bind(&loop); 519 // Loop back until `input_ptr` is lower than `input_base`. 522 __ B(ne, &loop);
|
| test-simulator-cond-rd-rn-rm-a32-sel.cc | 149 // It used to generate a loop over an instruction. 366 // A loop will be generated for each element of this array. 407 // Generate a loop for each element in `kTests`. Each loop tests one specific 420 Label loop; local 444 __ Bind(&loop); 512 // Loop back until `input_ptr` is lower than `input_base`. 515 __ B(ne, &loop);
|
| test-simulator-cond-rd-rn-rm-t32-ge.cc | 161 // It used to generate a loop over an instruction. 378 // A loop will be generated for each element of this array. 430 // Generate a loop for each element in `kTests`. Each loop tests one specific 443 Label loop; local 467 __ Bind(&loop); 535 // Loop back until `input_ptr` is lower than `input_base`. 538 __ B(ne, &loop);
|
| test-simulator-cond-rd-rn-rm-t32-q.cc | 153 // It used to generate a loop over an instruction. 370 // A loop will be generated for each element of this array. 414 // Generate a loop for each element in `kTests`. Each loop tests one specific 427 Label loop; local 451 __ Bind(&loop); 519 // Loop back until `input_ptr` is lower than `input_base`. 522 __ B(ne, &loop);
|
| test-simulator-cond-rd-rn-rm-t32-sel.cc | 149 // It used to generate a loop over an instruction. 366 // A loop will be generated for each element of this array. 407 // Generate a loop for each element in `kTests`. Each loop tests one specific 420 Label loop; local 444 __ Bind(&loop); 512 // Loop back until `input_ptr` is lower than `input_base`. 515 __ B(ne, &loop);
|
| test-simulator-cond-rd-rn-t32.cc | 152 // It used to generate a loop over an instruction. 1354 Label loop; local [all...] |
| test-simulator-cond-rdlow-operand-imm8-t32.cc | 147 // It used to generate a loop over an instruction. 210 // A loop will be generated for each element of this array. 1615 Label loop; local [all...] |
| test-simulator-cond-rdlow-rnlow-operand-immediate-t32.cc | 152 // It used to generate a loop over an instruction. 1424 Label loop; local [all...] |
| test-simulator-cond-rdlow-rnlow-rmlow-t32.cc | 149 // It used to generate a loop over an instruction. 683 // A loop will be generated for each element of this array. 908 Label loop; local [all...] |
| test-simulator-rd-rn-rm-a32.cc | 151 // It used to generate a loop over an instruction. 696 Label loop; local [all...] |
| test-simulator-rd-rn-rm-t32.cc | 151 // It used to generate a loop over an instruction. 696 Label loop; local [all...] |
| /external/webrtc/talk/media/base/ |
| testutils.cc | 172 // Which loop and which index in the loop are we reading now. 173 size_t loop = i / GetTestPacketCount(); local 197 loop * GetTestPacketCount()), 199 loop * kRtpTimestampIncrease),
|
| /frameworks/base/core/java/android/os/ |
| Looper.java | 28 * Class used to run a message loop for a thread. Threads by default do 29 * not have a message loop associated with them; to create one, call 30 * {@link #prepare} in the thread that is to run the loop, and then 31 * {@link #loop} to have it process messages until the loop is stopped. 33 * <p>Most interaction with a message loop is through the 37 * using the separation of {@link #prepare} and {@link #loop} to create an 53 * Looper.loop(); 61 * This class contains the code required to set up and manage an event loop 85 * this looper, before actually starting the loop. Be sure to cal 129 public static void loop() { method in class:Looper [all...] |
| /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
| MediaAudioManagerTest.java | 61 Looper.loop();
|
| /frameworks/wilhelm/src/android/ |
| android_GenericMediaPlayer.cpp | 432 int32_t loop = 0; local 433 if (msg->findInt32(WHATPARAM_LOOP_LOOPING, &loop)) { 434 if (loop) { 441 (void) mPlayer->setLooping(loop);
|
| android_GenericPlayer.cpp | 180 void GenericPlayer::loop(bool loop) { function in class:android::GenericPlayer 181 SL_LOGV("GenericPlayer::loop %s", loop ? "true" : "false"); 183 msg->setInt32(WHATPARAM_LOOP_LOOPING, (int32_t)loop); 395 // it is strictly verboten to call those methods outside of the event loop
|
| /frameworks/wilhelm/tests/examples/ |
| slesTestSendToPresetReverb.cpp | 73 SLmillibel sendLevel, bool alwaysOn, bool useFd, bool loop) 272 if (loop) { 343 bool loop = false; local 353 } else if (!strcmp(arg, "--loop")) { 354 loop = true; 361 fprintf(stdout, "Usage: \t%s [--always-on] [--fd] [--loop] path preset directLevel " 380 (SLmillibel)atoi(argv[i+3]), alwaysOn, useFd, loop);
|
| /libcore/ojluni/src/main/java/java/io/ |
| DataInputStream.java | 509 loop: while (true) { 513 break loop; local 523 break loop; local
|
| /packages/providers/MediaProvider/src/com/android/providers/media/ |
| MediaScannerService.java | 161 Looper.loop();
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| asyncore.py | 205 def loop(timeout=30.0, use_poll=False, map=None, count=None): function
|