Home
last modified time | relevance | path

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

/llvm-project/clang-tools-extra/clangd/unittests/support/
H A DThreadingTests.cpp73 std::atomic<unsigned> ComputeCount(0); in TEST_F() local
82 int Result = Cache.get(K, [&] { return ++ComputeCount; }); in TEST_F()
89 EXPECT_GE(ComputeCount, NumKeys) << "Computed each key once"; in TEST_F()
90 EXPECT_LE(ComputeCount, NumThreads * NumKeys) in TEST_F()