System.Security.Cryptography.RIPEMD160Managed.HHH C# (CSharp) Method

HHH() private method

private HHH ( uint &a, uint b, uint &c, uint d, uint e, uint x, int s ) : void
a uint
b uint
c uint
d uint
e uint
x uint
s int
return void
		private void HHH(ref uint a, uint b, ref uint c, uint d, uint e, uint x, int s) {
			a += H(b, c, d) + x + 0x6d703ef3;
			a = ROL(a, s) + e;
			c = ROL(c, 10);
		}
		private void III(ref uint a, uint b, ref uint c, uint d, uint e, uint x, int s) {