Ejemplo n.º 1
0
 // Token: 0x06000D7A RID: 3450 RVA: 0x00034BC4 File Offset: 0x00032DC4
 public static int SINT(string key, Encoding encoding, uint seed)
 {
     return((int)MurmurHash2.UINT(key, encoding, seed));
 }
Ejemplo n.º 2
0
 // Token: 0x06000D50 RID: 3408 RVA: 0x0003442C File Offset: 0x0003262C
 public static uint UINT(sbyte[] key, uint seed)
 {
     return(MurmurHash2.UINT(key, key.Length, seed));
 }
Ejemplo n.º 3
0
 // Token: 0x06000D78 RID: 3448 RVA: 0x00034BA8 File Offset: 0x00032DA8
 public static int SINT_BLOCK(Array key, int len, uint seed)
 {
     return((int)MurmurHash2.UINT_BLOCK(key, len, seed));
 }
Ejemplo n.º 4
0
 // Token: 0x06000D79 RID: 3449 RVA: 0x00034BB4 File Offset: 0x00032DB4
 public static int SINT_BLOCK(Array key, uint seed)
 {
     return((int)MurmurHash2.UINT_BLOCK(key, Buffer.ByteLength(key), seed));
 }
Ejemplo n.º 5
0
 // Token: 0x06000D77 RID: 3447 RVA: 0x00034B9C File Offset: 0x00032D9C
 public static int SINT(long[] key, uint seed)
 {
     return((int)MurmurHash2.UINT(key, key.Length, seed));
 }
Ejemplo n.º 6
0
 // Token: 0x06000D6D RID: 3437 RVA: 0x00034B20 File Offset: 0x00032D20
 public static int SINT(long[] key, int len, uint seed)
 {
     return((int)MurmurHash2.UINT(key, len, seed));
 }
Ejemplo n.º 7
0
 // Token: 0x06000D63 RID: 3427 RVA: 0x00034AA4 File Offset: 0x00032CA4
 public static uint UINT(string key, Encoding encoding, uint seed)
 {
     return(MurmurHash2.UINT(encoding.GetBytes(key), seed));
 }
Ejemplo n.º 8
0
 public static int SINT(short[] key, uint seed)
 {
     return((int)MurmurHash2.UINT(key, (int)key.Length, seed));
 }
Ejemplo n.º 9
0
 public static uint UINT(long[] key, uint seed)
 {
     return(MurmurHash2.UINT(key, (int)key.Length, seed));
 }