Skip to main content

Usage: More…

Classes

class  LongPair
 128 bits of state More…
 

Static Public Member Functions

static void murmurhash3_x64_128 (byte[] key, uint offset, uint len, int seed, out LongPair output)
 Returns the MurmurHash3_x64_128 hash, placing the result in output
 
static void murmurhash3_x64_128 (byte[] key, uint offset, uint len, int seed, out LongPair output)
 Returns the MurmurHash3_x64_128 hash, placing the result in output
 

Detailed Description

Usage:

System.Text.Encoding encoding = new System.Text.UTF8Encoding();
byte[] input = encoding.GetBytes( value );
MurMurHash3.murmurhash3_x64_128( input, 0, (uint)input.Length, 10, out murmur );
// Use the values as murmur.val1 and murmur.val2
static void murmurhash3_x64_128(byte[] key, uint offset, uint len, int seed, out LongPair output)
Returns the MurmurHash3_x64_128 hash, placing the result in output

Definition at line 19 of file MurMurHash3.cs.

Member Function Documentation

◆ murmurhash3_x64_128() [1/2]

static void kinetica.MurMurHash3.murmurhash3_x64_128 (byte[]key,
uintoffset,
uintlen,
intseed,
out LongPairoutput )
inlinestatic

Returns the MurmurHash3_x64_128 hash, placing the result in output

Definition at line 57 of file MurMurHash3.cs.

◆ murmurhash3_x64_128() [2/2]

static void kinetica.MurMurHash3.murmurhash3_x64_128 (byte[]key,
uintoffset,
uintlen,
intseed,
out LongPairoutput )
inlinestatic

Returns the MurmurHash3_x64_128 hash, placing the result in output

Definition at line 57 of file MurMurHash3.cs.


The documentation for this class was generated from the following files: