summaryrefslogtreecommitdiffstats
path: root/src/util/rand_xor.h
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-03-22 10:47:05 +1100
committerTimothy Arceri <[email protected]>2017-03-23 08:16:29 +1100
commit53660c23662edb829e6bfd54bcdc0df4688ec62b (patch)
tree88f3f160cc56b99c2cd5cb034fe0bb64b9a97472 /src/util/rand_xor.h
parente11049f2c367192dfb1540855f6571a5e29b77ec (diff)
util: move rand_xorshift128plus() to utils
V2: pass the seed to rand_xorshift128plus() so that we can isolate its uses. Reviewed-by: Grazvydas Ignotas <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/util/rand_xor.h')
-rw-r--r--src/util/rand_xor.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/util/rand_xor.h b/src/util/rand_xor.h
new file mode 100644
index 00000000000..d5144e98230
--- /dev/null
+++ b/src/util/rand_xor.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2017 Timothy Arceri
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ *
+ */
+
+#ifndef RAND_XOR_H
+#define RAND_XOR_H
+
+#include <stdint.h>
+
+uint64_t
+rand_xorshift128plus(uint64_t *seed);
+
+#endif /* RAND_XOR_H */