compiler/clib: Rename IoErr2errno() to __arosc_ioerr2errno(); function is now defined...
[AROS.git] / compiler / clib / __rand48.c
blob279bbc36239432122455884d11a06648cc997c4b
1 /*
2 * Copyright (c) 1993 Martin Birgmeier
3 * All rights reserved.
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.
14 #include <sys/cdefs.h>
15 __FBSDID("$FreeBSD$");
17 #include "rand48.h"
19 unsigned short _rand48_seed[3] = {
20 RAND48_SEED_0,
21 RAND48_SEED_1,
22 RAND48_SEED_2
24 unsigned short _rand48_mult[3] = {
25 RAND48_MULT_0,
26 RAND48_MULT_1,
27 RAND48_MULT_2
29 unsigned short _rand48_add = RAND48_ADD;
31 void
32 _dorand48(unsigned short xseed[3])
34 unsigned long accu;
35 unsigned short temp[2];
37 accu = (unsigned long) _rand48_mult[0] * (unsigned long) xseed[0] +
38 (unsigned long) _rand48_add;
39 temp[0] = (unsigned short) accu; /* lower 16 bits */
40 accu >>= sizeof(unsigned short) * 8;
41 accu += (unsigned long) _rand48_mult[0] * (unsigned long) xseed[1] +
42 (unsigned long) _rand48_mult[1] * (unsigned long) xseed[0];
43 temp[1] = (unsigned short) accu; /* middle 16 bits */
44 accu >>= sizeof(unsigned short) * 8;
45 accu += _rand48_mult[0] * xseed[2] + _rand48_mult[1] * xseed[1] + _rand48_mult[2] * xseed[0];
46 xseed[0] = temp[0];
47 xseed[1] = temp[1];
48 xseed[2] = (unsigned short) accu;