Searched refs:hashTwo (Results 1 – 2 of 2) sorted by relevance
/external/guava/guava-tests/test/com/google/common/collect/ |
D | MapMakerInternalMapTest.java | 428 int hashTwo = map.hash(keyTwo); in testNewEntry() local 429 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne); in testNewEntry() 435 assertEquals(hashTwo, entryTwo.getHash()); in testNewEntry() 453 int hashTwo = map.hash(keyTwo); in testCopyEntry() local 454 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne); in testCopyEntry() 473 assertEquals(hashTwo, copyTwo.getHash()); in testCopyEntry() 890 int hashTwo = map.hash(keyTwo); in testReclaimKey() local 891 DummyEntry<Object, Object> entryTwo = createDummyEntry(keyTwo, hashTwo, valueTwo, entryOne); in testReclaimKey() 903 assertFalse(segment.reclaimKey(entryTwo, hashTwo)); in testReclaimKey() 934 int hashTwo = map.hash(keyTwo); in testRemoveFromChain() local [all …]
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | LocalCacheTest.java | 941 int hashTwo = map.hash(keyTwo); in testNewEntry() local 942 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne); in testNewEntry() 948 assertEquals(hashTwo, entryTwo.getHash()); in testNewEntry() 966 int hashTwo = map.hash(keyTwo); in testCopyEntry() local 967 ReferenceEntry<Object, Object> entryTwo = map.newEntry(keyTwo, hashTwo, entryOne); in testCopyEntry() 986 assertEquals(hashTwo, copyTwo.getHash()); in testCopyEntry() 1526 int hashTwo = map.hash(keyTwo); in testReclaimKey() local 1527 DummyEntry<Object, Object> entryTwo = createDummyEntry(keyTwo, hashTwo, valueTwo, entryOne); in testReclaimKey() 1539 assertFalse(segment.reclaimKey(entryTwo, hashTwo)); in testReclaimKey() 1570 int hashTwo = map.hash(keyTwo); in testRemoveEntryFromChain() local [all …]
|