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

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

Completed in 60 milliseconds