Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_ilist_test.cpp35 EXPECT_FALSE(list.Queued(&node)); in TEST()
47 EXPECT_TRUE(list.Queued(&node)); in TEST()
54 EXPECT_FALSE(list.Queued(&node)); in TEST()
96 EXPECT_TRUE(list1.Queued(&nodes[0])); in TEST()
97 EXPECT_TRUE(list1.Queued(&nodes[1])); in TEST()
98 EXPECT_TRUE(list1.Queued(&nodes[2])); in TEST()
101 EXPECT_FALSE(list2.Queued(&nodes[0])); in TEST()
102 EXPECT_TRUE(list2.Queued(&nodes[1])); in TEST()
103 EXPECT_FALSE(list2.Queued(&nodes[2])); in TEST()
113 EXPECT_FALSE(list1.Queued(&nodes[1])); in TEST()
[all …]
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_ilist.h62 bool Queued(Elem* e) const;
169 bool IList<Base, Node, Elem>::Queued(Elem* e) const { in Queued() function
H A Dtsan_rtl.cpp158 CHECK(!ctx->trace_part_recycle.Queued(part)); in DoResetImpl()
262 if (ctx->slot_queue.Queued(slot)) in FindSlotAndLock()
1021 if (ctx->slot_queue.Queued(thr->slot)) { in TraceSwitchPartImpl()
H A Dtsan_rtl_thread.cpp259 CHECK(parts->Queued(trace.local_head)); in OnFinished()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp290 llvm::BitVector Queued(Body->getNumBlockIDs()); in throwEscapes() local
293 Queued[ThrowBlock.getBlockID()] = true; in throwEscapes()
300 if (!Succ.isReachable() || Queued[Succ->getBlockID()]) in throwEscapes()
316 Queued[Succ->getBlockID()] = true; in throwEscapes()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReader.cpp8195 std::unique_ptr<IdentifierIterator> Queued; member in __anon753f31391111::ChainedIdentifierIterator
8200 : Current(std::move(First)), Queued(std::move(Second)) {} in ChainedIdentifierIterator()
8212 std::swap(Current, Queued); in Next()