HomeSort by relevance Sort by last modified time
    Searched defs:hash_type (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/crypto/third_party/nss/
secsign.cc 66 HASH_HashType hash_type; local
69 hash_type = HASH_AlgSHA1;
73 hash_type = HASH_AlgSHA224;
77 hash_type = HASH_AlgSHA256;
80 hash_type = HASH_AlgSHA384;
83 hash_type = HASH_AlgSHA512;
91 std::vector<uint8> hash_data(HASH_ResultLen(hash_type));
93 hash_type, &hash_data[0], input->data, input->len);
  /frameworks/base/libs/hwui/
GradientCache.h 102 inline hash_t hash_type(const GradientCacheEntry& entry) { function in namespace:android::uirenderer
PatchCache.h 127 friend inline hash_t hash_type(const PatchDescription& entry) { function in struct:android::uirenderer::PatchCache::PatchDescription
TextDropShadowCache.h 111 inline hash_t hash_type(const ShadowText& entry) { function in namespace:android::uirenderer
PathCache.h 171 friend inline hash_t hash_type(const PathDescription& entry) { function in struct:android::uirenderer::PathDescription
  /frameworks/base/libs/hwui/font/
Font.h 159 inline hash_t hash_type(const Font::FontDescription& entry) { function in namespace:android::uirenderer
  /frameworks/rs/server/
TypeHelpers.h 269 hash_t hash_type(const TKey& key);
274 template <> inline hash_t hash_type(const T& value) { return hash_t(value); }
276 template <> inline hash_t hash_type(const T& value) { \
279 template <> inline hash_t hash_type(const T& value) { \
280 return hash_type(*reinterpret_cast<const R*>(&value)); }
294 template <typename T> inline hash_t hash_type(T* const & value) { function in namespace:android
295 return hash_type(uintptr_t(value));
  /system/core/include/utils/
TypeHelpers.h 269 hash_t hash_type(const TKey& key);
274 template <> inline hash_t hash_type(const T& value) { return hash_t(value); }
276 template <> inline hash_t hash_type(const T& value) { \
279 template <> inline hash_t hash_type(const T& value) { \
280 return hash_type(*reinterpret_cast<const R*>(&value)); }
294 template <typename T> inline hash_t hash_type(T* const & value) { function in namespace:android
295 return hash_type(uintptr_t(value));
  /system/core/libutils/tests/
LruCache_test.cpp 56 template<> inline hash_t hash_type(const ComplexKey& value) { function in namespace:android
57 return hash_type(value.k);
BasicHashtable_test.cpp 59 template<> inline hash_t hash_type(const ComplexKey& value) { function in namespace:android
60 return hash_type(value.k);
124 return h.add(hash_type(key), key_value_pair_t<TKey, TValue>(key, value));
130 return h.find(index, hash_type(key), key);
169 "hash_type(key)=0x%08x",
170 i, collision, present, hash, key, value, hash_type(key));
  /external/chromium_org/third_party/libjingle/source/talk/base/
nssidentity.cc 274 HASH_HashType hash_type; local
277 hash_type = HASH_AlgSHA1;
281 hash_type = HASH_AlgSHA224;
284 hash_type = HASH_AlgSHA256;
286 hash_type = HASH_AlgSHA384;
288 hash_type = HASH_AlgSHA512;
293 ho = HASH_GetHashObject(hash_type);
  /frameworks/rs/cpp/util/
TypeHelpers.h 269 hash_t hash_type(const TKey& key);
274 template <> inline hash_t hash_type(const T& value) { return hash_t(value); }
276 template <> inline hash_t hash_type(const T& value) { \
279 template <> inline hash_t hash_type(const T& value) { \
280 return hash_type(*reinterpret_cast<const R*>(&value)); }
294 template <typename T> inline hash_t hash_type(T* const & value) { function in namespace:android::RSC
295 return hash_type(uintptr_t(value));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/
types_traits.hpp 88 typedef _Th hash_type; typedef in struct:__gnu_pbds::detail::stored_hash
89 hash_type m_hash;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/detail/
types_traits.hpp 88 typedef _Th hash_type; typedef in struct:__gnu_pbds::detail::stored_hash
89 hash_type m_hash;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/detail/
types_traits.hpp 88 typedef _Th hash_type; typedef in struct:__gnu_pbds::detail::stored_hash
89 hash_type m_hash;
  /external/chromium_org/content/renderer/webcrypto/
webcrypto_impl_nss.cc 623 HASH_HashType hash_type = WebCryptoAlgorithmToNSSHashType(algorithm); local
624 if (hash_type == HASH_AlgNULL) {
628 HASHContext* context = HASH_Create(hash_type);
  /frameworks/base/core/jni/android/graphics/
TextLayoutCache.h 118 inline hash_t hash_type(const TextLayoutCacheKey& key) { function in namespace:android

Completed in 2267 milliseconds