HomeSort by relevance Sort by last modified time
    Searched defs:loop (Results 301 - 325 of 789) sorted by null

<<11121314151617181920>>

  /external/vixl/test/aarch32/
test-simulator-cond-rd-rn-operand-rm-shift-rs-a32.cc 168 // It used to generate a loop over an instruction.
2144 Label loop; local
    [all...]
test-simulator-cond-rd-rn-operand-rm-t32.cc 179 // It used to generate a loop over an instruction.
1122 Label loop; local
    [all...]
test-simulator-cond-rd-rn-rm-a32.cc 205 // It used to generate a loop over an instruction.
1529 Label loop; local
    [all...]
test-simulator-cond-rd-rn-rm-ge-a32.cc 159 // It used to generate a loop over an instruction.
376 // A loop will be generated for each element of this array.
428 // Generate a loop for each element in `kTests`. Each loop tests one specific
441 Label loop; local
465 __ Bind(&loop);
533 // Loop back until `input_ptr` is lower than `input_base`.
536 __ B(ne, &loop);
test-simulator-cond-rd-rn-rm-ge-t32.cc 159 // It used to generate a loop over an instruction.
376 // A loop will be generated for each element of this array.
428 // Generate a loop for each element in `kTests`. Each loop tests one specific
441 Label loop; local
465 __ Bind(&loop);
533 // Loop back until `input_ptr` is lower than `input_base`.
536 __ B(ne, &loop);
test-simulator-cond-rd-rn-rm-q-a32.cc 151 // It used to generate a loop over an instruction.
368 // A loop will be generated for each element of this array.
412 // Generate a loop for each element in `kTests`. Each loop tests one specific
425 Label loop; local
449 __ Bind(&loop);
517 // Loop back until `input_ptr` is lower than `input_base`.
520 __ B(ne, &loop);
test-simulator-cond-rd-rn-rm-q-t32.cc 151 // It used to generate a loop over an instruction.
368 // A loop will be generated for each element of this array.
412 // Generate a loop for each element in `kTests`. Each loop tests one specific
425 Label loop; local
449 __ Bind(&loop);
517 // Loop back until `input_ptr` is lower than `input_base`.
520 __ B(ne, &loop);
test-simulator-cond-rd-rn-rm-sel-a32.cc 147 // It used to generate a loop over an instruction.
364 // A loop will be generated for each element of this array.
405 // Generate a loop for each element in `kTests`. Each loop tests one specific
418 Label loop; local
442 __ Bind(&loop);
510 // Loop back until `input_ptr` is lower than `input_base`.
513 __ B(ne, &loop);
test-simulator-cond-rd-rn-rm-sel-t32.cc 147 // It used to generate a loop over an instruction.
364 // A loop will be generated for each element of this array.
405 // Generate a loop for each element in `kTests`. Each loop tests one specific
418 Label loop; local
442 __ Bind(&loop);
510 // Loop back until `input_ptr` is lower than `input_base`.
513 __ B(ne, &loop);
test-simulator-cond-rd-rn-rm-t32.cc 204 // It used to generate a loop over an instruction.
1527 Label loop; local
    [all...]
test-simulator-cond-rd-rn-t32.cc 150 // It used to generate a loop over an instruction.
874 Label loop; local
    [all...]
test-simulator-cond-rdlow-operand-imm8-t32.cc 145 // It used to generate a loop over an instruction.
189 // A loop will be generated for each element of this array.
1594 Label loop; local
    [all...]
test-simulator-cond-rdlow-rnlow-operand-immediate-t32.cc 150 // It used to generate a loop over an instruction.
975 Label loop; local
    [all...]
test-simulator-cond-rdlow-rnlow-rmlow-t32.cc 147 // It used to generate a loop over an instruction.
681 // A loop will be generated for each element of this array.
906 Label loop; local
    [all...]
test-simulator-rd-rn-rm-a32.cc 149 // It used to generate a loop over an instruction.
368 // A loop will be generated for each element of this array.
483 // Generate a loop for each element in `kTests`. Each loop tests one specific
496 Label loop; local
519 __ Bind(&loop);
533 // Loop back until `input_ptr` is lower than `input_base`.
536 __ B(ne, &loop);
test-simulator-rd-rn-rm-t32.cc 149 // It used to generate a loop over an instruction.
368 // A loop will be generated for each element of this array.
483 // Generate a loop for each element in `kTests`. Each loop tests one specific
496 Label loop; local
519 __ Bind(&loop);
533 // Loop back until `input_ptr` is lower than `input_base`.
536 __ B(ne, &loop);
  /external/wayland/src/
event-loop.c 61 struct wl_event_loop *loop; member in struct:wl_event_source
98 add_source(struct wl_event_loop *loop,
108 source->loop = loop;
119 if (epoll_ctl(loop->epoll_fd, EPOLL_CTL_ADD, source->fd, &ep) < 0) {
129 wl_event_loop_add_fd(struct wl_event_loop *loop,
145 return add_source(loop, &source->base, mask, data);
151 struct wl_event_loop *loop = source->loop; local
161 return epoll_ctl(loop->epoll_fd, EPOLL_CTL_MOD, source->fd, &ep)
319 struct wl_event_loop *loop = source->loop; local
349 struct wl_event_loop *loop; local
    [all...]
  /external/wayland/tests/
test-compositor.c 142 struct wl_event_loop *loop; local
148 loop = wl_display_get_event_loop(d->wl_display);
149 wl_event_loop_add_idle(loop, handle_client_destroy, ci);
  /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
93 * this looper, before actually starting the loop. Be sure to cal
137 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/base/services/core/java/com/android/server/wm/
WindowTracing.java 127 void loop() { method in class:WindowTracing
166 new Thread(windowTracing::loop, "window_tracing").start();
  /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);

Completed in 972 milliseconds

<<11121314151617181920>>