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

  /external/webkit/Source/JavaScriptCore/wtf/
StringHasher.h 91 template<typename T, UChar Converter(T)> static inline unsigned computeHash(const T* data, unsigned length)
108 template<typename T, UChar Converter(T)> static inline unsigned computeHash(const T* data)
128 template<typename T> static inline unsigned computeHash(const T* data, unsigned length)
130 return computeHash<T, defaultCoverter>(data, length);
133 template<typename T> static inline unsigned computeHash(const T* data)
135 return computeHash<T, defaultCoverter>(data);
141 return computeHash<UChar>(static_cast<const UChar*>(data), length / sizeof(UChar));
147 return computeHash<UChar>(static_cast<const UChar*>(data), size / sizeof(UChar));
SHA1.h 48 // computeHash has a side effect of resetting the state of the object.
49 void computeHash(Vector<uint8_t, 20>&);
SHA1.cpp 57 sha1.computeHash(digest);
129 void SHA1::computeHash(Vector<uint8_t, 20>& digest)
  /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 63 // HASHBYTES_TO_USE defines # of bytes returned by "computeHash(byte[])"
368 SHA1Impl.computeHash(seed);
376 SHA1Impl.computeHash(seed);
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontPlatformData.h 127 return computeHash();
131 unsigned computeHash() const;
FontPlatformDataWx.cpp 118 unsigned FontPlatformData::computeHash() const
131 StringHasher::computeHash(thisFont->GetFaceName().utf8_str().data())
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringHash.h 38 // FIXME: We should really figure out a way to put the computeHash function that's
107 return StringHasher::computeHash<UChar, foldCase<UChar> >(data, length);
117 return StringHasher::computeHash<char, foldCase<char> >(data, length);
AtomicString.cpp 90 return StringHasher::computeHash(c);
179 return StringHasher::computeHash(buf.s, buf.length);
204 ASSERT(buffer.hash == StringHasher::computeHash(buffer.characters, buffer.length));
StringImpl.h 139 ASSERT(hash == StringHasher::computeHash(m_data, m_length));
238 unsigned hash() const { if (!m_hash) m_hash = StringHasher::computeHash(m_data, m_length); return m_hash; }
  /frameworks/native/include/utils/
ZipFileRO.h 217 static unsigned int computeHash(const char* str, int len);
  /dalvik/libdex/
ZipArchive.cpp 92 static unsigned int computeHash(const char* str, int len)
318 hash = computeHash((const char*)ptr + kCDELen, fileNameLen);
428 unsigned int hash = computeHash(entryName, nameLen);
  /external/webkit/Source/JavaScriptCore/runtime/
Identifier.cpp 94 return StringHasher::computeHash<char>(c);
154 return StringHasher::computeHash<UChar>(buf.s, buf.length);
  /frameworks/native/libs/utils/
ZipFileRO.cpp 384 hash = computeHash((const char*)ptr + kCDELen, fileNameLen);
404 /*static*/ unsigned int ZipFileRO::computeHash(const char* str, int len)
447 unsigned int hash = computeHash(fileName, nameLen);
  /external/webkit/Source/WebCore/platform/graphics/
FontCache.cpp 98 inline unsigned computeHash(const FontPlatformDataCacheKey& fontKey)
113 return computeHash(font);
  /external/webkit/Source/WebCore/platform/
LinkHash.cpp 200 return AlreadyHashed::avoidDeletedValue(StringHasher::computeHash(url, length));
  /external/webkit/Source/WebCore/plugins/android/
PluginPackageAndroid.cpp 381 return StringHasher::computeHash(reinterpret_cast<const UChar*>(hashCodes), sizeof(hashCodes) / sizeof(UChar));
  /bootable/recovery/minzip/
Zip.c 136 static unsigned int computeHash(const char* name, int nameLen)
148 unsigned int itemHash = computeHash(pEntry->fileName, pEntry->fileNameLen);
508 unsigned int itemHash = computeHash(entryName, strlen(entryName));
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheStorage.cpp 96 return AlreadyHashed::avoidDeletedValue(StringHasher::computeHash(url.string().characters() + hostStart, hostEnd - hostStart));
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench.texteditor_3.6.1.r361_v20100714-0800.jar 

Completed in 372 milliseconds