Home
last modified time | relevance | path

Searched refs:done (Results 1 – 23 of 23) sorted by relevance

/art/test/023-many-interfaces/
Dexpected.txt1 testIface001: done
2 testIface049: done
3 testIface099: done
4 testVirt001: done
5 testVirt049: done
6 testVirt099: done
7 testInst001: done
8 testInst049: done
9 testInst099: done
/art/runtime/arch/mips/
Dmemcmp16_mips.S26 beqz $a2,done /* 0 length string */
27 beq $a0,$a1,done /* strings are identical */
33 bne $t0,$t1,done
38 done: label
/art/runtime/base/
Dmutex-inl.h154 bool done = false; in SharedLock() local
159 done = state_.CompareExchangeWeakAcquire(cur_state, cur_state + 1); in SharedLock()
171 } while (!done); in SharedLock()
186 bool done = false; in SharedUnlock() local
194 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, cur_state - 1); in SharedUnlock()
195 if (done && (cur_state - 1) == 0) { // Weak CAS may fail spuriously. in SharedUnlock()
205 } while (!done); in SharedUnlock()
Dmutex.cc320 bool done = false; in ExclusiveLock() local
325 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */); in ExclusiveLock()
339 } while (!done); in ExclusiveLock()
363 bool done = false; in ExclusiveTryLock() local
368 done = state_.CompareExchangeWeakAcquire(0 /* cur_state */, 1 /* new state */); in ExclusiveTryLock()
372 } while (!done); in ExclusiveTryLock()
409 bool done = false; in ExclusiveUnlock() local
419 done = state_.CompareExchangeWeakSequentiallyConsistent(cur_state, 0 /* new state */); in ExclusiveUnlock()
420 if (LIKELY(done)) { // Spurious fail? in ExclusiveUnlock()
437 } while (!done); in ExclusiveUnlock()
[all …]
/art/test/004-InterfaceTest/
Dexpected.txt1 test_virtual done
2 test_interface done
/art/test/018-stack-overflow/
Dexpected.txt5 SOE test done
10 SOE test done
/art/runtime/
Dthread-inl.h100 bool done = in TransitionFromRunnableToSuspended() local
103 if (LIKELY(done)) { in TransitionFromRunnableToSuspended()
112 bool done = false; in TransitionFromSuspendedToRunnable() local
144 done = in TransitionFromSuspendedToRunnable()
148 if (UNLIKELY(!done)) { in TransitionFromSuspendedToRunnable()
/art/test/059-finalizer-throw/
Dexpected.txt2 done
/art/test/071-dexfile/
Dexpected.txt4 done
/art/test/030-bad-finalizer/
Dexpected.txt3 Finalizer done spinning.
/art/test/063-process-manager/
Dexpected.txt15 done!
/art/test/079-phantom/
Dexpected.txt14 done
/art/test/051-thread/
Dexpected.txt14 thread test done
/art/test/050-sync-test/
Dexpected.txt28 main: all done
/art/test/003-omnibus-opcodes/
Dexpected.txt73 UnresTest2 done
/art/compiler/dex/
Dmir_analysis.cc901 bool done = false; in AnalyzeBlock() local
902 while (!done) { in AnalyzeBlock()
934 done = true; in AnalyzeBlock()
/art/compiler/dex/quick/
Dgen_common.cc1517 bool done = false; // Set to true if we happen to find a way to use a real instruction. in GenArithOpInt() local
1525 done = true; in GenArithOpInt()
1536 done = true; in GenArithOpInt()
1541 if (!done) { in GenArithOpInt()
1787 bool done = false; in GenArithOpIntLit() local
1791 done = true; in GenArithOpIntLit()
1794 done = true; in GenArithOpIntLit()
1801 done = true; in GenArithOpIntLit()
1805 if (!done) { in GenArithOpIntLit()
/art/test/046-reflect/
Dexpected.txt97 ReflectTest done!
/art/compiler/optimizing/
Dcode_generator_arm.cc1048 Label greater, done; in VisitCompare() local
1055 Label less, greater, done; in VisitCompare() local
1065 __ b(&done, EQ); in VisitCompare()
1070 __ b(&done); in VisitCompare()
1075 __ Bind(&done); in VisitCompare()
Dcode_generator_x86.cc1012 Label greater, done; in VisitCompare() local
1016 Label less, greater, done; in VisitCompare() local
1035 __ j(kEqual, &done); in VisitCompare()
1040 __ jmp(&done); in VisitCompare()
1045 __ Bind(&done); in VisitCompare()
Dcode_generator_x86_64.cc555 Label greater, done; in VisitCompare() local
567 __ j(kEqual, &done); in VisitCompare()
571 __ jmp(&done); in VisitCompare()
576 __ Bind(&done); in VisitCompare()
/art/compiler/llvm/
Dintrinsic_func_list.def368 // necessary checking on arguments (e.g., array and index) has already done
1381 // "HL" versions - will be deprecated when fast/slow path handling done
1450 // "HL" versions - will be deprecated when fast/slow path handling done
1741 // done inline.
/art/compiler/dex/quick/x86/
Dint_x86.cc786 LIR* done = NewLIR1(kX86Jmp8, 0); in GenDivRem() local
792 done->target = NewLIR0(kPseudoTargetLabel); in GenDivRem()
1990 LIR* done = NewLIR1(kX86Jmp8, 0); in GenDivRemLong() local
1996 done->target = NewLIR0(kPseudoTargetLabel); in GenDivRemLong()