Searched refs:new_count (Results 1 – 5 of 5) sorted by relevance
/art/runtime/jit/ |
D | jit-inl.h | 42 uint32_t new_count = old_count + samples; in AddSamples() local 48 uint32_t new_batch = RoundDown(new_count, kJitSamplesBatchSize); // Clear lower bits. in AddSamples() 50 if (!MaybeCompileMethod(self, method, old_count, new_count, with_backedges)) { in AddSamples() 61 method->SetCounter(new_count); in AddSamples()
|
D | jit.h | 482 uint32_t new_count,
|
D | jit.cc | 1495 uint32_t new_count, in MaybeCompileMethod() argument 1525 if (old_count < HotMethodThreshold() && new_count >= HotMethodThreshold()) { in MaybeCompileMethod() 1534 if (old_count < OSRMethodThreshold() && new_count >= OSRMethodThreshold()) { in MaybeCompileMethod()
|
/art/runtime/mirror/ |
D | string.h | 101 void SetCount(int32_t new_count) REQUIRES_SHARED(Locks::mutator_lock_) { in SetCount() argument 104 SetField32<false, false>(OFFSET_OF_OBJECT_MEMBER(String, count_), new_count); in SetCount()
|
/art/runtime/ |
D | monitor.cc | 1132 uint32_t new_count = lock_word.ThinLockCount() + 1; in MonitorEnter() local 1133 if (LIKELY(new_count <= LockWord::kThinLockMaxCount)) { in MonitorEnter() 1135 new_count, in MonitorEnter() 1234 uint32_t new_count = lock_word.ThinLockCount() - 1; in MonitorExit() local 1235 new_lw = LockWord::FromThinLockId(thread_id, new_count, lock_word.GCState()); in MonitorExit()
|