| 325 | } |
| 326 | |
| 327 | int64_t stochasticRound(double val) { |
| 328 | MutexLocker locker(g_randMutex); |
| 329 | checkInit(); |
| 330 | return g_randSource->stochasticRound(val); |
| 331 | } |
| 332 | |
| 333 | void randBytes(char* buf, size_t len) { |
| 334 | MutexLocker locker(g_randMutex); |
nothing calls this directly
no test coverage detected