Subversion Repositories planix.SVN

Rev

Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2 Rev 33
Line 10... Line 10...
10
//    as 20-byte, little-endian uchar array
10
//    as 20-byte, little-endian uchar array
11
 
11
 
12
static void
12
static void
13
Hrand(uchar *s)
13
Hrand(uchar *s)
14
{
14
{
15
	ulong *u = (ulong*)s;
15
	u32int *u = (u32int*)s;
16
	*u++ = fastrand();
16
	*u++ = fastrand();
17
	*u++ = fastrand();
17
	*u++ = fastrand();
18
	*u++ = fastrand();
18
	*u++ = fastrand();
19
	*u++ = fastrand();
19
	*u++ = fastrand();
20
	*u = fastrand();
20
	*u = fastrand();