|   /external/clang/test/PCH/ | 
| pragma-loop.cpp  | 7 // CHECK: #pragma clang loop unroll_count(16) 8 // CHECK: #pragma clang loop interleave_count(8) 9 // CHECK: #pragma clang loop vectorize_width(4) 10 // CHECK: #pragma clang loop unroll(disable) 11 // CHECK: #pragma clang loop interleave(disable) 12 // CHECK: #pragma clang loop vectorize(enable) 13 // CHECK: #pragma clang loop unroll(full) 14 // CHECK: #pragma clang loop interleave(enable) 15 // CHECK: #pragma clang loop vectorize(disable) 19 // CHECK: #pragma clang loop interleave_count(I     [all...] | 
|   /external/clang/test/CodeGenCXX/ | 
| pragma-loop.cpp  | 3 // Verify while loop is recognized after sequence of pragma clang loop directives. 8 #pragma clang loop vectorize(enable) 9 #pragma clang loop interleave_count(4) 10 #pragma clang loop vectorize_width(4) 11 #pragma clang loop unroll(full) 13     // CHECK: br label {{.*}}, !llvm.loop ![[LOOP_1:.*]] 19 // Verify do loop is recognized after multi-option pragma clang loop directive. 23 #pragma clang loop vectorize_width(8) interleave_count(4) unroll(disable     [all...] | 
|   /external/elfutils/tests/ | 
| run-debugaltlink.sh  | 22     test-offset-loop libtestfile_multi_shared.so 26     test-offset-loop libtestfile_multi_shared.so <<\EOF 30 test-offset-loop: test-offset-loop.alt, build ID: 066bbf1a7bc5676f5015ee1966a088f23bdb83ae
  | 
| run-allfcts-multi.sh  | 30 # - test-offset-loop.c 40 # gcc -g -O2 test-offset-loop.c -o test-offset-loop 41 # cp test-offset-loop test-offset-loop2 42 # dwz test-offset-loop test-offset-loop2 -m test-offset-loop.alt 44 testfiles test-offset-loop test-offset-loop.alt 48 testrun ${abs_builddir}/allfcts test-offset-loop | head -n 20 > allfcts.out 50 /tmp/test-offset-loop.c:6:get_errn     [all...] | 
|   /external/libbrillo/brillo/message_loops/ | 
| message_loop_utils.h  | 19     MessageLoop* loop, 23 // Run the MessageLoop |loop| for up to |iterations| times without blocking. 25 BRILLO_EXPORT int MessageLoopRunMaxIterations(MessageLoop* loop,
  | 
|   /prebuilts/go/darwin-x86/misc/cgo/test/issue9400/ | 
| asm_386.s  | 18 loop:  label  22 	JNE	loop
  | 
| asm_amd64x.s  | 19 loop:  label  23 	JNE	loop
  | 
| asm_ppc64x.s  | 21 loop:  label  25 	// Hint that we're in a spin loop 27 	BNE	loop
  | 
| asm_arm64.s  | 28 loop:  label  31 	BNE	loop 33 	CBNZ	R3, loop
  | 
|   /prebuilts/go/linux-x86/misc/cgo/test/issue9400/ | 
| asm_386.s  | 18 loop:  label  22 	JNE	loop
  | 
| asm_amd64x.s  | 19 loop:  label  23 	JNE	loop
  | 
| asm_ppc64x.s  | 21 loop:  label  25 	// Hint that we're in a spin loop 27 	BNE	loop
  | 
| asm_arm64.s  | 28 loop:  label  31 	BNE	loop 33 	CBNZ	R3, loop
  | 
|   /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic54x/ | 
| loop.d  | 2 #name: c54x loop directive
  | 
|   /external/avahi/examples/ | 
| glib-integration.c  | 43     GMainLoop *loop = userdata;  local  45     g_message ("GLIB API Timeout reached, quitting main loop!"); 48     g_main_loop_quit (loop); 57     GMainLoop *loop = userdata;  local  67         g_main_loop_quit (loop); 74     GMainLoop *loop = NULL;  local  85     /* Create the GLIB main loop */ 86     loop = g_main_loop_new (NULL, FALSE); 105             loop);                                  /* User data to pass to function */ 111             loop,                                   /* User data *     [all...] | 
|   /external/dbus/test/name-test/ | 
| test-privserver.c  | 18   DBusLoop *loop;  member in struct:TestServiceData  29   if (!test_connection_setup (testdata->loop, new_connection)) 56       fprintf (stderr, "server exiting loop\n"); 57       _dbus_loop_quit (testdata->loop); 68   DBusLoop *loop;  local  74   loop = _dbus_loop_new (); 77   testdata->loop = loop; 83   test_connection_setup (loop, session); 105   if (!test_server_setup (loop, server)     [all...] | 
| test-wait-for-echo.py  | 14 loop = gobject.MainLoop()  variable  22     loop.quit() 30     loop.quit()    40 loop.run()
  | 
|   /hardware/bsp/intel/peripheral/libupm/examples/javascript/ | 
| groverotary.js  | 31 loop(); 33 function loop()  function  48     setTimeout(loop, 2000);
  | 
| tp401.js  | 38 function loop()  function  48     setTimeout(loop, 2500); 64 //start loop in 3 minutes 67     loop();
  | 
|   /external/v8/src/compiler/ | 
| ast-loop-assignment-analyzer.cc  | 5 #include "src/compiler/ast-loop-assignment-analyzer.h" 30 void ALAA::Enter(IterationStatement* loop) { 34   if (info()->is_osr() && info()->osr_ast_id() == loop->OsrEntryId()) 40 void ALAA::Exit(IterationStatement* loop) { 48       std::pair<IterationStatement*, BitVector*>(loop, bits)); 230 void ALAA::VisitDoWhileStatement(DoWhileStatement* loop) { 231   Enter(loop); 232   Visit(loop->body()); 233   Visit(loop->cond()); 234   Exit(loop);     [all...] | 
| loop-analysis.h  | 34   // Represents a loop in the tree of loops, including the header nodes, 36   class Loop { 38     Loop* parent() const { return parent_; } 39     const ZoneVector<Loop*>& children() const { return children_; } 49     explicit Loop(Zone* zone) 56     Loop* parent_; 58     ZoneVector<Loop*> children_; 64   // Return the innermost nested loop, if any, that contains {node}. 65   Loop* ContainingLoop(Node* node) { 71   // Check if the {loop} contains the {node}, either directly or by containin     [all...] | 
|   /external/toybox/toys/other/ | 
| losetup.c  | 16     associated with a loop device. 20     -f	Find first unused loop device (may create one) 36 #include <linux/loop.h> 53   allocate new loop device: 54     /dev/loop-control 63   struct loop_info64 *loop = (void *)(toybuf+32);  local  67   // Open file (ffd) and loop device (lfd) 71     int i, cfd = open("/dev/loop-control", O_RDWR); 74     // just preallocate loop devices and stay within them. 76     // mount -o loop depends on found device being at the start of toybuf     [all...] | 
|   /external/skia/src/views/unix/ | 
| skia_unix.cpp  | 21     window->loop();
  | 
|   /toolchain/binutils/binutils-2.25/gas/testsuite/gas/bfin/ | 
| loop_label.s  | 4         loop 1f lc0=p0;
  | 
| loop_label2.s  | 4         loop .Lfoo lc0=p0;
  |