Searched refs:__rand48_mult (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/upstream-netbsd/libc/stdlib/
H A D_rand48.c30 unsigned short __rand48_mult[3] = { variable
45 accu = (unsigned long) __rand48_mult[0] * (unsigned long) xseed[0] +
49 accu += (unsigned long) __rand48_mult[0] * (unsigned long) xseed[1] +
50 (unsigned long) __rand48_mult[1] * (unsigned long) xseed[0];
53 accu += __rand48_mult[0] * xseed[2] + __rand48_mult[1] * xseed[1] + __rand48_mult[2] * xseed[0];
H A Dsrand48.c34 __rand48_mult[0] = RAND48_MULT_0;
35 __rand48_mult[1] = RAND48_MULT_1;
36 __rand48_mult[2] = RAND48_MULT_2;
H A Dseed48.c44 __rand48_mult[0] = RAND48_MULT_0;
45 __rand48_mult[1] = RAND48_MULT_1;
46 __rand48_mult[2] = RAND48_MULT_2;
/bionic/libc/private/
H A Drand48.h23 extern unsigned short __rand48_mult[3];

Completed in 97 milliseconds