Home
last modified time | relevance | path

Searched refs:new_count (Results 1 – 2 of 2) sorted by relevance

/art/runtime/mirror/
Dstring.h140 void SetCount(int32_t new_count) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in SetCount() argument
143 DCHECK_LE(0, new_count); in SetCount()
144 SetField32<false, false>(OFFSET_OF_OBJECT_MEMBER(String, count_), new_count); in SetCount()
/art/runtime/
Dmonitor.cc742 uint32_t new_count = lock_word.ThinLockCount() + 1; in MonitorEnter() local
743 if (LIKELY(new_count <= LockWord::kThinLockMaxCount)) { in MonitorEnter()
744 LockWord thin_locked(LockWord::FromThinLockId(thread_id, new_count)); in MonitorEnter()
810 uint32_t new_count = lock_word.ThinLockCount() - 1; in MonitorExit() local
811 LockWord thin_locked(LockWord::FromThinLockId(thread_id, new_count)); in MonitorExit()