Home | History | Annotate | Download | only in hash

Lines Matching defs:hash32

132     HashCode hash32 = HashCodes.fromInt(32);
133 assertEquals(hash32, Hashing.combineOrdered(ImmutableList.of(hash32)));
135 Hashing.combineOrdered(ImmutableList.of(hash32, hash32)));
137 Hashing.combineOrdered(ImmutableList.of(hash32, hash32, hash32)));
139 Hashing.combineOrdered(ImmutableList.of(hash31, hash32)).equals(
140 Hashing.combineOrdered(ImmutableList.of(hash32, hash31))));
182 HashCode hash32 = HashCodes.fromInt(32);
183 assertEquals(hash32, Hashing.combineUnordered(ImmutableList.of(hash32)));
184 assertEquals(HashCodes.fromInt(64), Hashing.combineUnordered(ImmutableList.of(hash32, hash32)));
186 Hashing.combineUnordered(ImmutableList.of(hash32, hash32, hash32)));
188 Hashing.combineUnordered(ImmutableList.of(hash31, hash32)),
189 Hashing.combineUnordered(ImmutableList.of(hash32, hash31)));