Home
last modified time | relevance | path

Searched defs:new_state (Results 1 – 3 of 3) sorted by relevance

/ark/runtime_core/libpandabase/os/unix/futex/
Dmutex.cpp95 …auto new_state = static_cast<int32_t>(helpers::ToUnsigned(cur_state) | helpers::ToUnsigned(HELD_MA… in Lock() local
152 …auto new_state = static_cast<int32_t>(helpers::ToUnsigned(cur_state) | helpers::ToUnsigned(HELD_MA… in TryLock() local
208 …auto new_state = helpers::ToUnsigned(cur_state) & ~helpers::ToUnsigned(HELD_MASK); // State witho… in Unlock() local
324 auto new_state = cur_state + READ_INCREMENT; in TryReadLock() local
Dmutex.h146 auto new_state = cur_state + READ_INCREMENT; in ReadLock() local
180 auto new_state = cur_state - READ_INCREMENT; in ReadUnlock() local
/ark/runtime_core/runtime/mem/
Dpygote_space_allocator-inl.h56 inline void PygoteSpaceAllocator<AllocConfigT>::SetState(PygoteSpaceState new_state) in SetState()