├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── contrib └── rust │ ├── Cargo.toml │ └── src │ └── lib.rs ├── engine_chacha.h ├── engine_os.h ├── nanobenchmark.cc ├── nanobenchmark.h ├── nanobenchmark_test.cc ├── randen.cc ├── randen.h ├── randen_benchmark.cc ├── randen_test.cc ├── third_party └── pcg_random │ ├── LICENSE │ └── include │ ├── pcg_extras.hpp │ └── pcg_random.hpp ├── util.h ├── vector128.h └── vector128_test.cc /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/README.md -------------------------------------------------------------------------------- /contrib/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/contrib/rust/Cargo.toml -------------------------------------------------------------------------------- /contrib/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/contrib/rust/src/lib.rs -------------------------------------------------------------------------------- /engine_chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/engine_chacha.h -------------------------------------------------------------------------------- /engine_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/engine_os.h -------------------------------------------------------------------------------- /nanobenchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/nanobenchmark.cc -------------------------------------------------------------------------------- /nanobenchmark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/nanobenchmark.h -------------------------------------------------------------------------------- /nanobenchmark_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/nanobenchmark_test.cc -------------------------------------------------------------------------------- /randen.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/randen.cc -------------------------------------------------------------------------------- /randen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/randen.h -------------------------------------------------------------------------------- /randen_benchmark.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/randen_benchmark.cc -------------------------------------------------------------------------------- /randen_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/randen_test.cc -------------------------------------------------------------------------------- /third_party/pcg_random/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/third_party/pcg_random/LICENSE -------------------------------------------------------------------------------- /third_party/pcg_random/include/pcg_extras.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/third_party/pcg_random/include/pcg_extras.hpp -------------------------------------------------------------------------------- /third_party/pcg_random/include/pcg_random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/third_party/pcg_random/include/pcg_random.hpp -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/util.h -------------------------------------------------------------------------------- /vector128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/vector128.h -------------------------------------------------------------------------------- /vector128_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/randen/HEAD/vector128_test.cc --------------------------------------------------------------------------------