-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathExtensions.cs
94 lines (85 loc) · 3.28 KB
/
Extensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/// Copyright 2012 Darren Kopp
///
/// Licensed under the Apache License, Version 2.0 (the "License");
/// you may not use this file except in compliance with the License.
/// You may obtain a copy of the License at
///
/// http://www.apache.org/licenses/LICENSE-2.0
///
/// Unless required by applicable law or agreed to in writing, software
/// distributed under the License is distributed on an "AS IS" BASIS,
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
/// See the License for the specific language governing permissions and
/// limitations under the License.
using System;
using System.Runtime.CompilerServices;
namespace Murmur
{
internal static class Extensions
{
#if NETFX45
[MethodImpl(MethodImplOptions.AggressiveInlining)]
#endif
internal static uint ToUInt32(this byte[] data, int start)
{
return BitConverter.IsLittleEndian
? (uint)(data[start] | data[start + 1] << 8 | data[start + 2] << 16 | data[start + 3] << 24)
: (uint)(data[start] << 24 | data[start + 1] << 16 | data[start + 2] << 8 | data[start + 3]);
}
#if NETFX45
[MethodImpl(MethodImplOptions.AggressiveInlining)]
#endif
internal static ulong ToUInt64(this byte[] data, int start)
{
if (BitConverter.IsLittleEndian)
{
uint i1 = (uint)(data[start] | data[start + 1] << 8 | data[start + 2] << 16 | data[start + 3] << 24);
ulong i2 = (ulong)(data[start + 4] | data[start + 5] << 8 | data[start + 6] << 16 | data[start + 7] << 24);
return (i1 | i2 << 32);
}
else
{
ulong i1 = (ulong)(data[start] << 24 | data[start + 1] << 16 | data[start + 2] << 8 | data[start + 3]);
uint i2 = (uint)(data[start + 4] << 24 | data[start + 5] << 16 | data[start + 6] << 8 | data[start + 7]);
return (i2 | i1 << 32);
//int i1 = (*pbyte << 24) | (*(pbyte + 1) << 16) | (*(pbyte + 2) << 8) | (*(pbyte + 3));
//int i2 = (*(pbyte + 4) << 24) | (*(pbyte + 5) << 16) | (*(pbyte + 6) << 8) | (*(pbyte + 7));
//return (uint)i2 | ((long)i1 << 32);
}
}
#if NETFX45
[MethodImpl(MethodImplOptions.AggressiveInlining)]
#endif
internal static uint RotateLeft(this uint x, byte r)
{
return (x << r) | (x >> (32 - r));
}
#if NETFX45
[MethodImpl(MethodImplOptions.AggressiveInlining)]
#endif
internal static ulong RotateLeft(this ulong x, byte r)
{
return (x << r) | (x >> (64 - r));
}
#if NETFX45
[MethodImpl(MethodImplOptions.AggressiveInlining)]
#endif
internal static uint FMix(this uint h)
{
// pipelining friendly algorithm
h = (h ^ (h >> 16)) * 0x85ebca6b;
h = (h ^ (h >> 13)) * 0xc2b2ae35;
return h ^ (h >> 16);
}
#if NETFX45
[MethodImpl(MethodImplOptions.AggressiveInlining)]
#endif
internal static ulong FMix(this ulong h)
{
// pipelining friendly algorithm
h = (h ^ (h >> 33)) * 0xff51afd7ed558ccd;
h = (h ^ (h >> 33)) * 0xc4ceb9fe1a85ec53;
return (h ^ (h >> 33));
}
}
}