@@ -356,7 +356,7 @@ public static int Combine<T1, T2, T3, T4, T5, T6, T7, T8>(T1 value1, T2 value2,
356356 return ( int ) hash ;
357357 }
358358
359- [ MethodImpl ( ( MethodImplOptions ) 256 ) ]
359+ [ MethodImpl ( ( MethodImplOptions ) 0x100 ) ]
360360 private static void Initialize ( out uint v1 , out uint v2 , out uint v3 , out uint v4 )
361361 {
362362 v1 = s_seed + Prime1 + Prime2 ;
@@ -365,19 +365,19 @@ private static void Initialize(out uint v1, out uint v2, out uint v3, out uint v
365365 v4 = s_seed - Prime1 ;
366366 }
367367
368- [ MethodImpl ( ( MethodImplOptions ) 256 ) ]
368+ [ MethodImpl ( ( MethodImplOptions ) 0x100 ) ]
369369 private static uint Round ( uint hash , uint input )
370370 {
371371 return RotateLeft ( hash + ( input * Prime2 ) , 13 ) * Prime1 ;
372372 }
373373
374- [ MethodImpl ( ( MethodImplOptions ) 256 ) ]
374+ [ MethodImpl ( ( MethodImplOptions ) 0x100 ) ]
375375 private static uint QueueRound ( uint hash , uint queuedValue )
376376 {
377377 return RotateLeft ( hash + ( queuedValue * Prime3 ) , 17 ) * Prime4 ;
378378 }
379379
380- [ MethodImpl ( ( MethodImplOptions ) 256 ) ]
380+ [ MethodImpl ( ( MethodImplOptions ) 0x100 ) ]
381381 private static uint MixState ( uint v1 , uint v2 , uint v3 , uint v4 )
382382 {
383383 return RotateLeft ( v1 , 1 ) + RotateLeft ( v2 , 7 ) + RotateLeft ( v3 , 12 ) + RotateLeft ( v4 , 18 ) ;
@@ -388,7 +388,7 @@ private static uint MixEmptyState()
388388 return s_seed + Prime5 ;
389389 }
390390
391- [ MethodImpl ( ( MethodImplOptions ) 256 ) ]
391+ [ MethodImpl ( ( MethodImplOptions ) 0x100 ) ]
392392 private static uint MixFinal ( uint hash )
393393 {
394394 hash ^= hash >> 15 ;
@@ -407,7 +407,7 @@ private static uint MixFinal(uint hash)
407407 /// <param name="offset">The number of bits to rotate by.
408408 /// Any value outside the range [0..31] is treated as congruent mod 32.</param>
409409 /// <returns>The rotated value.</returns>
410- [ MethodImpl ( ( MethodImplOptions ) 256 ) ]
410+ [ MethodImpl ( ( MethodImplOptions ) 0x100 ) ]
411411 private static uint RotateLeft ( uint value , int offset )
412412 => ( value << offset ) | ( value >> ( 32 - offset ) ) ;
413413
0 commit comments