Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/googletest/googletest/samples/
H A Dsample6_unittest.cc73 PrimeTable* const table_; member in __anonba8bac7c0111::PrimeTableTest
108 EXPECT_FALSE(this->table_->IsPrime(0)); in TYPED_TEST()
109 EXPECT_FALSE(this->table_->IsPrime(1)); in TYPED_TEST()
116 EXPECT_TRUE(this->table_->IsPrime(2)); in TYPED_TEST()
117 EXPECT_TRUE(this->table_->IsPrime(3)); in TYPED_TEST()
118 EXPECT_TRUE(this->table_->IsPrime(5)); in TYPED_TEST()
119 EXPECT_TRUE(this->table_->IsPrime(7)); in TYPED_TEST()
180 EXPECT_TRUE(this->table_->IsPrime(2)); in TYPED_TEST_P()
181 EXPECT_TRUE(this->table_->IsPrime(3)); in TYPED_TEST_P()
182 EXPECT_TRUE(this->table_->IsPrime(5)); in TYPED_TEST_P()
[all …]
H A Dsample7_unittest.cc71 delete table_; in TearDown()
72 table_ = NULL; in TearDown()
76 PrimeTable* table_; member in __anon09eab5fd0111::PrimeTableTestSmpl7
81 EXPECT_FALSE(table_->IsPrime(0)); in TEST_P()
82 EXPECT_FALSE(table_->IsPrime(1)); in TEST_P()
83 EXPECT_FALSE(table_->IsPrime(4)); in TEST_P()
84 EXPECT_FALSE(table_->IsPrime(6)); in TEST_P()
89 EXPECT_TRUE(table_->IsPrime(2)); in TEST_P()
90 EXPECT_TRUE(table_->IsPrime(3)); in TEST_P()
91 EXPECT_TRUE(table_->IsPrime(5)); in TEST_P()
[all …]
H A Dsample8_unittest.cc108 delete table_; in TearDown()
109 table_ = NULL; in TearDown()
111 HybridPrimeTable* table_; member in __anon5949bf7e0111::PrimeTableTest
122 EXPECT_FALSE(table_->IsPrime(0)); in TEST_P()
123 EXPECT_FALSE(table_->IsPrime(1)); in TEST_P()
124 EXPECT_FALSE(table_->IsPrime(4)); in TEST_P()
125 EXPECT_FALSE(table_->IsPrime(6)); in TEST_P()
130 EXPECT_TRUE(table_->IsPrime(2)); in TEST_P()
131 EXPECT_TRUE(table_->IsPrime(3)); in TEST_P()
132 EXPECT_TRUE(table_->IsPrime(5)); in TEST_P()
[all …]
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h94 Bucket *table_; variable
162 table_ = (Bucket*)MmapOrDie(kSize * sizeof(table_[0]), "AddrHashMap"); in AddrHashMap()
169 Bucket *b = &table_[hash]; in acquire()