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

1 2 3

  /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/chromium_org/third_party/skia/gm/
gm_json.py 117 GM_RELATIVE_URL_FORMATTER = '%s/%s/%s.png' # pass in (hash_type, test_name,
119 GM_RELATIVE_URL_PATTERN = '(.+)/(.+)/(.+).png' # matches (hash_type, test_name,
124 def CreateGmActualUrl(test_name, hash_type, hash_digest,
130 hash_type: string indicating the hash type used to generate hash_digest,
137 test_name=test_name, hash_type=hash_type, hash_digest=hash_digest))
140 def CreateGmRelativeUrl(test_name, hash_type, hash_digest):
149 hash_type: string indicating the hash type used to generate hash_digest,
153 return GM_RELATIVE_URL_FORMATTER % (hash_type, test_name, hash_digest)
157 """Splits the relative URL into (test_name, hash_type, hash_digest) tuple
    [all...]
  /external/skia/gm/
gm_json.py 111 GM_RELATIVE_URL_FORMATTER = '%s/%s/%s.png' # pass in (hash_type, test_name,
113 GM_RELATIVE_URL_PATTERN = '(.+)/(.+)/(.+).png' # matches (hash_type, test_name,
118 def CreateGmActualUrl(test_name, hash_type, hash_digest,
124 hash_type: string indicating the hash type used to generate hash_digest,
131 test_name=test_name, hash_type=hash_type, hash_digest=hash_digest))
134 def CreateGmRelativeUrl(test_name, hash_type, hash_digest):
143 hash_type: string indicating the hash type used to generate hash_digest,
147 return GM_RELATIVE_URL_FORMATTER % (hash_type, test_name, hash_digest)
151 """Splits the relative URL into (test_name, hash_type, hash_digest) tuple
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/task/
DownloadPackageTask.java 51 private static final String HASH_TYPE = "SHA-1";
141 ProvisionLogger.logd(HASH_TYPE + "-hashes matched, both are "
146 ProvisionLogger.loge(HASH_TYPE + "-hash of downloaded file does not match given hash.");
147 ProvisionLogger.loge(HASH_TYPE + "-hash of downloaded file: "
149 ProvisionLogger.loge(HASH_TYPE + "-hash provided by programmer: "
168 md = MessageDigest.getInstance(HASH_TYPE);
170 ProvisionLogger.loge("Hashing algorithm " + HASH_TYPE + " not supported.", e);
  /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);
  /external/chromium_org/third_party/brotli/src/brotli/enc/
backward_references.h 35 Hashers::Type hash_type,
  /frameworks/base/libs/hwui/utils/
TinyHashMap.h 37 hash_t hash = android::hash_type(key);
52 hash_t hash = android::hash_type(key);
Macros.h 30 friend inline hash_t hash_type(const Type& entry) { return entry.hash(); }
  /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]));
  /external/chromium_org/content/child/webcrypto/nss/
sha_nss.cc 96 HASH_HashType hash_type = WebCryptoAlgorithmToNSSHashType(algorithm_id_); local
98 if (hash_type == HASH_AlgNULL)
101 hash_context_ = HASH_Create(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));
  /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));
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/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/9/platforms/android-19/arch-arm/usr/include/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));
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/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/9/platforms/android-19/arch-mips/usr/include/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));
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/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/9/platforms/android-19/arch-x86/usr/include/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 128 hash_t hash = hash_type(key);
145 hash_t hash = hash_type(key);
164 hash_t hash = hash_type(key);
  /frameworks/base/libs/hwui/font/
Font.cpp 77 hash = JenkinsHashMix(hash, android::hash_type(mFontSize));
78 hash = JenkinsHashMix(hash, android::hash_type(mFlags));
79 hash = JenkinsHashMix(hash, android::hash_type(mItalicStyle));
80 hash = JenkinsHashMix(hash, android::hash_type(mScaleX));
81 hash = JenkinsHashMix(hash, android::hash_type(mStyle));
82 hash = JenkinsHashMix(hash, android::hash_type(mStrokeWidth));
84 hash = JenkinsHashMix(hash, android::hash_type(mHinting));
85 hash = JenkinsHashMix(hash, android::hash_type(mLookupTransform[SkMatrix::kMScaleX]));
86 hash = JenkinsHashMix(hash, android::hash_type(mLookupTransform[SkMatrix::kMScaleY]));
  /hardware/intel/img/psb_headers/DRM/cc54/inc/
pr_drm_api.h 121 uint32_t hash_type,
132 uint32_t hash_type,
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
download_actuals.py 80 (hash_type, hash_digest) = results_of_this_type[image_name]
82 test_name=test, hash_type=hash_type, hash_digest=hash_digest,
  /external/skia/gm/rebaseline_server/
download_actuals.py 78 (hash_type, hash_digest) = results_of_this_type[image_name]
80 test_name=test, hash_type=hash_type, hash_digest=hash_digest,
  /external/chromium_org/third_party/webrtc/base/
nssidentity.cc 305 HASH_HashType hash_type; local
308 hash_type = HASH_AlgSHA1;
312 hash_type = HASH_AlgSHA224;
315 hash_type = HASH_AlgSHA256;
317 hash_type = HASH_AlgSHA384;
319 hash_type = HASH_AlgSHA512;
324 ho = HASH_GetHashObject(hash_type);

Completed in 2285 milliseconds

1 2 3