HomeSort by relevance Sort by last modified time
    Searched refs:loop (Results 151 - 175 of 609) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/mesa3d/src/glsl/
loop_analysis.h 40 * Fill in loop control fields
42 * Based on analysis of loop variables, this function tries to remove sequences
43 * in the loop of the form
51 * altogether. For example, if it is provable that one loop exit condition will
64 * Tracking for all variables used in a loop
74 * Loop whose variable state is being tracked by this structure
76 ir_loop *loop; member in class:loop_variable_state
84 * Variables whose values are constant within the body of the loop
91 * Induction variables for this loop
98 * Simple if-statements that lead to the termination of the loop
    [all...]
  /external/openssl/crypto/bn/asm/
via-mont.pl 202 &loop (&label("sub")); # doesn't affect CF!
220 &loop (&label("copy"));
  /external/v8/test/mjsunit/regress/
regress-260.js 28 // We should not compile the bodies of function literals in loop
29 // conditions twice, even in cases where the loop condition is
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
DecodeThread.java 76 Looper.loop();
  /frameworks/av/include/media/stagefright/foundation/
ALooper.h 79 bool loop();
  /frameworks/av/media/libmediaplayerservice/
StagefrightPlayer.h 55 virtual status_t setLooping(int loop);
  /frameworks/base/core/tests/coretests/src/android/os/
TestHandlerThread.java 85 Looper.loop();
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
HandlerThread_Delegate.java 77 Looper.loop();
  /ndk/sources/host-tools/make-3.81/
makefile.com 76 $ loop:
82 $ goto loop
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/
PackageIconLoaderTest.java 77 Looper.loop();
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
target.h 101 struct loop;
basic-block.h 78 #define EDGE_IRREDUCIBLE_LOOP 128 /* Part of irreducible loop. */
80 #define EDGE_LOOP_EXIT 512 /* Exit of a loop. */
99 struct loop;
138 /* Innermost loop containing the block. */
139 struct loop *loop_father;
159 /* The loop depth of this block. */
214 /* Set for blocks in an irreducible loop by loop analysis. */
221 by SMS to prevent other schedulers from messing with the loop schedule. */
703 elements will be missed. Instead, use a for-loop like that show
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
target.h 101 struct loop;
basic-block.h 78 #define EDGE_IRREDUCIBLE_LOOP 128 /* Part of irreducible loop. */
80 #define EDGE_LOOP_EXIT 512 /* Exit of a loop. */
99 struct loop;
138 /* Innermost loop containing the block. */
139 struct loop *loop_father;
159 /* The loop depth of this block. */
214 /* Set for blocks in an irreducible loop by loop analysis. */
221 by SMS to prevent other schedulers from messing with the loop schedule. */
703 elements will be missed. Instead, use a for-loop like that show
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
target.h 101 struct loop;
basic-block.h 78 #define EDGE_IRREDUCIBLE_LOOP 128 /* Part of irreducible loop. */
80 #define EDGE_LOOP_EXIT 512 /* Exit of a loop. */
99 struct loop;
138 /* Innermost loop containing the block. */
139 struct loop *loop_father;
159 /* The loop depth of this block. */
214 /* Set for blocks in an irreducible loop by loop analysis. */
221 by SMS to prevent other schedulers from messing with the loop schedule. */
703 elements will be missed. Instead, use a for-loop like that show
    [all...]
  /external/chromium/chrome/browser/net/
sqlite_persistent_cookie_store.cc 396 MessageLoop* loop = g_db_thread.Get().message_loop(); local
402 loop->PostDelayedTask(FROM_HERE, NewRunnableMethod(
412 loop->PostTask(FROM_HERE, NewRunnableMethod(
537 MessageLoop* loop = g_db_thread.Get().message_loop(); local
538 loop->PostTask(FROM_HERE, NewRunnableMethod(
562 MessageLoop* loop = g_db_thread.Get().message_loop(); local
563 loop->PostTask(FROM_HERE,
  /external/iptables/iptables/
xtables.c 1292 const char *loop = name; local
1294 while ((loop = strchr(loop, ',')) != NULL) {
1296 ++loop; /* skip ',' */
1302 loop = name;
1305 if (loop == NULL)
1307 if (*loop == ',')
1308 ++loop;
1309 if (*loop == '\0')
1311 p = strchr(loop, ',');
1609 const char *loop = name; local
    [all...]
  /libcore/luni/src/main/java/java/nio/
DatagramChannelImpl.java 181 boolean loop = isBlocking();
183 retAddr = receiveImpl(target, loop);
185 retAddr = receiveDirectImpl(target, loop);
197 private SocketAddress receiveImpl(ByteBuffer target, boolean loop) throws IOException {
222 } while (loop);
226 private SocketAddress receiveDirectImpl(ByteBuffer target, boolean loop) throws IOException {
241 } while (loop);
  /system/core/init/
builtins.c 33 #include <linux/loop.h>
393 } else if (!strncmp(source, "loop@", 5)) {
394 int mode, loop, fd; local
404 sprintf(tmp, "/dev/block/loop%d", n);
405 loop = open(tmp, mode);
406 if (loop < 0) {
410 /* if it is a blank loop device */
411 if (ioctl(loop, LOOP_GET_STATUS, &info) < 0 && errno == ENXIO) {
412 /* if it becomes our loop device */
413 if (ioctl(loop, LOOP_SET_FD, fd) >= 0)
    [all...]
  /system/core/sh/
exec.c 511 loop:
518 goto loop;
524 goto loop;
530 goto loop;
541 goto loop;
545 goto loop;
548 goto loop;
562 goto loop;
565 goto loop;
568 goto loop;
    [all...]
  /external/bluetooth/glib/tests/
mainloop-test.c 43 GMainLoop *loop; member in struct:_AddrData
115 g_main_loop_quit (addr_data->loop);
157 addr_data.loop = g_main_loop_new (context, FALSE);
171 g_main_loop_run (addr_data.loop);
178 g_main_loop_unref (addr_data.loop);
  /external/openssl/crypto/engine/
eng_dyn.c 408 int num, loop; local
416 for(loop = 0; loop < num; loop++)
418 const char *s = sk_OPENSSL_STRING_value(ctx->dirs, loop);
  /external/v8/test/mjsunit/harmony/
debug-blockscopes.js 364 // Simple for-in loop over the keys of an object.
365 BeginTest("For loop 1");
385 // For-in loop over the keys of an object with a block scoped let variable
387 BeginTest("For loop 2");
410 // Simple for loop.
411 BeginTest("For loop 3");
430 // For loop with a block scoped let variable shadowing the iteration variable.
431 BeginTest("For loop 4");
453 // For loop with two variable declarations.
454 BeginTest("For loop 5")
    [all...]
  /frameworks/wilhelm/tests/examples/
slesTestSendToPresetReverb.cpp 74 SLmillibel sendLevel, bool alwaysOn, bool useFd, bool loop)
273 if (loop) {
344 bool loop = false; local
354 } else if (!strcmp(arg, "--loop")) {
355 loop = true;
362 fprintf(stdout, "Usage: \t%s [--always-on] [--fd] [--loop] path preset directLevel "
381 (SLmillibel)atoi(argv[i+3]), alwaysOn, useFd, loop);

Completed in 1575 milliseconds

1 2 3 4 5 67 8 91011>>