HomeSort by relevance Sort by last modified time
    Searched refs:computeHash (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/WebCore/platform/graphics/wx/
FontPlatformDataWx.cpp 106 unsigned FontPlatformData::computeHash() const {
114 StringImpl::computeHash(thisFont->GetFaceName().utf8_str()) };
116 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
FontPlatformData.h 97 return computeHash();
101 unsigned computeHash() const;
  /external/webkit/JavaScriptCore/runtime/
UStringImpl.h 157 unsigned hash() const { if (!m_hash) m_hash = computeHash(data(), m_length); return m_hash; }
159 void setHash(unsigned hash) { ASSERT(hash == computeHash(data(), m_length)); m_hash = hash; } // fast path for Identifiers
175 static unsigned computeHash(const UChar* s, int length) { ASSERT(length >= 0); return WTF::stringHash(s, length); }
176 static unsigned computeHash(const char* s, int length) { ASSERT(length >= 0); return WTF::stringHash(s, length); }
177 static unsigned computeHash(const char* s) { return WTF::stringHash(s); }
Identifier.cpp 104 return UString::Rep::computeHash(c);
166 return UString::Rep::computeHash(buf.s, buf.length);
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
SHA1Impl.java 32 * "void updateHash(int[], byte[], int, int)" and "void computeHash(int[])", -
38 * the "computeHash(int[])" method is invoked on the frame to compute updated hash,
43 * The "computeHash(..)" method generates a 160 bit hash value using
74 static void computeHash(int[] arrW) {
150 * the "computeHash(int[])" method is invoked on the array to compute updated hash,
199 computeHash(intArray);
223 computeHash(intArray); // buffer is full, computing hash
SHA1_MessageDigestImpl.java 63 * The method performs final actions and invokes the "computeHash(int[])" method.
66 * the "computeHash(int[])" method is invoked second time. <BR>
110 SHA1Impl.computeHash(buffer);
118 SHA1Impl.computeHash(buffer);
SHA1PRNG_SecureRandomImpl.java 61 // HASHBYTES_TO_USE defines # of bytes returned by "computeHash(byte[])"
367 SHA1Impl.computeHash(seed);
375 SHA1Impl.computeHash(seed);
  /external/skia/src/gl/
SkTextureCache.h 35 this->computeHash();
70 void computeHash() {
  /external/webkit/JavaScriptCore/profiler/
CallIdentifier.h 63 return UString::Rep::computeHash(reinterpret_cast<char*>(hashCodes), sizeof(hashCodes));
  /external/webkit/WebCore/page/
SecurityOriginHash.h 46 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
  /external/webkit/WebCore/platform/cf/
SchedulePair.h 76 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
  /external/webkit/WebCore/platform/graphics/chromium/
FontPlatformDataChromiumWin.h 105 return StringImpl::computeHash(reinterpret_cast<const UChar*>(&m_hfont), sizeof(HFONT) / sizeof(UChar));
  /external/webkit/WebCore/platform/network/
ProtectionSpaceHash.h 49 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), codeCount);
  /external/webkit/WebCore/platform/graphics/gtk/
FontPlatformData.h 99 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
  /external/webkit/WebCore/platform/graphics/mac/
FontPlatformData.h 100 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
  /frameworks/base/include/utils/
ZipFileRO.h 201 static unsigned int computeHash(const char* str, int len);
  /external/webkit/WebCore/platform/text/
StringImpl.h 107 unsigned hash() { if (m_hash == 0) m_hash = computeHash(m_data, m_length); return m_hash; }
109 inline static unsigned computeHash(const UChar* data, unsigned length) { return WTF::stringHash(data, length); }
110 inline static unsigned computeHash(const char* data) { return WTF::stringHash(data); }
AtomicString.cpp 51 return StringImpl::computeHash(c);
137 return StringImpl::computeHash(buf.s, buf.length);
162 ASSERT(buffer.hash == StringImpl::computeHash(buffer.characters, buffer.length));
  /external/webkit/WebCore/platform/graphics/win/
FontPlatformData.h 125 return StringImpl::computeHash(reinterpret_cast<const UChar*>(&m_hfont), sizeof(HFONT) / sizeof(UChar));
  /external/webkit/WebCore/platform/graphics/
FontCache.cpp 89 inline unsigned computeHash(const FontPlatformDataCacheKey& fontKey)
97 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
103 return computeHash(font);
  /external/webkit/WebCore/platform/
LinkHash.cpp 152 return AlreadyHashed::avoidDeletedValue(StringImpl::computeHash(url, length));
  /external/webkit/WebCore/svg/
SVGAnimatedTemplate.h 77 return StringImpl::computeHash(reinterpret_cast<const UChar*>(&key), sizeof(SVGAnimatedTypeWrapperKey) / sizeof(UChar));
  /dalvik/libdex/
ZipArchive.c 89 static unsigned int computeHash(const char* str, int len)
307 hash = computeHash((const char*)ptr + kCDELen, fileNameLen);
417 unsigned int hash = computeHash(entryName, nameLen);
  /frameworks/base/libs/utils/
ZipFileRO.cpp 365 hash = computeHash((const char*)ptr + kCDELen, fileNameLen);
385 /*static*/ unsigned int ZipFileRO::computeHash(const char* str, int len)
428 unsigned int hash = computeHash(fileName, nameLen);
  /external/webkit/WebCore/plugins/
PluginPackage.cpp 321 return StringImpl::computeHash(reinterpret_cast<UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));

Completed in 539 milliseconds

1 2