Lines Matching refs:seqlock
58 uint32_t seqlock; member
74 uint32_t seqlock; member
85 uint32_t seqlock; // This servers as "version" for the given address. member
88 return std::tie(address, seqlock) < std::tie(other.address, other.seqlock);
117 seqlock_offset_ = offsetof(JITCodeEntry, seqlock); in ReadDescriptor()
306 uint32_t seqlock[2]{0, 0}; in ReadNextField()
316 *uid = UID{.address = address[0], .seqlock = 0}; in ReadNextField()
321 if (!memory_->ReadFully(address[i] + seqlock_offset_, &seqlock[i], sizeof(seqlock[i]))) { in ReadNextField()
327 if (address[0] != address[1] || seqlock[0] != seqlock[1] || (seqlock[0] & 1) == 1) { in ReadNextField()
333 *uid = UID{.address = address[1], .seqlock = seqlock[1]}; in ReadNextField()
350 if (seen_seqlock != uid.seqlock) {
408 static_assert(offsetof(typename Impl::JITCodeEntry, seqlock) == 28, "layout"); in CreateGlobalDebugImpl()
417 static_assert(offsetof(typename Impl::JITCodeEntry, seqlock) == 32, "layout"); in CreateGlobalDebugImpl()
427 static_assert(offsetof(typename Impl::JITCodeEntry, seqlock) == 40, "layout"); in CreateGlobalDebugImpl()