/art/test/023-many-interfaces/ |
D | expected.txt | 1 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/ |
D | memcmp16_mips.S | 26 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/ |
D | mutex-inl.h | 154 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()
|
D | mutex.cc | 320 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/ |
D | expected.txt | 1 test_virtual done 2 test_interface done
|
/art/test/018-stack-overflow/ |
D | expected.txt | 5 SOE test done 10 SOE test done
|
/art/runtime/ |
D | thread-inl.h | 100 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/ |
D | expected.txt | 2 done
|
/art/test/071-dexfile/ |
D | expected.txt | 4 done
|
/art/test/030-bad-finalizer/ |
D | expected.txt | 3 Finalizer done spinning.
|
/art/test/063-process-manager/ |
D | expected.txt | 15 done!
|
/art/test/079-phantom/ |
D | expected.txt | 14 done
|
/art/test/051-thread/ |
D | expected.txt | 14 thread test done
|
/art/test/050-sync-test/ |
D | expected.txt | 28 main: all done
|
/art/test/003-omnibus-opcodes/ |
D | expected.txt | 73 UnresTest2 done
|
/art/compiler/dex/ |
D | mir_analysis.cc | 901 bool done = false; in AnalyzeBlock() local 902 while (!done) { in AnalyzeBlock() 934 done = true; in AnalyzeBlock()
|
/art/compiler/dex/quick/ |
D | gen_common.cc | 1517 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/ |
D | expected.txt | 97 ReflectTest done!
|
/art/compiler/optimizing/ |
D | code_generator_arm.cc | 1048 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()
|
D | code_generator_x86.cc | 1012 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()
|
D | code_generator_x86_64.cc | 555 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/ |
D | intrinsic_func_list.def | 368 // 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/ |
D | int_x86.cc | 786 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()
|