| 170 | |
| 171 | |
| 172 | uint64_t getRandom64() |
| 173 | { |
| 174 | uint64_t rv = getRandom32(); |
| 175 | rv <<= 32; |
| 176 | rv |= getRandom32(); |
| 177 | return rv; |
| 178 | } |
| 179 | |
| 180 | /* |
| 181 | // works well for 1..16; but above it is worse |
nothing calls this directly
no test coverage detected