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

Method mixK1

src/jvm/clojure/lang/Murmur3.java:126–131  ·  view source on GitHub ↗
(int k1)

Source from the content-addressed store, hash-verified

124}
125
126private static int mixK1(int k1){
127 k1 *= C1;
128 k1 = Integer.rotateLeft(k1, 15);
129 k1 *= C2;
130 return k1;
131}
132
133private static int mixH1(int h1, int k1){
134 h1 ^= k1;

Callers 4

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

Calls

no outgoing calls

Tested by

no test coverage detected