MCPcopy Index your code
hub / github.com/clojure/clojure / mixH1

Method mixH1

src/jvm/clojure/lang/Murmur3.java:133–138  ·  view source on GitHub ↗
(int h1, int k1)

Source from the content-addressed store, hash-verified

131}
132
133private static int mixH1(int h1, int k1){
134 h1 ^= k1;
135 h1 = Integer.rotateLeft(h1, 13);
136 h1 = h1 * 5 + 0xe6546b64;
137 return h1;
138}
139
140// Finalization mix - force all bits of a hash block to avalanche
141private static int fmix(int h1, int length){

Callers 4

hashIntMethod · 0.95
hashLongMethod · 0.95
hashUnencodedCharsMethod · 0.95
mixCollHashMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected