Changeset 20256 in vbox for trunk/src/VBox/Runtime/common/rand/randparkmiller.cpp
- Timestamp:
- Jun 4, 2009 8:55:28 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48120
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/rand/randparkmiller.cpp
r11523 r20256 118 118 static DECLCALLBACK(int) rtRandParkMillerSeed(PRTRANDINT pThis, uint64_t u64Seed) 119 119 { 120 pThis->u.ParkMiller.u32Ctx = u64Seed;120 pThis->u.ParkMiller.u32Ctx = (uint32_t)u64Seed; 121 121 pThis->u.ParkMiller.u32Bits = 0; 122 122 pThis->u.ParkMiller.cBits = 0;
Note:
See TracChangeset
for help on using the changeset viewer.