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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/arch-mips/bionic/
memcmp16.S 40 beqz $a2,done /* 0 length string */
41 beq $a0,$a1,done /* strings are identical */
47 bne $t0,$t1,done
52 done: label
  /external/chromium_org/third_party/openssl/openssl/crypto/
o_init.c 68 static int done = 0; local
69 if (done)
71 done = 1;
  /external/openssl/crypto/
o_init.c 68 static int done = 0; local
69 if (done)
71 done = 1;
  /external/chromium_org/content/test/data/dom_storage/
common.js 12 function done(message) { function
  /external/chromium_org/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 37 var done = false; variable
40 // Debug event listener which steps until the global variable done is true.
43 if (!done) exec_state.prepareStep(Debug.StepAction.StepNext);
50 done = false;
58 done = true;
  /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 37 var done = false; variable
40 // Debug event listener which steps until the global variable done is true.
43 if (!done) exec_state.prepareStep(Debug.StepAction.StepNext);
50 done = false;
58 done = true;
  /external/ppp/pppd/
md4.h 25 unsigned int done; /* Nonzero means MD computation finished */ member in struct:__anon26235
  /bionic/libc/arch-arm/generic/bionic/
memset.S 40 bls done
58 done: label
  /external/chromium_org/content/test/data/fileapi/
common.js 10 function done(message) function
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
spinlock_internal.h 46 // "from" to "to". It returns when it performs a transition where done==true.
50 bool done; member in struct:base::internal::SpinLockWaitTransition
54 // satisfying 0<=i<n && trans[i].done, atomically make the transition,
56 // where !trans[i].done, but continue waiting.
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
spinlock_internal.h 46 // "from" to "to". It returns when it performs a transition where done==true.
50 bool done; member in struct:base::internal::SpinLockWaitTransition
54 // satisfying 0<=i<n && trans[i].done, atomically make the transition,
56 // where !trans[i].done, but continue waiting.
  /external/libvpx/libvpx/vpx_ports/
vpx_once.h 19 static int done; local
26 if(done)
52 if (!done)
55 done = 1;
61 * protected by checking if(done) above.
89 static int done; local
91 if(!done)
94 done = 1;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
main.c 21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/
main.c 21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/
main.c 21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/
main.c 21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/
main.c 21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
  /external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/
main.c 21 int done; local
40 done = 0;
41 while ( !done ) {
54 done = 1;
  /system/core/libpixelflinger/arch-mips/
t32cb16blend.S 186 beqz $a2,done
245 beqz $a2,done
256 done: label
  /art/compiler/
leb128_encoder.h 31 bool done = false; local
39 done = true;
41 } while (!done);
  /bionic/libc/kernel/common/linux/
completion.h 24 unsigned int done; member in struct:completion
32 #define INIT_COMPLETION(x) ((x).done = 0)
  /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)
  /development/scripts/app_engine_server/gae_shell/static/
shell.js 23 * (shell.done) that displays the results when the XmlHttpRequest returns.
55 * A constant for the XmlHttpRequest 'done' state.
128 shell.done = function(req) {
160 * server, and registers shell.done() as the callback to run when it returns.
175 req.onreadystatechange = function() { shell.done(req); };

Completed in 627 milliseconds

1 2 3 4 5 6 7 8 91011>>