Searched refs:hashCodes (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DProtectionSpaceHash.h37 unsigned hashCodes[5] = { local
45 unsigned codeCount = sizeof(hashCodes);
48 codeCount -= sizeof(hashCodes[0]);
49 return StringHasher::hashMemory(hashCodes, codeCount);
/macosx-10.10/WebCore-7600.1.25/page/
H A DSecurityOriginHash.h41 unsigned hashCodes[3] = { local
46 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
/macosx-10.10/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/
H A DIDBIdentifier.h64 uint64_t hashCodes[2] = { reinterpret_cast<uint64_t>(m_connection), static_cast<uint64_t>(m_identifier) }; local
65 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
H A DUniqueIDBDatabaseIdentifier.cpp60 unsigned hashCodes[7] = { local
69 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
/macosx-10.10/WTF-7600.1.24/wtf/
H A DSchedulePair.h78 uintptr_t hashCodes[2] = { reinterpret_cast<uintptr_t>(pair->runLoop()), pair->mode() ? CFHash(pair->mode()) : 0 }; local
79 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
/macosx-10.10/JavaScriptCore-7600.1.17/profiler/
H A DCallIdentifier.h65 unsigned hashCodes[4] = { local
71 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DFontPlatformData.h181 uintptr_t hashCodes[3] = { (uintptr_t)m_font, m_widthVariant, static_cast<uintptr_t>(m_isPrinterFont << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_syntheticOblique) };
184 uintptr_t hashCodes[3] = { static_cast<uintptr_t>(CFHash(m_font)), m_widthVariant, static_cast<uintptr_t>(m_isEmoji << 4 | m_isPrinterFont << 3 | m_orientation << 2 | m_syntheticBold << 1 | m_syntheticOblique) };
186 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
H A DFont.cpp274 Vector<unsigned, 7> hashCodes; local
275 hashCodes.reserveInitialCapacity(4 + key.families.size());
277 hashCodes.uncheckedAppend(key.fontDescriptionCacheKey.computeHash());
278 hashCodes.uncheckedAppend(key.fontSelectorId);
279 hashCodes.uncheckedAppend(key.fontSelectorVersion);
280 hashCodes.uncheckedAppend(key.fontSelectorFlags);
282 hashCodes.uncheckedAppend(key.families[i].impl() ? CaseFoldingHash::hash(key.families[i]) : 0);
284 return StringHasher::hashMemory(hashCodes.data(), hashCodes.size() * sizeof(unsigned));
/macosx-10.10/WebCore-7600.1.25/plugins/
H A DPluginPackage.cpp334 } hashCodes; local
336 hashCodes.hash = m_path.impl()->hash();
337 hashCodes.modifiedDate = m_lastModified;
339 return StringHasher::hashMemory<sizeof(hashCodes)>(&hashCodes);
/macosx-10.10/WebCore-7600.1.25/plugins/win/
H A DPluginPackageWin.cpp312 const unsigned hashCodes[] = {
318 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/wince/
H A DFontPlatformData.cpp140 unsigned hashCodes[] = { local
145 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DRenderStyle.cpp295 unsigned hashCodes[2] = { local
299 return StringHasher::computeHash(reinterpret_cast<UChar*>(hashCodes), 2 * sizeof(unsigned) / sizeof(UChar));

Completed in 128 milliseconds