Searched refs:hotness_count (Results 1 – 3 of 3) sorted by relevance
886 uint16_t hotness_count = method->GetCounter(); in MterpSetUpHotnessCountdown() local893 if (hotness_count < warm_threshold) { in MterpSetUpHotnessCountdown()894 countdown_value = warm_threshold - hotness_count; in MterpSetUpHotnessCountdown()895 } else if (hotness_count < hot_threshold) { in MterpSetUpHotnessCountdown()896 countdown_value = hot_threshold - hotness_count; in MterpSetUpHotnessCountdown()897 } else if (hotness_count < osr_threshold) { in MterpSetUpHotnessCountdown()898 countdown_value = osr_threshold - hotness_count; in MterpSetUpHotnessCountdown()
407 inline void ArtMethod::SetCounter(uint16_t hotness_count) { in SetCounter() argument409 hotness_count_ = hotness_count; in SetCounter()
714 ALWAYS_INLINE void SetCounter(uint16_t hotness_count) REQUIRES_SHARED(Locks::mutator_lock_);