@@ -215,13 +215,13 @@ public static ulong Hash64(Stream stream, ulong seed = 0)
215215 }
216216
217217 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
218- static ( ulong Acc1 , ulong Acc2 , ulong Acc3 , ulong Acc4 ) initAccumulators64 ( ulong seed )
218+ static ( ulong Acc1 , ulong Acc2 , ulong Acc3 , ulong Acc4 ) initAccumulators64 ( ulong seed )
219219 {
220220 return ( seed + prime64v1 + prime64v2 , seed + prime64v2 , seed , seed - prime64v1 ) ;
221221 }
222222
223223 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
224- static ulong processStripe64 (
224+ static ulong processStripe64 (
225225 ReadOnlySpan < byte > buf ,
226226 ref ulong acc1 ,
227227 ref ulong acc2 ,
@@ -246,14 +246,14 @@ static ulong processStripe64(
246246 }
247247
248248 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
249- static void processLane64 ( ref ulong accn , ReadOnlySpan < byte > buf )
249+ static void processLane64 ( ref ulong accn , ReadOnlySpan < byte > buf )
250250 {
251251 ulong lane = Bits . ToUInt64 ( buf ) ;
252252 accn = round64 ( accn , lane ) ;
253253 }
254254
255255 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
256- static ulong processRemaining64 (
256+ static ulong processRemaining64 (
257257 ReadOnlySpan < byte > remaining ,
258258 ulong acc )
259259 {
@@ -286,7 +286,7 @@ static ulong processRemaining64(
286286 }
287287
288288 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
289- static ulong avalanche64 ( ulong acc )
289+ static ulong avalanche64 ( ulong acc )
290290 {
291291 acc ^= acc >> 33 ;
292292 acc *= prime64v2 ;
@@ -297,29 +297,29 @@ static ulong avalanche64(ulong acc)
297297 }
298298
299299 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
300- static ulong round64 ( ulong accn , ulong lane )
300+ static ulong round64 ( ulong accn , ulong lane )
301301 {
302302 accn += lane * prime64v2 ;
303303 return Bits . RotateLeft ( accn , 31 ) * prime64v1 ;
304304 }
305305
306306 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
307- static void mergeAccumulator64 ( ref ulong acc , ulong accn )
307+ static void mergeAccumulator64 ( ref ulong acc , ulong accn )
308308 {
309309 acc ^= round64 ( 0 , accn ) ;
310310 acc *= prime64v1 ;
311311 acc += prime64v4 ;
312312 }
313313
314314 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
315- static ( uint Acc1 , uint Acc2 , uint Acc3 , uint Acc4 ) initAccumulators32 (
315+ static ( uint Acc1 , uint Acc2 , uint Acc3 , uint Acc4 ) initAccumulators32 (
316316 uint seed )
317317 {
318318 return ( seed + prime32v1 + prime32v2 , seed + prime32v2 , seed , seed - prime32v1 ) ;
319319 }
320320
321321 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
322- static uint processStripe32 (
322+ static uint processStripe32 (
323323 ReadOnlySpan < byte > buf ,
324324 ref uint acc1 ,
325325 ref uint acc2 ,
@@ -338,14 +338,14 @@ static uint processStripe32(
338338 }
339339
340340 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
341- static void processLane32 ( ReadOnlySpan < byte > buf , ref uint accn )
341+ static void processLane32 ( ReadOnlySpan < byte > buf , ref uint accn )
342342 {
343343 uint lane = Bits . ToUInt32 ( buf ) ;
344344 accn = round32 ( accn , lane ) ;
345345 }
346346
347347 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
348- static uint processRemaining32 (
348+ static uint processRemaining32 (
349349 ReadOnlySpan < byte > remaining ,
350350 uint acc )
351351 {
@@ -369,7 +369,7 @@ static uint processRemaining32(
369369 }
370370
371371 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
372- static uint round32 ( uint accn , uint lane )
372+ static uint round32 ( uint accn , uint lane )
373373 {
374374 accn += lane * prime32v2 ;
375375 accn = Bits . RotateLeft ( accn , 13 ) ;
@@ -378,7 +378,7 @@ static uint round32(uint accn, uint lane)
378378 }
379379
380380 [ MethodImpl ( MethodImplOptions . AggressiveInlining ) ]
381- static uint avalanche32 ( uint acc )
381+ static uint avalanche32 ( uint acc )
382382 {
383383 acc ^= acc >> 15 ;
384384 acc *= prime32v2 ;
0 commit comments