build a new Rand64 value */
| 399 | |
| 400 | /* build a new Rand64 value */ |
| 401 | static Rand64 packI (lu_int32 h, lu_int32 l) { |
| 402 | Rand64 result; |
| 403 | result.h = h; |
| 404 | result.l = l; |
| 405 | return result; |
| 406 | } |
| 407 | |
| 408 | /* return i << n */ |
| 409 | static Rand64 Ishl (Rand64 i, int n) { |