Searched refs:done (Results 151 - 175 of 940) sorted by relevance

1234567891011>>

/external/skia/src/pathops/
H A DSkPathOpsOp.cpp21 bool done = true; local
23 if (SkOpAngle* last = segment->activeAngle(*startPtr, startPtr, endPtr, &done)) {
33 if (done) {
62 if (!segment->done(angle)) {
102 if (!unsortable && current->done()) {
105 SkASSERT(unsortable || !current->done());
132 } while (!simple->isClosed() && (!unsortable || !start->starter(end)->done()));
135 if (!spanStart->done()) {
/external/toybox/toys/other/
H A Dinotifyd.c114 goto done;
124 done:
/external/valgrind/none/tests/ppc32/
H A Djm_int_isa_2_07.stdout.exp17 All done. Tested 8 different instructions
/external/valgrind/none/tests/ppc64/
H A Djm_int_isa_2_07.stdout.exp17 All done. Tested 8 different instructions
/external/guava/guava-bootstrap/src/java/util/concurrent/
H A DAbstractExecutorService.java125 boolean done = false;
141 done = true;
144 if (!done)
157 boolean done = false;
190 done = true;
193 if (!done)
/external/openssh/
H A Dauth2-hostbased.c93 goto done;
98 goto done;
103 goto done;
109 goto done;
116 goto done;
147 done:
/external/skia/experimental/Networking/
H A DSkSockets.cpp102 h.done = false;
104 while (!h.done && fConnected && !failure) {
137 memcpy(&h.done, packet, sizeof(bool));
145 //SkDebugf("read packet(done:%d, bytes:%d) from fd:%d in %d tries\n",
146 // h.done, h.bytes, fSockfd, attempts);
188 h.done = (size - bytesWrittenInTransfer <= CONTENT_SIZE);
189 h.bytes = (h.done) ? size - bytesWrittenInTransfer : CONTENT_SIZE;
191 memcpy(packet, &h.done, sizeof(bool));
228 //SkDebugf("wrote to packet(done:%d, bytes:%d) to fd:%d in %d tries\n",
229 // h.done,
[all...]
/external/skia/src/core/
H A DSkTDynamicHash.h39 bool done() const { function in class:SkTDynamicHash::Iter
44 SkASSERT(!this->done());
50 } while (!this->done() && (this->current() == Empty() || this->current() == Deleted()));
66 bool done() const { function in class:SkTDynamicHash::ConstIter
71 SkASSERT(!this->done());
77 } while (!this->done() && (this->current() == Empty() || this->current() == Deleted()));
167 // O(1) checks, always done.
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DJSR166TestCase.java319 * Extra checks that get done for all test cases.
1057 private volatile boolean done = false;
1058 public boolean isDone() { return done; }
1062 done = true;
1069 public volatile boolean done = false; field in class:JSR166TestCase.TrackedShortRunnable
1073 done = true;
1079 public volatile boolean done = false; field in class:JSR166TestCase.TrackedSmallRunnable
1083 done = true;
1089 public volatile boolean done = false; field in class:JSR166TestCase.TrackedMediumRunnable
1093 done
1099 public volatile boolean done = false; field in class:JSR166TestCase.TrackedLongRunnable
1109 public volatile boolean done = false; field in class:JSR166TestCase.TrackedNoOpRunnable
1116 public volatile boolean done = false; field in class:JSR166TestCase.TrackedCallable
[all...]
/external/selinux/libsemanage/src/
H A Dgenhomedircon.c237 goto done;
239 goto done;
245 goto done;
251 goto done;
256 goto done;
261 goto done;
265 goto done;
272 done:
497 goto done;
499 goto done;
[all...]
/external/lldb/examples/python/
H A Dprocess_events.py178 done = False
179 while not done:
218 done = True
223 done = True
226 done = True
233 done = True
245 done = True
246 # Now that we are done dump the stdout and stderr
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_fmsynth.c628 EAS_BOOL done; local
630 /* set flag assuming the envelope is not done */
631 done = EAS_FALSE;
694 done = EAS_TRUE;
700 done = EAS_TRUE;
706 return done;
734 EAS_BOOL done; local
748 /* flag to indicate this voice is done */
749 done = EAS_TRUE;
771 /* calculate envelope, returns true if done */
809 EAS_BOOL done; local
[all...]
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_fmsynth.c628 EAS_BOOL done; local
630 /* set flag assuming the envelope is not done */
631 done = EAS_FALSE;
694 done = EAS_TRUE;
700 done = EAS_TRUE;
706 return done;
734 EAS_BOOL done; local
748 /* flag to indicate this voice is done */
749 done = EAS_TRUE;
771 /* calculate envelope, returns true if done */
809 EAS_BOOL done; local
[all...]
/external/svox/pico/lib/
H A Dpicoctrl.c88 * @return PICO_OK : processing done
127 * @return PICO_OK : processing done
231 * @return PICO_OK : processing done
257 * @return PICO_OK : processing done
288 * @return PICO_OK : processing done
576 picoos_uint8 done= TRUE; local
587 done = (NULL != this);
589 if (done) {
599 done = FALSE;
603 if (done) {
[all...]
/external/boringssl/src/crypto/cmac/
H A Dcmac_test.cc61 size_t done = 0; local
62 while (done < msg_len) {
63 size_t todo = std::min(msg_len - done, static_cast<size_t>(chunk_size));
64 if (!CMAC_Update(ctx.get(), msg + done, todo)) {
69 done += todo;
/external/boringssl/src/ssl/
H A Dd1_srtp.c299 goto done;
307 goto done;
315 goto done;
337 goto done;
344 done:
/external/gptfdisk/
H A Dmbrpart.cc262 int done = 0; local
268 done = 1;
271 if ((!done) && (lba >= (numHeads * numSecspTrack * MAX_CYLINDERS))) {
274 done = 1;
278 if (!done) {
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_constants.c226 goto done;
236 goto done;
242 goto done;
248 goto done;
253 done:
/external/skia/src/gpu/
H A DGrBatchFontCache.cpp77 while (!iter.done()) {
88 while (!iter.done()) {
114 for (; !iter.done(); ++iter) {
168 while (!iter.done()) {
196 while (!iter.done()) {
/external/toybox/toys/pending/
H A Dtftpd.c91 int fd, done = 0, retry_count = 12, timeout = 100, len; local
153 if (len != blksize) done = 1; //last pkt.
163 if ((pktopcode == TFTPD_OP_ACK) && done) break;
207 if (!done) continue; // Send next chunk of data.
222 if (nw != blksize) done = 1;
/external/guava/guava/src/com/google/common/hash/
H A DMessageDigestHashFunction.java121 private boolean done; field in class:MessageDigestHashFunction.MessageDigestHasher
147 checkState(!done, "Cannot re-use a Hasher after calling hash() on it");
153 done = true;
/external/libvpx/libvpx/vpx_util/
H A Dvpx_thread.c35 int done = 0; local
36 while (!done) {
45 done = 1;
47 // signal to the main thread that we're done (for sync())
/external/lldb/tools/debugserver/source/
H A DRNBContext.cpp148 bool done = false; local
149 while (!done)
158 // done = true;
196 done = true;
/external/selinux/policycoreutils/secon/
H A Dsecon.c198 int done = FALSE; local
215 done = TRUE;
219 done = TRUE;
223 done = TRUE;
227 done = TRUE;
231 done = TRUE;
235 done = TRUE;
239 done = TRUE;
313 if (!done) { /* defualt, if nothing specified */
595 static int done local
[all...]
/external/tcpdump/
H A Dprint-telnet.c133 goto done;
214 goto done;
217 done:

Completed in 1001 milliseconds

1234567891011>>