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

1 2

  /external/libchrome/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_t> hash_data(HASH_ResultLen(hash_type));
93 hash_type, &hash_data[0], input->data, input->len);
  /toolchain/binutils/binutils-2.25/include/mach-o/
codesign.h 55 unsigned char hash_type[1]; member in struct:mach_o_codesign_codedirectory_external_v1
71 unsigned char hash_type; member in struct:mach_o_codesign_codedirectory_v1
77 /* Value for hash_type. */
  /frameworks/base/libs/hwui/utils/
Macros.h 30 friend inline hash_t hash_type(const Type& entry) { return entry.hash(); }
  /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));
  /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 276 hash_t hash_type(const TKey& key);
281 template <> inline hash_t hash_type(const T& value) { return hash_t(value); }
283 template <> inline hash_t hash_type(const T& value) { \
286 template <> inline hash_t hash_type(const T& value) { \
287 return hash_type(*reinterpret_cast<const R*>(&value)); }
301 template <typename T> inline hash_t hash_type(T* const & value) { function in namespace:android
302 return hash_type(uintptr_t(value));
LruCache.h 72 return hash_type(entry->key);
  /frameworks/base/libs/hwui/
TextDropShadowCache.cpp 34 hash = JenkinsHashMix(hash, android::hash_type(radius));
35 hash = JenkinsHashMix(hash, android::hash_type(textSize));
36 hash = JenkinsHashMix(hash, android::hash_type(typeface));
38 hash = JenkinsHashMix(hash, android::hash_type(italicStyle));
39 hash = JenkinsHashMix(hash, android::hash_type(scaleX));
46 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
PatchCache.h 128 friend inline hash_t hash_type(const PatchDescription& entry) { function in struct:android::uirenderer::PatchCache::PatchDescription
TextDropShadowCache.h 106 inline hash_t hash_type(const ShadowText& entry) { function in namespace:android::uirenderer
GradientCache.h 95 inline hash_t hash_type(const GradientCacheEntry& entry) { function in namespace:android::uirenderer
GradientCache.cpp 45 hash = JenkinsHashMix(hash, android::hash_type(colors[i]));
46 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
PathCache.cpp 87 hash = JenkinsHashMix(hash, android::hash_type(miter));
88 hash = JenkinsHashMix(hash, android::hash_type(strokeWidth));
89 hash = JenkinsHashMix(hash, android::hash_type(pathEffect));
TessellationCache.cpp 83 hash = JenkinsHashMix(hash, android::hash_type(strokeWidth));
84 hash = JenkinsHashMix(hash, android::hash_type(scaleX));
85 hash = JenkinsHashMix(hash, android::hash_type(scaleY));
PatchCache.cpp 66 uint32_t hash = JenkinsHashMix(0, android::hash_type(mPatch));
  /frameworks/base/tools/aapt2/process/
SymbolTable.h 36 inline android::hash_t hash_type(const ResourceName& name) { function in namespace:aapt
45 inline android::hash_t hash_type(const ResourceId& id) { function in namespace:aapt
46 return android::hash_type(id.id);
  /frameworks/base/libs/hwui/font/
Font.cpp 71 hash = JenkinsHashMix(hash, android::hash_type(mFontSize));
72 hash = JenkinsHashMix(hash, android::hash_type(mFlags));
73 hash = JenkinsHashMix(hash, android::hash_type(mItalicStyle));
74 hash = JenkinsHashMix(hash, android::hash_type(mScaleX));
75 hash = JenkinsHashMix(hash, android::hash_type(mStyle));
76 hash = JenkinsHashMix(hash, android::hash_type(mStrokeWidth));
78 hash = JenkinsHashMix(hash, android::hash_type(mHinting));
79 hash = JenkinsHashMix(hash, android::hash_type(mLookupTransform[SkMatrix::kMScaleX]));
80 hash = JenkinsHashMix(hash, android::hash_type(mLookupTransform[SkMatrix::kMScaleY]));
Font.h 164 inline hash_t hash_type(const Font::FontDescription& entry) { function in namespace:android::uirenderer
  /frameworks/minikin/include/minikin/
FontFamily.h 78 inline hash_t hash_type(const FontStyle &style) { function in namespace:android
  /system/core/libutils/tests/
LruCache_test.cpp 90 template<> inline android::hash_t hash_type(const ComplexKey& value) { function in namespace:android
91 return hash_type(value.k);
94 template<> inline android::hash_t hash_type(const KeyWithPointer& value) { function in namespace:android
95 return hash_type(*value.ptr);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/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/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/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/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/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/current/sources/cxx-stl/gnu-libstdc++/4.9/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;
  /frameworks/minikin/libs/minikin/
Layout.cpp 245 hash = JenkinsHashMix(hash, hash_type(mStyle));
246 hash = JenkinsHashMix(hash, hash_type(mSize));
247 hash = JenkinsHashMix(hash, hash_type(mScaleX));
248 hash = JenkinsHashMix(hash, hash_type(mSkewX));
249 hash = JenkinsHashMix(hash, hash_type(mLetterSpacing));
250 hash = JenkinsHashMix(hash, hash_type(mPaintFlags));
251 hash = JenkinsHashMix(hash, hash_type(mHyphenEdit.hasHyphen()));
252 hash = JenkinsHashMix(hash, hash_type(mIsRtl));
257 hash_t hash_type(const LayoutCacheKey& key) { function in namespace:android
    [all...]

Completed in 572 milliseconds

1 2