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

Method fmix

src/jvm/clojure/lang/Murmur3.java:141–149  ·  view source on GitHub ↗
(int h1, int length)

Source from the content-addressed store, hash-verified

139
140// Finalization mix - force all bits of a hash block to avalanche
141private static int fmix(int h1, int length){
142 h1 ^= length;
143 h1 ^= h1 >>> 16;
144 h1 *= 0x85ebca6b;
145 h1 ^= h1 >>> 13;
146 h1 *= 0xc2b2ae35;
147 h1 ^= h1 >>> 16;
148 return h1;
149}
150
151}

Callers 4

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

Calls

no outgoing calls

Tested by

no test coverage detected