Home | History | Annotate | Download | only in base

Lines Matching full:uint64

20   uint64 range = static_cast<uint64>(max) - min + 1;
31 double BitsToOpenEndedUnitInterval(uint64 bits) {
39 uint64 random_bits = bits & ((GG_UINT64_C(1) << kBits) - 1);
46 uint64 RandGenerator(uint64 range) {
52 uint64 max_acceptable_value =
53 (std::numeric_limits<uint64>::max() / range) * range - 1;
55 uint64 value;
64 uint64 random_int;