Home | History | Annotate | Download | only in hash

Lines Matching refs:fromInt

156     assertEquals(0x0000000011111111L, Hashing.padToLong(HashCodes.fromInt(0x11111111)));
157 assertEquals(0x0000000099999999L, Hashing.padToLong(HashCodes.fromInt(0x99999999)));
219 checkSameResult(HashCode.fromInt(0x99999999), 0x0000000099999999L);
258 Hashing.combineOrdered(ImmutableList.of(HashCode.fromInt(32), HashCode.fromLong(32L)));
265 HashCode hash31 = HashCode.fromInt(31);
266 HashCode hash32 = HashCode.fromInt(32);
300 Hashing.combineUnordered(ImmutableList.of(HashCode.fromInt(32), HashCode.fromLong(32L)));
307 HashCode hash31 = HashCode.fromInt(31);
308 HashCode hash32 = HashCode.fromInt(32);
310 assertEquals(HashCode.fromInt(64), Hashing.combineUnordered(ImmutableList.of(hash32, hash32)));
311 assertEquals(HashCode.fromInt(96),