diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 23:28:29 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 23:28:29 +0000 |
commit | ba990126c119b5df777b9afcdc3d216cb9f21e5b (patch) | |
tree | 50025bd522a070efa235fff202040a95786323aa /base/rand_util.cc | |
parent | c7166029d29e0f702a0ec4c3efc9aa4319de35cb (diff) | |
download | chromium_src-ba990126c119b5df777b9afcdc3d216cb9f21e5b.zip chromium_src-ba990126c119b5df777b9afcdc3d216cb9f21e5b.tar.gz chromium_src-ba990126c119b5df777b9afcdc3d216cb9f21e5b.tar.bz2 |
RandUInt -> RandUint to match the style of other Uint functions.
Review URL: http://codereview.chromium.org/10767
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5517 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/rand_util.cc')
-rw-r--r-- | base/rand_util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/base/rand_util.cc b/base/rand_util.cc index cefc7bb..8480c82 100644 --- a/base/rand_util.cc +++ b/base/rand_util.cc @@ -17,7 +17,7 @@ int RandInt(int min, int max) { DCHECK(min <= max); uint64 range = static_cast<int64>(max) - min + 1; - uint64 number = base::RandUInt64(); + uint64 number = base::RandUint64(); int result = min + static_cast<int>(number % range); DCHECK(result >= min && result <= max); return result; @@ -31,7 +31,7 @@ double RandDouble() { COMPILE_ASSERT(std::numeric_limits<double>::radix == 2, otherwise_use_scalbn); static const int kBits = std::numeric_limits<double>::digits; - uint64 random_bits = base::RandUInt64() & ((GG_UINT64_C(1) << kBits) - 1); + uint64 random_bits = base::RandUint64() & ((GG_UINT64_C(1) << kBits) - 1); double result = ldexp(static_cast<double>(random_bits), -1 * kBits); DCHECK(result >= 0.0 && result < 1.0); return result; |