HomeSort by relevance Sort by last modified time
    Searched refs:hashMemory (Results 1 - 12 of 12) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontCacheKey.h 67 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/chromium_org/third_party/WebKit/Source/wtf/
StringHasher.h 183 static unsigned hashMemory(const void* data, unsigned length)
192 template<size_t length> static unsigned hashMemory(const void* data)
195 return hashMemory(data, length);
StringHasherTest.cpp 395 EXPECT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory(0, 0));
396 EXPECT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory(nullUChars, 0));
397 EXPECT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory<0>(0));
398 EXPECT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory<0>(nullUChars));
400 EXPECT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::hashMemory(nullUChars, 2));
401 EXPECT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::hashMemory<2>(nullUChars));
403 EXPECT_EQ(testAHash5 & 0xFFFFFF, StringHasher::hashMemory(testAUChars, 10));
404 EXPECT_EQ(testAHash5 & 0xFFFFFF, StringHasher::hashMemory<10>(testAUChars));
405 EXPECT_EQ(testBHash5 & 0xFFFFFF, StringHasher::hashMemory(testBUChars, 10));
406 EXPECT_EQ(testBHash5 & 0xFFFFFF, StringHasher::hashMemory<10>(testBUChars))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ElementDataCache.cpp 38 return StringHasher::hashMemory(attributes.data(), attributes.size() * sizeof(Attribute));
PresentationAttributeStyle.cpp 154 unsigned attributeHash = StringHasher::hashMemory(key.attributesAndValues.data(), key.attributesAndValues.size() * sizeof(key.attributesAndValues[0]));
QualifiedName.h 72 // We rely on StringHasher's hashMemory clearing out the top 8 bits when
151 return StringHasher::hashMemory<sizeof(QualifiedNameComponents)>(&buf);
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
SecurityOriginHash.h 46 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/cocoa/
FontPlatformDataCocoa.mm 40 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
FormController.cpp 165 return StringHasher::hashMemory<sizeof(FormElementKey)>(&key);
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/gif/
GIFImageDecoderTest.cpp 65 return StringHasher::hashMemory(bitmap.getPixels(), bitmap.getSize());
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoderTest.cpp 67 return StringHasher::hashMemory(bitmap.getPixels(), bitmap.getSize());
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.cpp     [all...]

Completed in 2649 milliseconds