build a new Rand64 value */
| 379 | |
| 380 | /* build a new Rand64 value */ |
| 381 | static Rand64 packI (lu_int32 h, lu_int32 l) { |
| 382 | Rand64 result; |
| 383 | result.h = h; |
| 384 | result.l = l; |
| 385 | return result; |
| 386 | } |
| 387 | |
| 388 | /* return i << n */ |
| 389 | static Rand64 Ishl (Rand64 i, int n) { |