Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(220)

Side by Side Diff: third_party/re2/util/random.cc

Issue 1544433002: Replace RE2 import with a dependency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re-Added LICENSE and OWNERS file Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/re2/util/random.h ('k') | third_party/re2/util/rune.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2005-2009 The RE2 Authors. All Rights Reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // Modified from Google perftools's tcmalloc_unittest.cc.
6
7 #include "util/random.h"
8
9 namespace re2 {
10
11 int32 ACMRandom::Next() {
12 const int32 M = 2147483647L; // 2^31-1
13 const int32 A = 16807;
14 // In effect, we are computing seed_ = (seed_ * A) % M, where M = 2^31-1
15 uint32 lo = A * (int32)(seed_ & 0xFFFF);
16 uint32 hi = A * (int32)((uint32)seed_ >> 16);
17 lo += (hi & 0x7FFF) << 16;
18 if (lo > M) {
19 lo &= M;
20 ++lo;
21 }
22 lo += hi >> 15;
23 if (lo > M) {
24 lo &= M;
25 ++lo;
26 }
27 return (seed_ = (int32) lo);
28 }
29
30 int32 ACMRandom::Uniform(int32 n) {
31 return Next() % n;
32 }
33
34 } // namespace re2
OLDNEW
« no previous file with comments | « third_party/re2/util/random.h ('k') | third_party/re2/util/rune.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698