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() 51 if (!MaybeCompileMethod(self, method, old_count, new_count, with_backedges)) { in AddSamples() 63 method->SetCounter(new_count); in AddSamples()
|
D | jit.cc | 842 uint32_t new_count, in MaybeCompileMethod() argument 865 if (old_count < WarmMethodThreshold() && new_count >= WarmMethodThreshold()) { in MaybeCompileMethod() 896 if (old_count < HotMethodThreshold() && new_count >= HotMethodThreshold()) { in MaybeCompileMethod() 902 if (old_count < OSRMethodThreshold() && new_count >= OSRMethodThreshold()) { in MaybeCompileMethod()
|
D | jit.h | 332 uint32_t new_count,
|
/art/runtime/mirror/ |
D | string.h | 95 void SetCount(int32_t new_count) REQUIRES_SHARED(Locks::mutator_lock_) { in SetCount() argument 98 SetField32<false, false>(OFFSET_OF_OBJECT_MEMBER(String, count_), new_count); in SetCount()
|
/art/runtime/ |
D | monitor.cc | 1111 uint32_t new_count = lock_word.ThinLockCount() + 1; in MonitorEnter() local 1112 if (LIKELY(new_count <= LockWord::kThinLockMaxCount)) { in MonitorEnter() 1114 new_count, in MonitorEnter() 1213 uint32_t new_count = lock_word.ThinLockCount() - 1; in MonitorExit() local 1214 new_lw = LockWord::FromThinLockId(thread_id, new_count, lock_word.GCState()); in MonitorExit()
|