HomeSort by relevance Sort by last modified time
    Searched refs:kThinLockCountShift (Results 1 - 2 of 2) sorted by null

  /art/runtime/
lock_word.h 78 kThinLockCountShift = kThinLockOwnerSize + kThinLockOwnerShift,
81 kThinLockCountOne = 1 << kThinLockCountShift, // == 65536 (0x10000)
84 kStateShift = kReadBarrierStateSize + kThinLockCountSize + kThinLockCountShift,
91 kReadBarrierStateShift = kThinLockCountSize + kThinLockCountShift,
115 return LockWord((thread_id << kThinLockOwnerShift) | (count << kThinLockCountShift) |
lock_word-inl.h 34 return (value_ >> kThinLockCountShift) & kThinLockCountMask;

Completed in 534 milliseconds