Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ private static void WriteBigEndian128(in Hash128 hash, Span<byte> destination)
Unsafe.WriteUnaligned(ref Unsafe.AddByteOffset(ref dest0, new IntPtr(sizeof(ulong))), low);
}

[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static Hash128 HashLength0To16(byte* source, uint length, ulong seed)
{
if (length > 8)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,6 @@ public ulong GetCurrentHashAsUInt64()
return current;
}

[MethodImpl(MethodImplOptions.AggressiveInlining)]
private static ulong HashLength0To16(byte* source, uint length, ulong seed)
{
if (length > 8)
Expand Down