Home
last modified time | relevance | path

Searched refs:old_count (Results 1 – 4 of 4) sorted by relevance

/art/runtime/jit/
Djit-inl.h41 uint32_t old_count = method->GetCounter(); in AddSamples() local
42 uint32_t new_count = old_count + samples; in AddSamples()
47 uint32_t old_batch = RoundDown(old_count, kJitSamplesBatchSize); // Clear lower bits. in AddSamples()
50 if (!MaybeCompileMethod(self, method, old_count, new_count, with_backedges)) { in AddSamples()
Djit.h471 uint32_t old_count,
Djit.cc1507 uint32_t old_count, in MaybeCompileMethod() argument
1537 if (old_count < WarmMethodThreshold() && new_count >= WarmMethodThreshold()) { in MaybeCompileMethod()
1566 if (old_count < HotMethodThreshold() && new_count >= HotMethodThreshold()) { in MaybeCompileMethod()
1578 if (old_count < OSRMethodThreshold() && new_count >= OSRMethodThreshold()) { in MaybeCompileMethod()
/art/openjdkjvmti/
Dti_monitor.cc175 size_t old_count = count_; in Wait() local
176 DCHECK_GT(old_count, 0u); in Wait()
198 count_ = old_count; in Wait()