Home
last modified time | relevance | path

Searched refs:kYieldMax (Results 1 – 3 of 3) sorted by relevance

/art/runtime/base/
Dlocks.cc88 static constexpr uint32_t kYieldMax = 20; in BackOff() local
98 } else if (i <= kYieldMax) { in BackOff()
101 NanoSleep(1000ull * (i - kYieldMax)); in BackOff()
Dmutex.cc105 static constexpr uint32_t kYieldMax = 20; in BackOff() local
115 } else if (i <= kYieldMax) { in BackOff()
118 NanoSleep(1000ull * (i - kYieldMax)); in BackOff()
/art/runtime/gc/collector/
Dmark_compact.cc3098 static constexpr uint32_t kYieldMax = 5; in BackOff() local
3100 if (i <= kYieldMax) { in BackOff()
3105 NanoSleep(10000ull * (i - kYieldMax)); in BackOff()