Home
last modified time | relevance | path

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

/external/oss-fuzz/projects/inchi/
Dinchi_input_fuzzer.c25 static const size_t kSizeMax = (size_t)-1; variable
29 if (size == kSizeMax) in LLVMFuzzerTestOneInput()
/external/libbrillo/brillo/streams/
Dmemory_stream_test.cc80 const size_t kSizeMax = member in brillo::MemoryStreamTest
106 .WillOnce(Return(kSizeMax)); in TEST_F()
110 EXPECT_EQ(kSizeMax, stream_->GetSize()); in TEST_F()
120 EXPECT_CALL(container_mock(), Resize(kSizeMax, nullptr)) in TEST_F()
123 EXPECT_TRUE(stream_->SetSizeBlocking(kSizeMax, nullptr)); in TEST_F()
145 EXPECT_CALL(container_mock(), GetSize()).WillOnce(Return(kSizeMax)); in TEST_F()
147 EXPECT_EQ(kSizeMax, stream_->GetPosition()); in TEST_F()
/external/libchrome/base/metrics/
Dhistogram_samples.cc21 constexpr size_t kSizeMax = std::numeric_limits<size_t>::max(); variable
276 : SingleSampleIterator(min, max, count, kSizeMax) {} in SingleSampleIterator()
309 if (bucket_index_ == kSizeMax) in GetBucketIndex()