Searched refs:loop (Results 51 - 75 of 740) sorted by relevance

1234567891011>>

/external/ltp/utils/sctp/func_tests/
H A Dtest_inaddr_any.c68 sockaddr_storage_t loop; local
96 loop.v6.sin6_family = AF_INET6;
97 loop.v6.sin6_addr = (struct in6_addr)SCTP_IN6ADDR_LOOPBACK_INIT;
98 loop.v6.sin6_port = 0;
106 loop.v4.sin_family = AF_INET;
107 loop.v4.sin_addr.s_addr = SCTP_IP_LOOPBACK;
108 loop.v4.sin_port = 0;
124 test_bind(sk1, &loop.sa, sizeof(loop));
133 namelen = sizeof(loop);
[all...]
/external/v8/src/compiler/
H A Dloop-peeling.cc5 #include "src/compiler/loop-peeling.h"
13 // Loop peeling is an optimization that copies the body of a loop, creating
15 // first iteration. Beginning with a loop as follows:
42 // The body of the loop is duplicated so that all nodes considered "inside"
43 // the loop (e.g. {P, U, X, Y, K, L, M}) have a corresponding copies in the
45 // backedges of the loop correspond to edges from the peeled iteration to
46 // the main loop body, with multiple backedges requiring a merge.
48 // Similarly, any exits from the loop body need to be merged with "exits"
169 bool LoopPeeler::CanPeel(LoopTree* loop_tree, LoopTree::Loop* loop) { argument
170 // Look for returns and if projections that are outside the loop bu
207 Peel(Graph* graph, CommonOperatorBuilder* common, LoopTree* loop_tree, LoopTree::Loop* loop, Zone* tmp_zone) argument
303 PeelInnerLoops(Graph* graph, CommonOperatorBuilder* common, LoopTree* loop_tree, LoopTree::Loop* loop, Zone* temp_zone) argument
[all...]
H A Dloop-analysis.cc5 #include "src/compiler/loop-analysis.h"
24 NodeInfo* next; // link in chaining loop members
28 // Temporary loop info needed during traversal and building the loop tree.
34 LoopTree::Loop* loop; member in struct:v8::internal::compiler::LoopInfo
38 // Encapsulation of the loop finding algorithm.
40 // Conceptually, the contents of a loop are those nodes that are "between" the
41 // loop header and the backedges of the loop. Graphs in the soup of nodes can
42 // form improper cycles, so standard loop findin
353 AddNodeToLoop(NodeInfo* node_info, LoopInfo* loop, int loop_num) argument
394 LoopInfo* loop = &loops_[loop_num - 1]; local
435 SerializeLoop(LoopTree::Loop* loop) argument
488 PrintLoop(LoopTree::Loop* loop) argument
519 HeaderNode(Loop* loop) argument
[all...]
H A Dast-loop-assignment-analyzer.h21 // The result of analyzing loop assignments.
24 BitVector* GetVariablesAssignedInLoop(IterationStatement* loop) { argument
26 // TODO(turbofan): hashmap or binary search for loop assignments.
27 if (list_[i].first == loop) return list_[i].second;
42 // The class that performs loop assignment analysis by walking the AST.
64 void Enter(IterationStatement* loop);
65 void Exit(IterationStatement* loop);
H A Dloop-peeling.h9 #include "src/compiler/loop-analysis.h"
16 // Represents the output of peeling a loop, which is basically the mapping
17 // from the body of the loop to the corresponding nodes in the peeled
22 // the node was part of the body of the loop. Returns {node} otherwise.
31 // Implements loop peeling.
34 static bool CanPeel(LoopTree* loop_tree, LoopTree::Loop* loop);
36 LoopTree* loop_tree, LoopTree::Loop* loop,
/external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
H A Dloop_unittest.py6 from telemetry.internal.actions import loop namespace
12 AUDIO_1_LOOP_CHECK = 'window.__hasEventCompleted("#audio_1", "loop");'
13 VIDEO_1_LOOP_CHECK = 'window.__hasEventCompleted("#video_1", "loop");'
25 action = loop.LoopAction(loop_count=2, selector='#video_1',
36 action = loop.LoopAction(loop_count=2, selector='all',
49 """Tests that wait_for_loop timeout_in_secondss if video does not loop."""
50 action = loop.LoopAction(loop_count=2, selector='#video_1',
/external/clang/test/Frontend/
H A Doptimization-remark-analysis.c4 // RPASS: {{.*}}:7:8: remark: loop not vectorized: loop contains a switch statement
5 // CHECK-NOT: {{.*}}:7:8: remark: loop not vectorized: loop contains a switch statement
10 #pragma clang loop vectorize(enable)
/external/clang/test/Misc/
H A Dbackend-optimization-failure-nodbg.cpp7 void test_switch(int *A, int *B, int Length) { /* expected-warning {{loop not vectorized: failed explicitly specified loop vectorization}} */
8 #pragma clang loop vectorize(enable) unroll(disable)
H A Dbackend-optimization-failure.cpp8 #pragma clang loop vectorize(enable) unroll(disable)
10 /* expected-warning@-1 {{loop not vectorized: failed explicitly specified loop vectorization}} */ switch (A[i]) {
/external/ltp/testcases/kernel/syscalls/getdtablesize/
H A Dgetdtablesize01.c57 int table_size, loop, fd, count = 0; local
83 for (loop = 1; loop <= max_val_opfiles; loop++) {
/external/proguard/src/proguard/classfile/util/
H A DDescriptorClassEnumeration.java109 loop: while (index < descriptor.length())
136 continue loop;
140 continue loop;
147 break loop;
158 break loop;
189 loop: while (true)
197 break loop;
/external/autotest/client/deps/fakegudev/src/
H A Dgudev-exercise.c18 static GMainLoop* loop; variable
29 loop = g_main_loop_new (NULL, FALSE);
34 g_main_loop_run (loop);
36 g_main_loop_unref (loop);
112 g_main_loop_quit (loop);
/external/clang/test/Parser/
H A Dpragma-unroll.cpp52 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int j = Length;
54 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma unroll'}} */ int k = Length;
56 /* expected-error {{expected a for, while, or do-while loop to follow '#pragma nounroll'}} */ int l = Length;
59 #pragma clang loop unroll(disable)
65 #pragma clang loop unroll(full)
71 #pragma clang loop unroll(enable)
82 /* expected-error {{incompatible directives '#pragma nounroll' and 'unroll_count(4)'}} */ #pragma clang loop unroll_count(4)
101 #pragma clang loop unroll(full)
/external/valgrind/memcheck/tests/
H A Dsbfragment.c45 int loop; local
47 // two optional arguments: [nr of loop] [debug]
49 loop = atoi(argv[1]);
51 loop = 3000;
64 for (i = 0; i < loop; i++)
77 printf ("after %d loops, last size block requested %lu\n", loop, bigsize);
/external/mesa3d/src/glsl/
H A Dlower_jumps.cpp32 * 3. Replace all "break" with a single conditional one at the end of the loop
42 * Continues are lowered by adding a per-loop "execute flag", initialized to
43 * true, that when cleared inhibits all execution until the end of the loop.
46 * at the end of the loop, and trigger the unique "break".
54 * a dummy loop and using break.
86 * - It assumes it is always possible for control to flow from a loop
88 * is not true (since all execution paths through the loop might
101 * continue to the top of the innermost enclosing loop, break out
109 * continue to the top of the innermost enclosing loop, break out
116 * continue to the top of the innermost enclosing loop, brea
162 ir_loop* loop; member in struct:loop_record
272 struct loop_record loop; member in struct:ir_lower_jumps_visitor
[all...]
/external/libmojo/mojo/public/cpp/bindings/tests/
H A Dstruct_traits_unittest.cc171 base::RunLoop loop; local
175 ExpectResult(RectChromium(1, 1, 4, 5), loop.QuitClosure()));
176 loop.Run();
184 base::RunLoop loop; local
188 ExpectResult(RectChromium(2, 2, 5, 5), loop.QuitClosure()));
189 loop.Run();
194 base::RunLoop loop; local
195 ExpectError(&chromium_proxy, loop.QuitClosure());
199 loop.Run();
207 base::RunLoop loop; local
220 base::RunLoop loop; local
259 base::RunLoop loop; local
290 base::RunLoop loop; local
328 base::RunLoop loop; local
376 base::RunLoop loop; local
[all...]
/external/selinux/restorecond/
H A Duser.c62 /* User data is the event loop we are running in */
63 GMainLoop *loop = user_data; local
69 /* Tell the main loop to quit */
70 g_main_loop_quit (loop);
84 static int dbus_server(GMainLoop *loop) { argument
94 dbus_connection_add_filter (bus, signal_filter, loop, NULL);
238 GMainLoop *loop; local
240 loop = g_main_loop_new (NULL, FALSE);
243 if (dbus_server(loop) != 0)
261 g_main_loop_run (loop);
[all...]
/external/autotest/client/cros/
H A Ddark_resume_listener.py33 # If we just call run on this loop, the listener will hang and the test
37 loop = gobject.MainLoop()
38 context = loop.get_context()
/external/boringssl/mac-x86_64/crypto/rand/
H A Drdrand-x86_64.S33 L$loop:
41 jnz L$loop
/external/mesa3d/src/glsl/tests/lower_jumps/
H A Dlower_breaks_3.opt_test5 # If a loop contains a conditional break at the bottom of it,
12 ((loop () () () ()
H A Dlower_breaks_5.opt_test5 # If a loop contains a conditional break at the bottom of it,
12 ((loop () () () ()
H A Dlower_guarded_conditional_break.opt_test5 # Normally a conditional break at the end of a loop isn't
13 ((loop () () () ()
/external/toybox/toys/other/
H A Dvmstat.c80 unsigned loop, rows = (toys.optflags & FLAG_n) ? 0 : 25, local
89 for (loop = 0; !loop_max || loop <= loop_max; loop++) {
90 unsigned idx = loop&1, offset = 0, expected = 0;
94 if (loop && loop_delay) sleep(loop_delay);
97 if (rows>3 && !(loop % (rows-3))) {
118 // Collect unit adjustments (outside the inner loop to save time)
120 if (!loop) {
/external/universal-tween-engine/java/applets/src/aurelienribon/utils/swing/
H A DDrawingCanvas.java17 timer = new Timer(1000/60, loop);
37 private final ActionListener loop = new ActionListener() { field in class:DrawingCanvas
/external/webrtc/webrtc/system_wrappers/source/
H A Dfile_impl.h34 bool loop = false,
40 bool loop = false) override;

Completed in 1231 milliseconds

1234567891011>>