Lines Matching refs:seed_
1173 SimExclusiveLocalMonitor() : kSkipClearProbability(8), seed_(0x87654321) {
1185 if ((seed_ % kSkipClearProbability) != 0) {
1189 // Advance seed_ using a simple linear congruential generator.
1190 seed_ = (seed_ * 48271) % 2147483647;
1212 uint32_t seed_;
1221 SimExclusiveGlobalMonitor() : kPassProbability(8), seed_(0x87654321) {}
1226 bool pass = (seed_ % kPassProbability) != 0;
1227 // Advance seed_ using a simple linear congruential generator.
1228 seed_ = (seed_ * 48271) % 2147483647;
1234 uint32_t seed_;