HomeSort by relevance Sort by last modified time
    Searched defs:done (Results 1 - 25 of 1166) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/arch/mips/
memcmp16_mips.S 26 beqz $a2,done /* 0 length string */
27 beq $a0,$a1,done /* strings are identical */
33 bne $t0,$t1,done
38 done: label
  /art/runtime/arch/mips64/
memcmp16_mips64.S 28 beqz $a2, done /* 0 length string */
30 beq $a0, $a1, done /* addresses are identical */
36 bne $t0, $t1, done
44 done: label
  /external/lldb/tools/debugserver/source/MacOSX/
HasAVX.s 35 jmp done
38 done: label
  /external/v8/test/mjsunit/
debug-step-3.js 37 var done = false; variable
41 // Debug event listener which steps until the global variable done is true.
44 if (!done) exec_state.prepareStep(Debug.StepAction.StepNext);
51 done = false;
61 done = true;
debug-step-2.js 38 var done = false; variable
41 // Debug event listener which steps until the global variable done is true.
44 if (!done) exec_state.prepareStep(Debug.StepAction.StepNext);
51 done = false;
59 done = true;
  /external/compiler-rt/test/asan/TestCases/Windows/
queue_user_work_item_report.cc 6 HANDLE done; variable
17 SetEvent(done);
22 done = CreateEvent(0, false, false, "job is done");
23 if (!done)
27 if (WAIT_OBJECT_0 != WaitForSingleObject(done, INFINITE))
queue_user_work_item.cc 37 HANDLE done; variable
41 SetEvent(done);
46 done = CreateEvent(0, false, false, "job is done");
47 if (!done)
50 if (WAIT_OBJECT_0 != WaitForSingleObject(done, INFINITE))
52 fprintf(stderr, "Done!\n");
53 // CHECK: Done!
bind_io_completion_callback.cc 38 HANDLE done; variable
44 SetEvent(done);
48 done = CreateEvent(0, false, false, "job is done");
49 if (!done)
65 if (WAIT_OBJECT_0 != WaitForSingleObject(done, INFINITE))
67 fprintf(stderr, "Done!\n");
68 // CHECK: Done!
  /external/ppp/pppd/
md4.h 25 unsigned int done; /* Nonzero means MD computation finished */ member in struct:__anon17710
  /bionic/libc/arch-arm/generic/bionic/
memset.S 42 bls done
60 done: label
  /external/compiler-rt/test/tsan/
cond_race.cc 11 bool done; member in struct:Ctx
17 c->done = true;
32 while (!c->done)
signal_errno.cc 8 volatile int done; variable
12 done = 1;
23 while (done == 0) {
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_ports/
vpx_once.h 23 static int done; local
30 if(done)
56 if (!done)
59 done = 1;
65 * protected by checking if(done) above.
93 static int done; local
95 if(!done)
98 done = 1;
  /system/bt/hci/test/
low_power_manager_test.cpp 42 static semaphore_t *done; variable
47 semaphore_post(done);
110 done = semaphore_new(0);
123 semaphore_free(done);
134 semaphore_wait(done);
137 semaphore_wait(done);
  /system/core/libpixelflinger/arch-mips/
t32cb16blend.S 186 beqz $a2,done
245 beqz $a2,done
256 done: label
  /development/ndk/platforms/android-3/include/linux/
completion.h 18 unsigned int done; member in struct:completion
30 #define INIT_COMPLETION(x) ((x).done = 0)
  /external/icu/icu4c/source/test/intltest/
tokiter.h 65 UBool done; member in class:TokenIterator
  /external/libvpx/libvpx/vpx_ports/
vpx_once.h 23 static int done; local
30 if(done)
56 if (!done)
59 done = 1;
65 * protected by checking if(done) above.
81 static int done; local
84 if(done)
92 if (!done)
95 done = 1;
120 static int done; local
    [all...]
  /external/lldb/source/Plugins/SymbolFile/DWARF/
UniqueDWARFASTType.cpp 48 bool done = false; local
49 while (!done && match && parent_arg_die && parend_pos_die)
76 done = true;
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_context.c 42 BOOL done = FALSE; local
46 for (i = 0; !done && attribList[i]; i++) {
65 done = TRUE;
  /external/parameter-framework/utility/
FullIo.cpp 49 size_t done = 0; // Bytes already access in previous iterations variable
50 while (done < count) {
51 ssize_t accessed = accessor(fd, add(buf, done), count - done);
55 done += accessed;
  /frameworks/base/packages/StatementService/src/com/android/statementservice/
ExceptionLoggingFutureTask.java 38 protected void done() { method in class:ExceptionLoggingFutureTask
  /frameworks/base/tools/aapt/
FileFinder.cpp 85 bool done = false; local
88 for (size_t i = 0; i < extensions.size() && !done; ++i) {
93 done = true;
  /ndk/tests/device/test-stlport_shared-exception/jni/
label3.cpp 15 __label__ one, two, done; local
16 void *labs[] = { &&one, &&two, &&done };
32 done:
33 printf ("done!\n");
  /ndk/tests/device/test-stlport_static-exception/jni/
label3.cpp 15 __label__ one, two, done; local
16 void *labs[] = { &&one, &&two, &&done };
32 done:
33 printf ("done!\n");

Completed in 1278 milliseconds

1 2 3 4 5 6 7 8 91011>>