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

  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
CustomFilterProgramInfo.cpp 83 uintptr_t hashCodes[6] = {
91 return StringHasher::hashMemory<sizeof(hashCodes)>(&hashCodes);
  /external/chromium_org/third_party/WebKit/Source/weborigin/
SecurityOriginHash.h 41 unsigned hashCodes[3] = {
46 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/chromium_org/third_party/WebKit/Source/core/platform/graphics/
FontPlatformData.h 133 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) };
134 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
FontCache.cpp 100 unsigned hashCodes[5] = {
107 return StringHasher::hashMemory<sizeof(hashCodes)>(hashCodes);
  /external/droiddriver/libs/
guava-13.0.jar 
  /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 1049 milliseconds