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

  /external/webkit/Source/WebCore/platform/network/
ProtectionSpaceHash.h 37 unsigned hashCodes[5] = {
45 unsigned codeCount = sizeof(hashCodes);
48 codeCount -= sizeof(hashCodes[0]);
49 return StringHasher::hashMemory(hashCodes, codeCount);
  /external/webkit/Source/WebCore/page/
SecurityOriginHash.h 41 unsigned hashCodes[3] = {
46 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/webkit/Source/WebCore/platform/cf/
SchedulePair.h 75 uintptr_t hashCodes[2] = { reinterpret_cast<uintptr_t>(pair->runLoop()), pair->mode() ? CFHash(pair->mode()) : 0 };
76 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/webkit/Source/WebCore/platform/graphics/pango/
FontPlatformData.h 77 uintptr_t hashCodes[1] = { reinterpret_cast<uintptr_t>(m_scaledFont) };
78 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/webkit/Source/JavaScriptCore/profiler/
CallIdentifier.h 61 unsigned hashCodes[3] = {
66 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontPlatformDataWx.cpp 125 uintptr_t hashCodes[6] = {
134 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/webkit/Source/WebCore/plugins/win/
PluginPackageWin.cpp 312 const unsigned hashCodes[] = {
318 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/webkit/Source/WebCore/platform/graphics/
FontPlatformData.h 260 uintptr_t hashCodes[3] = { (uintptr_t)m_font, m_widthVariant, m_textOrientation << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_syntheticOblique };
261 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
FontCache.cpp 100 unsigned hashCodes[5] = {
107 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/webkit/Source/WebCore/plugins/
PluginPackage.cpp 346 unsigned hashCodes[] = {
351 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/webkit/Source/WebCore/plugins/android/
PluginPackageAndroid.cpp 375 const unsigned hashCodes[] = {
381 return StringHasher::computeHash(reinterpret_cast<const UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
  /external/webkit/Source/WebCore/platform/graphics/wince/
FontPlatformData.cpp 146 unsigned hashCodes[] = {
151 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);

Completed in 561 milliseconds