Searched refs:seed_lo (Results 1 – 1 of 1) sorted by relevance
125 explicit PhiloxRandom(uint64 seed_lo, uint64 seed_hi) { in PhiloxRandom() argument126 key_[0] = static_cast<uint32>(seed_lo); in PhiloxRandom()127 key_[1] = static_cast<uint32>(seed_lo >> 32); in PhiloxRandom()