HomeSort by relevance Sort by last modified time
    Searched refs:done (Results 101 - 125 of 2196) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
completion.h 18 unsigned int done; member in struct:completion
30 #define INIT_COMPLETION(x) ((x).done = 0)
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
completion.h 18 unsigned int done; member in struct:completion
30 #define INIT_COMPLETION(x) ((x).done = 0)
  /external/smack/src/org/jivesoftware/smackx/provider/
MUCAdminProvider.java 37 boolean done = false;
38 while (!done) {
47 done = true;
56 boolean done = false;
63 while (!done) {
75 done = true;
DataFormProvider.java 47 boolean done = false;
50 while (!done) {
70 done = true;
78 boolean done = false;
82 while (!done) {
99 done = true;
107 boolean done = false;
109 while (!done) {
117 done = true;
125 boolean done = false
    [all...]
MUCUserProvider.java 53 boolean done = false;
54 while (!done) {
78 done = true;
87 boolean done = false;
94 while (!done) {
106 done = true;
114 boolean done = false;
118 while (!done) {
127 done = true;
135 boolean done = false
    [all...]
MUCOwnerProvider.java 38 boolean done = false;
39 while (!done) {
56 done = true;
65 boolean done = false;
70 while (!done) {
82 done = true;
90 boolean done = false;
93 while (!done) {
102 done = true;
  /external/svox/pico/lib/
picoos.c 987 picoos_bool done = TRUE; local
1002 done = !(picopal_is_fnil((*f)->nf));
1003 if (done) {
1007 if (done) {
1017 return done;
1023 picoos_bool done; local
1049 picoos_bool done; local
1074 picoos_bool done; local
1105 picoos_bool done; local
1124 picoos_bool done = TRUE; local
1157 picoos_bool done = TRUE; local
1172 picoos_bool done = TRUE; local
1217 picoos_bool done = TRUE; local
1252 picoos_bool done = FALSE; local
1291 picoos_bool done = TRUE; local
1333 picoos_bool done = TRUE; local
1448 picoos_bool done; local
1515 picoos_bool done = FALSE; local
1610 picoos_bool done = FALSE; local
1673 picoos_bool done = TRUE; local
1725 picoos_bool done = TRUE; local
1788 picoos_bool done = FALSE; local
1828 picoos_bool done = FALSE; local
1854 picoos_bool done = TRUE; local
1965 picoos_uint8 done; local
    [all...]
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_mulmod.c 81 if (tG == NULL) { err = CRYPT_MEM; goto done; }
85 if ((err = mp_copy(G->x, tG->x)) != CRYPT_OK) { goto done; }
86 if ((err = mp_copy(G->y, tG->y)) != CRYPT_OK) { goto done; }
87 if ((err = mp_copy(G->z, tG->z)) != CRYPT_OK) { goto done; }
89 if ((err = mp_mulmod(G->x, mu, modulus, tG->x)) != CRYPT_OK) { goto done; }
90 if ((err = mp_mulmod(G->y, mu, modulus, tG->y)) != CRYPT_OK) { goto done; }
91 if ((err = mp_mulmod(G->z, mu, modulus, tG->z)) != CRYPT_OK) { goto done; }
98 if ((err = ltc_mp.ecc_ptdbl(tG, M[0], modulus, mp)) != CRYPT_OK) { goto done; }
99 if ((err = ltc_mp.ecc_ptdbl(M[0], M[0], modulus, mp)) != CRYPT_OK) { goto done; }
100 if ((err = ltc_mp.ecc_ptdbl(M[0], M[0], modulus, mp)) != CRYPT_OK) { goto done; }
    [all...]
ecc_shared_secret.c 71 if ((err = mp_read_radix(prime, (char *)private_key->dp->prime, 16)) != CRYPT_OK) { goto done; }
72 if ((err = ltc_mp.ecc_ptmul(private_key->k, &public_key->pubkey, result, prime, 1)) != CRYPT_OK) { goto done; }
78 goto done;
81 if ((err = mp_to_unsigned_bin(result->x, out + (x - mp_unsigned_bin_size(result->x)))) != CRYPT_OK) { goto done; }
85 done:
  /external/smack/src/org/jivesoftware/smack/provider/
PrivacyProvider.java 46 boolean done = false;
47 while (!done) {
72 done = true;
82 boolean done = false;
85 while (!done) {
94 done = true;
104 boolean done = false;
127 while (!done) {
145 done = true;
  /external/chromium_org/remoting/host/setup/
daemon_controller_delegate_mac.h 25 const DaemonController::CompletionCallback& done) OVERRIDE;
28 const DaemonController::CompletionCallback& done) OVERRIDE;
29 virtual void Stop(const DaemonController::CompletionCallback& done) OVERRIDE;
36 const DaemonController::CompletionCallback& done);
38 const DaemonController::CompletionCallback &done);
  /external/chromium_org/third_party/skia/src/core/
SkOnce.h 48 bool done; member in struct:SkOnceFlag
102 if (!once->done) {
105 // done before here---in particular, those done by calling f(arg)---are observable
106 // before the writes after the line, *done = true.
109 // to and including f(arg), then check in *done=true as a subsequent change".
112 // observable whenever we observe *done == true.
114 once->done = true;
136 ANNOTATE_BENIGN_RACE(&(once->done), "Don't worry TSAN, we're sure this is safe.");
137 if (!once->done) {
    [all...]
  /external/skia/src/core/
SkOnce.h 48 bool done; member in struct:SkOnceFlag
102 if (!once->done) {
105 // done before here---in particular, those done by calling f(arg)---are observable
106 // before the writes after the line, *done = true.
109 // to and including f(arg), then check in *done=true as a subsequent change".
112 // observable whenever we observe *done == true.
114 once->done = true;
136 ANNOTATE_BENIGN_RACE(&(once->done), "Don't worry TSAN, we're sure this is safe.");
137 if (!once->done) {
    [all...]
  /frameworks/native/opengl/tests/gl_perfapp/jni/
gl_code.cpp 31 bool done; variable
46 ALOGI("done\n");
51 done = true;
70 if (!done) {
72 done = false;
94 if (! done) {
  /external/chromium/chrome/browser/sync/engine/
syncer_thread2_unittest.cc 110 bool GetBackoffAndResetTest(base::WaitableEvent* done) {
115 done->TimedWait(timeout());
117 done->Reset();
132 void PostSignalTask(base::WaitableEvent* done) {
134 NewRunnableFunction(&SyncerThread2Test::SignalWaitableEvent, done));
137 void FlushLastTask(base::WaitableEvent* done) {
138 PostSignalTask(done);
139 done->TimedWait(timeout());
140 done->Reset();
204 base::WaitableEvent done(false, false)
    [all...]
  /external/dropbear/libtomcrypt/src/mac/f9/
f9_memory.c 54 goto done;
58 goto done;
62 done:
  /external/dropbear/libtomcrypt/src/mac/xcbc/
xcbc_memory.c 54 goto done;
58 goto done;
62 done:
  /external/dropbear/libtomcrypt/src/pk/dsa/
dsa_shared_secret.c 56 goto done;
59 if ((err = mp_to_unsigned_bin(res, out + (x - mp_unsigned_bin_size(res)))) != CRYPT_OK) { goto done; }
63 done:
  /external/iproute2/tc/
p_icmp.c 41 goto done;
46 goto done;
50 done:
  /external/kernel-headers/original/linux/
completion.h 14 unsigned int done; member in struct:completion
41 x->done = 0;
55 #define INIT_COMPLETION(x) ((x).done = 0)
  /system/core/adb/
framebuffer_service.c 64 if (pipe(fds) < 0) goto done;
67 if (pid < 0) goto done;
82 if(readx(fd_screencap, &w, 4)) goto done;
83 if(readx(fd_screencap, &h, 4)) goto done;
84 if(readx(fd_screencap, &f, 4)) goto done;
160 goto done;
164 if(writex(fd, &fbinfo, sizeof(fbinfo))) goto done;
168 if(readx(fd_screencap, buf, sizeof(buf))) goto done;
169 if(writex(fd, buf, sizeof(buf))) goto done;
171 if(readx(fd_screencap, buf, fbinfo.size % sizeof(buf))) goto done;
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
browser_thread_model_worker.cc 64 WaitableEvent* done,
69 done->Signal();
79 WaitableEvent* done,
81 BrowserThreadModelWorker::CallDoWorkAndSignalTask(work, done, error);
94 WaitableEvent* done,
96 BrowserThreadModelWorker::CallDoWorkAndSignalTask(work, done, error);
  /external/valgrind/unittest/
libstdc++_tests.cc 62 int done = 0; member in namespace:LibStdCPlusPlus_basic_string_Test
68 done++;
96 while (done != kNThreads)
126 int done = 0; member in namespace:LibStdCPlusPlus_shared_ptr_Test
132 done++;
159 while (done != kNThreads)
  /bionic/libc/arch-arm/generic/bionic/
strlen.c 53 goto done;
136 done:
  /development/ndk/sources/android/libportable/arch-mips/
flags.c 42 goto done;
55 done:

Completed in 1377 milliseconds

1 2 3 45 6 7 8 91011>>