2 * Copyright (c) 1993 Martin Birgmeier
5 * You may redistribute unmodified or modified versions of this source
6 * code provided that the above copyright notice and this and the
7 * following conditions are retained.
9 * This software is provided ``as is'', and comes with no warranties
10 * of any kind. I shall in no event be liable for anything that happens
11 * to anyone/anything when using this software.
16 unsigned short _rand48_seed
[3] = {
21 unsigned short _rand48_mult
[3] = {
26 unsigned short _rand48_add
= RAND48_ADD
;
29 _dorand48(unsigned short xseed
[3])
32 unsigned short temp
[2];
34 accu
= (unsigned long) _rand48_mult
[0] * (unsigned long) xseed
[0] +
35 (unsigned long) _rand48_add
;
36 temp
[0] = (unsigned short) accu
; /* lower 16 bits */
37 accu
>>= sizeof(unsigned short) * 8;
38 accu
+= (unsigned long) _rand48_mult
[0] * (unsigned long) xseed
[1] +
39 (unsigned long) _rand48_mult
[1] * (unsigned long) xseed
[0];
40 temp
[1] = (unsigned short) accu
; /* middle 16 bits */
41 accu
>>= sizeof(unsigned short) * 8;
42 accu
+= _rand48_mult
[0] * xseed
[2] + _rand48_mult
[1] * xseed
[1] + _rand48_mult
[2] * xseed
[0];
45 xseed
[2] = (unsigned short) accu
;