See header for documentation. */
| 30 | |
| 31 | /* See header for documentation. */ |
| 32 | void astc::rand_init(uint64_t state[2]) |
| 33 | { |
| 34 | state[0] = 0xfaf9e171cea1ec6bULL; |
| 35 | state[1] = 0xf1b318cc06af5d71ULL; |
| 36 | } |
| 37 | |
| 38 | /* See header for documentation. */ |
| 39 | uint64_t astc::rand(uint64_t state[2]) |
nothing calls this directly
no outgoing calls
no test coverage detected