Home
last modified time | relevance | path

Searched refs:GetWriteCount (Results 1 – 6 of 6) sorted by relevance

/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/internal/
H A DBuffer.cxx211 VTKM_CONT vtkm::cont::Token::ReferenceCount* GetWriteCount(const LockType& lock) in GetWriteCount() function in vtkm::cont::internal::Buffer::InternalsStruct
256 if (token.IsAttached(internals->GetWriteCount(lock)) || in Enqueue()
278 if (token.IsAttached(internals->GetWriteCount(lock)) || in CanRead()
292 return (*internals->GetWriteCount(lock) < 1); in CanRead()
300 if (token.IsAttached(internals->GetWriteCount(lock)) || in CanWrite()
315 return ((*internals->GetWriteCount(lock) < 1) && (*internals->GetReadCount(lock) < 1)); in CanWrite()
354 token.Attach(internals, internals->GetWriteCount(lock), lock, &internals->ConditionVariable); in WaitToWrite()
H A DArrayHandleDeprecated.h578 VTKM_ASSERT((*this->GetReadCount(lock) == 0) && (*this->GetWriteCount(lock) == 0)); in ~InternalStruct()
664 VTKM_CONT vtkm::cont::Token::ReferenceCount* GetWriteCount(const LockType& lock) const in GetWriteCount() function
1213 if (token.IsAttached(this->Internals->GetWriteCount(lock)) ||
1227 return (*this->Internals->GetWriteCount(lock) < 1);
1235 if (token.IsAttached(this->Internals->GetWriteCount(lock)) ||
1249 return ((*this->Internals->GetWriteCount(lock) < 1) &&
1291 this->Internals->GetWriteCount(lock),
1331 if (token.IsAttached(this->Internals->GetWriteCount(lock)) ||
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/vulkan-validation-layers/src/layers/generated/
H A Dthread_safety.h74 int32_t GetWriteCount() const { return (int32_t)(count >> 32); } in GetWriteCount() function
107 …while (GetCount().GetReadCount() > (int)(!is_writer) || GetCount().GetWriteCount() > (int)is_write… in WaitForObjectIdle()
170 if (prevCount.GetReadCount() == 0 && prevCount.GetWriteCount() == 0) { in StartWrite()
175 assert(prevCount.GetWriteCount() != 0); in StartWrite()
244 if (prevCount.GetReadCount() == 0 && prevCount.GetWriteCount() == 0) { in StartRead()
247 } else if (prevCount.GetWriteCount() > 0 && use_data->thread != tid) { in StartRead()
/dports/graphics/vulkan-validation-layers/Vulkan-ValidationLayers-1.2.203/layers/generated/
H A Dthread_safety.h73 int32_t GetWriteCount() const { return (int32_t)(count >> 32); } in GetWriteCount() function
106 …while (GetCount().GetReadCount() > (int)(!is_writer) || GetCount().GetWriteCount() > (int)is_write… in WaitForObjectIdle()
169 if (prevCount.GetReadCount() == 0 && prevCount.GetWriteCount() == 0) { in StartWrite()
174 assert(prevCount.GetWriteCount() != 0); in StartWrite()
243 if (prevCount.GetReadCount() == 0 && prevCount.GetWriteCount() == 0) { in StartRead()
246 } else if (prevCount.GetWriteCount() > 0 && use_data->thread != tid) { in StartRead()
/dports/emulators/mesen/Mesen-0.9.8-4-g4c701ad6/Core/
H A DCPU.h846 uint32_t GetWriteCount() in GetWriteCount() function
H A DDebugger.cpp508 uint32_t writeCount = _dummyCpu->GetWriteCount(); in ProcessAllBreakpoints()