8 references to SecretConsumeRateBytes
Microsoft.AspNetCore.Razor.Utilities.Shared (8)
Utilities\Hashing\XxHashShared.cs (8)
33public const int NumStripesPerBlock = (SecretLengthBytes - StripeLengthBytes) / SecretConsumeRateBytes;
214const int StripesPerBlock = (SecretLengthBytes - StripeLengthBytes) / SecretConsumeRateBytes;
236Accumulate(accumulators, source, secret + ((int)stripesSoFar * SecretConsumeRateBytes), (int)stripesToEndOfBlock);
243Accumulate(accumulators, source, secret + ((int)stripesSoFar * SecretConsumeRateBytes), (int)stripes);
291Accumulate(accumulators, sourcePtr + sourceIndex, secret + ((int)state.StripesProcessedInCurrentBlock * SecretConsumeRateBytes), (int)stripesToEnd);
545secret += SecretConsumeRateBytes;
586secret += SecretConsumeRateBytes;
610Accumulate512Inlined(accumulators, source, secret + (i * SecretConsumeRateBytes));