Lines Matching full:high
114 int32_t high,
119 ASSERT_GE(high, low);
121 uint32_t interval = static_cast<uint32_t>(high - low + 1);
124 // The computation high - low + 1 should be 2^32 but overflowed
134 int32_t sample = prng->Rand(low, high);
136 EXPECT_GE(high, sample);
154 uint32_t high,
159 ASSERT_GE(high, low);
161 uint32_t interval = static_cast<uint32_t>(high - low + 1);
164 // The computation high - low + 1 should be 2^32 but overflowed
174 uint32_t sample = prng->Rand(low, high);
176 EXPECT_GE(high, sample);