/external/skia/src/pathops/ |
SkPathOpsCommon.cpp | 83 bool done = true; local 85 if (SkOpAngle* last = segment->activeAngle(*startPtr, startPtr, endPtr, &done)) { 95 if (done) { 120 if (!segment->done(angle)) {
|
SkPathOpsDebug.cpp | 177 if (done()) { 184 if (span->done()) { 411 int done = 0; local 415 done += span->upCast()->done() ? 1 : 0; 427 SkASSERT(done == fDoneCount);
|
/external/v8/src/arm/ |
codegen-arm.cc | 416 Label loop, entry, convert_hole, gc_required, only_change_map, done; local 509 __ b(&done); 545 __ bind(&done); 762 Label one_byte, done; local 769 __ jmp(&done); 773 __ bind(&done); 802 Label zero, infinity, done; local 852 __ b(&done); 856 __ b(&done); 861 __ bind(&done); [all...] |
/external/v8/src/compiler/arm/ |
code-generator-arm.cc | 447 Label done; local 455 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); 513 __ bind(&done); 521 Label done; local 533 __ b(&done); 541 __ b(&done); 561 __ b(&done); 569 __ b(&done); 577 __ b(&done); 585 __ b(&done); [all...] |
/external/v8/src/compiler/arm64/ |
code-generator-arm64.cc | 473 Label done; local 481 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); 539 __ Bind(&done); 547 Label done; local 559 __ B(&done); 567 __ B(&done); 587 __ B(&done); 595 __ B(&done); 603 __ B(&done); 611 __ B(&done); [all...] |
/external/v8/src/compiler/ia32/ |
code-generator-ia32.cc | 271 // Loop while fprem isn't done. 401 Label done; local 409 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); 468 __ bind(&done); 476 Label done; local 488 __ jmp(&done, Label::kNear); 496 __ jmp(&done, Label::kNear); 516 __ jmp(&done, Label::kNear); 524 __ jmp(&done, Label::kNear); 532 __ jmp(&done, Label::kNear) [all...] |
/external/v8/src/compiler/x64/ |
code-generator-x64.cc | 426 // Loop while fprem isn't done. 623 Label done; local 631 Label* flabel = fallthru ? &done : code()->GetLabel(fblock); 690 __ bind(&done); 698 Label done; local 710 __ jmp(&done, Label::kNear); 718 __ jmp(&done, Label::kNear); 738 __ jmp(&done, Label::kNear); 746 __ jmp(&done, Label::kNear); 754 __ jmp(&done, Label::kNear) [all...] |
/external/v8/src/ia32/ |
deoptimizer-ia32.cc | 399 Label done; local 404 __ jmp(&done); 407 __ bind(&done);
|
/external/v8/src/mips/ |
codegen-mips.cc | 698 Label loop, entry, convert_hole, gc_required, only_change_map, done; local 794 __ Branch(&done); 834 __ bind(&done); 1062 Label one_byte, done; local 1105 Label zero, infinity, done; local [all...] |
/external/v8/src/mips64/ |
codegen-mips64.cc | 592 Label loop, entry, convert_hole, gc_required, only_change_map, done; local 686 __ Branch(&done); 726 __ bind(&done); 951 Label one_byte, done; local 994 Label zero, infinity, done; local [all...] |
/external/v8/src/ |
preparser.cc | 849 bool done = arity_restriction == FunctionLiteral::GETTER_ARITY || local 852 while (!done) { 870 done = (peek() == Token::RPAREN); 871 if (!done) Expect(Token::COMMA, CHECK_OK);
|
/external/v8/src/x87/ |
codegen-x87.cc | 507 Label one_byte_external, done; local 525 __ jmp(&done, Label::kNear); 529 __ jmp(&done, Label::kNear); 545 __ jmp(&done, Label::kNear); 554 __ bind(&done);
|
deoptimizer-x87.cc | 246 Label loop, done; local 256 __ j(zero, &done, Label::kNear); 267 __ bind(&done); 438 Label done; local 443 __ jmp(&done); 446 __ bind(&done);
|
/external/v8/test/cctest/ |
test-macro-assembler-x64.cc | 793 Label done; local 795 __ SmiAddConstant(rcx, rcx, Smi::FromInt(second), mode, &done); 797 __ bind(&done); 1009 Label done; local 1011 __ SmiSubConstant(rcx, rcx, Smi::FromInt(second), mode, &done); 1013 __ bind(&done); [all...] |
/external/vixl/src/vixl/ |
invalset.h | 236 bool Done() const; 238 // Mark this iterator as 'done'. 689 VIXL_ASSERT(!Done()); 700 VIXL_ASSERT(!Done()); 714 bool InvalSetIterator<S>::Done() const { 716 bool done = (iterator_ == inval_set_->vector_->end()); local 717 VIXL_ASSERT(done == (index_ == inval_set_->size())); 718 return done;
|
/external/webrtc/src/system_wrappers/source/spreadsortlib/ |
spreadsort.hpp | 220 //Note: we could increment current once the swap is done in this case, but that seems to impair performance
1007 bool done = false; local 1029 bool done = false; local [all...] |
/frameworks/av/media/libstagefright/id3/ |
ID3.cpp | 417 bool ID3::Iterator::done() const { function in class:android::ID3::Iterator 815 while (!it.done()) {
|
/frameworks/base/cmds/bmgr/src/com/android/commands/bmgr/ |
Bmgr.java | 309 boolean done; field in class:Bmgr.RestoreObserver 315 done = true; 331 done = true; 337 // The restoreFinished() callback will throw the 'done' flag; we 340 while (!this.done) { 376 System.out.println("done"); 450 // once the restore has finished, close down the session and we're done
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
MountServiceTests.java | 65 boolean done = false; field in class:MountServiceTests.ObbObserver 73 done = true; 79 assertTrue("Expected ObbObserver to have received a state change.", done); 84 assertTrue("Expected ObbObserver to have received a state change.", done); 91 done = false; 95 return done;
|
/frameworks/base/tools/aapt/ |
XMLNode.cpp | 607 bool done; local 610 done = len < (ssize_t)sizeof(buf); 616 if (XML_Parse(parser, buf, len, done) == XML_STATUS_ERROR) { 622 } while (!done); [all...] |
/frameworks/rs/java/tests/GenImages/src/com/android/rs/genimage/ |
GenImage.java | 207 if (key > 0) done = true; 230 boolean done = false; field in class:Triangle 250 if (!done) {
|
/hardware/intel/common/libmix/mix_video/src/ |
mixvideoformat_h264.c | 1621 gboolean done = FALSE; local [all...] |
mixvideoformat_mp42.c | 462 /* we are done parsing for old data */ 493 LOG_V("Now, parsing is done (VBP_DONE)!\n"); 542 * The DHG parser checks for next_sc, if next_sc is a start code, it thinks the current parsing is done: VBP_DONE. 549 LOG_V("Now, parsing is not done (VBP_OK)!\n"); 1296 gboolean done = FALSE; local [all...] |
mixvideoformat_vc1.c | 1707 gboolean done = FALSE; local [all...] |
/libcore/jsr166-tests/src/test/java/jsr166/ |
ExecutorsTest.java | 309 final CountDownLatch done = new CountDownLatch(1); local 327 done.countDown(); 332 await(done); 348 final CountDownLatch done = new CountDownLatch(1); local 370 done.countDown(); 374 await(done);
|