Here you can find the source of murmur3fmix(int value)
Parameter | Description |
---|---|
value | the value to hash |
public static int murmur3fmix(int value)
//package com.java2s; public class Main { /**//from w w w . ja v a2 s . c o m * The Murmur3 Fmix function. * @param value the value to hash * @return the result of the hash */ public static int murmur3fmix(int value) { value ^= value >>> 16; value *= 0x85ebca6b; value ^= value >>> 13; value *= 0xc2b2ae35; value ^= value >>> 16; return value; } }