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

  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedPropertyDescription.h 72 return StringHasher::hashMemory<sizeof(SVGAnimatedPropertyDescription)>(&key);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentSharedObjectPool.cpp 50 return StringHasher::hashMemory(m_attributes, m_attributeCount * sizeof(Attribute));
QualifiedName.h 125 return StringHasher::hashMemory<sizeof(QualifiedNameComponents)>(&buf);
Element.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterProgramInfo.cpp 91 return StringHasher::hashMemory<sizeof(hashCodes)>(&hashCodes);
  /external/chromium_org/third_party/WebKit/Source/weborigin/
SecurityOriginHash.h 46 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/
FontPlatformDataChromiumWin.h 136 return StringHasher::hashMemory<sizeof(HFONT)>(&m_hfont);
  /external/chromium_org/third_party/WebKit/Source/wtf/
StringHasher.h 240 static unsigned hashMemory(const void* data, unsigned length)
249 template<size_t length> static unsigned hashMemory(const void* data)
252 return hashMemory(data, length);
  /external/chromium_org/third_party/WebKit/Source/wtf/tests/
StringHasher.cpp 431 ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory(0, 0));
432 ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory(nullUChars, 0));
433 ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory<0>(0));
434 ASSERT_EQ(emptyStringHash & 0xFFFFFF, StringHasher::hashMemory<0>(nullUChars));
436 ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::hashMemory(nullUChars, 2));
437 ASSERT_EQ(singleNullCharacterHash & 0xFFFFFF, StringHasher::hashMemory<2>(nullUChars));
439 ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::hashMemory(testAUChars, 10));
440 ASSERT_EQ(testAHash5 & 0xFFFFFF, StringHasher::hashMemory<10>(testAUChars));
441 ASSERT_EQ(testBHash5 & 0xFFFFFF, StringHasher::hashMemory(testBUChars, 10));
442 ASSERT_EQ(testBHash5 & 0xFFFFFF, StringHasher::hashMemory<10>(testBUChars))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FontPlatformData.h 134 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
Gradient.cpp 224 unsigned parametersHash = StringHasher::hashMemory(&parameters, sizeof(parameters));
225 unsigned stopHash = StringHasher::hashMemory(m_stops.data(), m_stops.size() * sizeof(ColorStop));
FontCache.cpp 107 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/chromium_org/third_party/WebKit/Source/core/html/
FormController.cpp 164 return StringHasher::hashMemory<sizeof(FormElementKey)>(&key);
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/gif/
GIFImageDecoderTest.cpp 68 return StringHasher::hashMemory(bitmap.getPixels(), bitmap.getSize());
  /external/chromium_org/third_party/WebKit/Source/core/platform/image-decoders/webp/
WEBPImageDecoderTest.cpp 70 return StringHasher::hashMemory(bitmap.getPixels(), bitmap.getSize());
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.cpp     [all...]

Completed in 430 milliseconds