/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);
|
/external/skia/gm/ |
gm_json.py | 95 def CreateGmActualUrl(test_name, hash_type, hash_digest, 101 hash_type: string indicating the hash type used to generate hash_digest, 106 return '%s/%s/%s/%s.png' % (gm_actuals_root_url, hash_type, test_name,
|
/external/skia/tools/ |
verify_images_for_gm_results.py | 25 def FileNameToGSURL(filename, hash_type, hash_value): 31 hash_type: string; the type of the checksum. 37 return '%s/%s/%s/%s.png' % (GS_URL, hash_type, test_name, hash_value) 61 hash_type, hash_value = json_content[dict_type][result_type][result] 62 gs_url = FileNameToGSURL(result, hash_type, str(hash_value))
|
svndiff.py | 120 def _CreateGSUrl(imagename, hash_type, hash_digest): 125 hash_type: string indicating the hash type used to generate hash_digest, 131 hash_type=hash_type, 156 hash_type=gm_json.JSONKEY_HASHTYPE_BITMAP_64BITMD5, 167 hash_type=gm_json.JSONKEY_HASHTYPE_BITMAP_64BITMD5,
|
/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 | 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));
|
LruCache.h | 123 hash_t hash = hash_type(key); 140 hash_t hash = hash_type(key); 159 hash_t hash = hash_type(key);
|
/external/chromium_org/crypto/ |
ec_signature_creator_nss.cc | 27 HASH_HashType hash_type, 36 std::vector<uint8> hash_data(HASH_ResultLen(hash_type)); 38 hash_type, &hash_data[0], input->data, input->len);
|
/frameworks/base/libs/hwui/ |
TextDropShadowCache.cpp | 36 hash = JenkinsHashMix(hash, android::hash_type(radius)); 37 hash = JenkinsHashMix(hash, android::hash_type(textSize)); 38 hash = JenkinsHashMix(hash, android::hash_type(typeface)); 40 hash = JenkinsHashMix(hash, android::hash_type(italicStyle)); 41 hash = JenkinsHashMix(hash, android::hash_type(scaleX)); 47 hash = JenkinsHashMix(hash, android::hash_type(positions[i]));
|
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
|
GradientCache.h | 102 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 | 70 hash = JenkinsHashMix(hash, android::hash_type(miter)); 71 hash = JenkinsHashMix(hash, android::hash_type(strokeWidth)); 72 hash = JenkinsHashMix(hash, android::hash_type(pathEffect));
|
/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/base/libs/hwui/font/ |
Font.cpp | 78 hash = JenkinsHashMix(hash, android::hash_type(mFontSize)); 79 hash = JenkinsHashMix(hash, android::hash_type(mFlags)); 80 hash = JenkinsHashMix(hash, android::hash_type(mItalicStyle)); 81 hash = JenkinsHashMix(hash, android::hash_type(mScaleX)); 82 hash = JenkinsHashMix(hash, android::hash_type(mStyle)); 83 hash = JenkinsHashMix(hash, android::hash_type(mStrokeWidth)); 85 hash = JenkinsHashMix(hash, android::hash_type(mHinting)); 86 hash = JenkinsHashMix(hash, android::hash_type(mLookupTransform[SkMatrix::kMScaleX])); 87 hash = JenkinsHashMix(hash, android::hash_type(mLookupTransform[SkMatrix::kMScaleY]));
|
Font.h | 159 inline hash_t hash_type(const Font::FontDescription& entry) { function in namespace:android::uirenderer
|
/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;
|
/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/skia/gm/rebaseline_server/ |
results.py | 275 test_name=test, hash_type=expected_hashtype, 278 test_name=test, hash_type=actual_hashtype,
|
/frameworks/base/core/jni/android/graphics/ |
TextLayoutCache.cpp | 300 hash = JenkinsHashMix(hash, hash_type(typeface)); 301 hash = JenkinsHashMix(hash, hash_type(textSize)); 302 hash = JenkinsHashMix(hash, hash_type(textSkewX)); 303 hash = JenkinsHashMix(hash, hash_type(textScaleX)); [all...] |