HomeSort by relevance Sort by last modified time
    Searched refs:hashCodes (Results 1 - 18 of 18) 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/guava/guava-tests/test/com/google/common/hash/
HashingTest.java 34 assertEquals(0x1111111111111111L, Hashing.padToLong(HashCodes.fromLong(0x1111111111111111L)));
35 assertEquals(0x9999999999999999L, Hashing.padToLong(HashCodes.fromLong(0x9999999999999999L)));
36 assertEquals(0x0000000011111111L, Hashing.padToLong(HashCodes.fromInt(0x11111111)));
37 assertEquals(0x0000000099999999L, Hashing.padToLong(HashCodes.fromInt(0x99999999)));
97 checkSameResult(HashCodes.fromLong(1), 1);
98 checkSameResult(HashCodes.fromLong(0x9999999999999999L), 0x9999999999999999L);
99 checkSameResult(HashCodes.fromInt(0x99999999), 0x0000000099999999L);
124 Hashing.combineOrdered(ImmutableList.of(HashCodes.fromInt(32), HashCodes.fromLong(32L)));
131 HashCode hash31 = HashCodes.fromInt(31)
    [all...]
  /external/guava/guava/src/com/google/common/hash/
Hashing.java 217 * @throws IllegalArgumentException if {@code hashCodes} is empty, or the hash codes
220 public static HashCode combineOrdered(Iterable<HashCode> hashCodes) {
221 Iterator<HashCode> iterator = hashCodes.iterator();
225 for (HashCode hashCode : hashCodes) {
228 "All hashcodes must have the same bit length.");
233 return HashCodes.fromBytes(resultBytes);
243 * @throws IllegalArgumentException if {@code hashCodes} is empty, or the hash codes
246 public static HashCode combineUnordered(Iterable<HashCode> hashCodes) {
247 Iterator<HashCode> iterator = hashCodes.iterator();
250 for (HashCode hashCode : hashCodes) {
    [all...]
  /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);
  /prebuilts/devtools/tools/lib/
guava-13.0.1.jar 
  /prebuilts/tools/common/gradle-plugins/repository/com/google/guava/guava/14.0/
guava-14.0.jar 
  /prebuilts/tools/common/guava-tools/
guava-13.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/13.0.1/
guava-13.0.1.jar 

Completed in 143 milliseconds