hashMemory       1236 Source/core/css/resolver/StyleResolver.cpp     return StringHasher::hashMemory(properties, sizeof(MatchedProperties) * size);
hashMemory         36 Source/core/dom/ElementDataCache.cpp     return StringHasher::hashMemory(attributes.data(), attributes.size() * sizeof(Attribute));
hashMemory        151 Source/core/dom/PresentationAttributeStyle.cpp     unsigned attributeHash = StringHasher::hashMemory(key.attributesAndValues.data(), key.attributesAndValues.size() * sizeof(key.attributesAndValues[0]));
hashMemory        124 Source/core/dom/QualifiedName.h     return StringHasher::hashMemory<sizeof(QualifiedNameComponents)>(&buf);
hashMemory        165 Source/core/html/forms/FormController.cpp     return StringHasher::hashMemory<sizeof(FormElementKey)>(&key);
hashMemory        146 Source/core/rendering/TextAutosizer.cpp     return hashMemory(&podForHash, sizeof(podForHash));
hashMemory        167 Source/core/rendering/TextAutosizer.cpp     const unsigned combinedHashValue = hashMemory(hashes, sizeof(hashes));
hashMemory         66 Source/platform/fonts/FontCacheKey.h         return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
hashMemory        136 Source/platform/fonts/FontPlatformData.h         return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
hashMemory         66 Source/platform/image-decoders/gif/GIFImageDecoderTest.cpp     return StringHasher::hashMemory(bitmap.getPixels(), bitmap.getSize());
hashMemory         68 Source/platform/image-decoders/webp/WEBPImageDecoderTest.cpp     return StringHasher::hashMemory(bitmap.getPixels(), bitmap.getSize());
hashMemory         46 Source/platform/weborigin/SecurityOriginHash.h         return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
hashMemory        240 Source/wtf/StringHasher.h     static unsigned hashMemory(const void* data, unsigned length)
hashMemory        249 Source/wtf/StringHasher.h     template<size_t length> static unsigned hashMemory(const void* data)
hashMemory        252 Source/wtf/StringHasher.h         return hashMemory(data, length);
hashMemory        431 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory(0, 0));
hashMemory        432 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory(nullUChars, 0));
hashMemory        433 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory<0>(0));
hashMemory        434 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory<0>(nullUChars));
hashMemory        436 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::hashMemory(nullUChars, 2));
hashMemory        437 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::hashMemory<2>(nullUChars));
hashMemory        439 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::hashMemory(testAUChars, 10));
hashMemory        440 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::hashMemory<10>(testAUChars));
hashMemory        441 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(testBHash5 & 0xFFFFFF, StringHasher::hashMemory(testBUChars, 10));
hashMemory        442 Source/wtf/StringHasherTest.cpp     ASSERT_EQ(testBHash5 & 0xFFFFFF, StringHasher::hashMemory<10>(testBUChars));