Lines Matching refs:snapshot2
106 std::unique_ptr<HistogramSamples> snapshot2(histogram->SnapshotSamples()); in TEST_P() local
107 EXPECT_EQ(3, snapshot2->TotalCount()); in TEST_P()
108 EXPECT_EQ(2, snapshot2->GetCount(100)); in TEST_P()
109 EXPECT_EQ(1, snapshot2->GetCount(101)); in TEST_P()
125 std::unique_ptr<HistogramSamples> snapshot2(histogram->SnapshotSamples()); in TEST_P() local
126 EXPECT_EQ(55, snapshot2->TotalCount()); in TEST_P()
127 EXPECT_EQ(30, snapshot2->GetCount(100)); in TEST_P()
128 EXPECT_EQ(25, snapshot2->GetCount(101)); in TEST_P()
144 std::unique_ptr<HistogramSamples> snapshot2(histogram->SnapshotSamples()); in TEST_P() local
145 EXPECT_EQ(55, snapshot2->TotalCount()); in TEST_P()
146 EXPECT_EQ(30, snapshot2->GetCount(1000000000)); in TEST_P()
147 EXPECT_EQ(25, snapshot2->GetCount(1010000000)); in TEST_P()
148 EXPECT_EQ(55250000000LL, snapshot2->sum()); in TEST_P()