Searched defs:hash (Results 26 - 38 of 38) sorted by relevance

12

/frameworks/base/tools/aapt2/
H A DResource.h388 struct hash<aapt::ResourceName> { struct in namespace:std
391 h = android::JenkinsHashMix(h, static_cast<uint32_t>(hash<string>()(name.package)));
393 h = android::JenkinsHashMix(h, static_cast<uint32_t>(hash<string>()(name.entry)));
399 struct hash<aapt::ResourceId> { struct in namespace:std
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMELFAttributeData.cpp650 int hash = calculate_fp_config_hash(pConfig); local
651 assert(static_cast<size_t>(hash) <
653 return fp_config_hash_table[hash];
/frameworks/base/libs/hwui/
H A DTessellationCache.cpp44 // Shape bits should be set to zeroes, because they are used for hash calculation.
55 // Shape bits should be set to zeroes, because they are used for hash calculation.
77 hash_t TessellationCache::Description::hash() const { function in class:android::uirenderer::TessellationCache::Description
78 uint32_t hash = JenkinsHashMix(0, static_cast<int>(type)); local
79 hash = JenkinsHashMix(hash, aa);
80 hash = JenkinsHashMix(hash, cap);
81 hash = JenkinsHashMix(hash, styl
113 hash_t TessellationCache::ShadowDescription::hash() const { function in class:android::uirenderer::TessellationCache::ShadowDescription
114 uint32_t hash = JenkinsHashMixBytes(0, (uint8_t*) &nodeKey, sizeof(const void*)); local
[all...]
/frameworks/base/libs/hwui/font/
H A DFont.cpp69 hash_t Font::FontDescription::hash() const { function in class:android::uirenderer::Font::FontDescription
70 uint32_t hash = JenkinsHashMix(0, mFontId); local
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, androi
[all...]
/frameworks/base/services/core/java/com/android/server/
H A DLockSettingsStorage.java84 private CredentialHash(byte[] hash, int type, int version) { argument
86 if (hash == null) {
87 throw new RuntimeException("Empty hash for CredentialHash");
90 if (hash != null) {
91 throw new RuntimeException("None type CredentialHash should not have hash");
94 this.hash = hash;
100 private CredentialHash(byte[] hash, boolean isBaseZeroPattern) { argument
101 this.hash = hash;
107 create(byte[] hash, int type) argument
119 byte[] hash; field in class:LockSettingsStorage.CredentialHash
336 writeFile(String name, byte[] hash) argument
378 writeCredentialHash(CredentialHash hash, int userId) argument
[all...]
H A DSyntheticPasswordManager.java109 * syntheticPassword = hash(P0 || P1)
228 * Initializing a new Authentication token, possibly from an existing credential and hash.
235 * If the existing credential hash is non-null, the existing SID mill be migrated so
240 * If the existing credential hash is null, it means the given user should have no SID so
250 byte[] hash, String credential, int userId) throws RemoteException {
253 if (hash != null) {
254 response = gatekeeper.enroll(userId, hash, credential.getBytes(),
249 newSyntheticPasswordAndSid(IGateKeeperService gatekeeper, byte[] hash, String credential, int userId) argument
/frameworks/native/services/sensorservice/
H A DSensorService.cpp839 // Now we use our key on our UUID/app combo to get the hash.
840 uint8_t hash[EVP_MAX_MD_SIZE]; local
845 hash, &hashLen) == nullptr) {
861 // This is almost certainly less than all of 'hash', but it's as secure
863 memcpy(&id, hash, sizeof(id));
867 // those as dynamic sensor IDs. If we happened to hash to one of those
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDevice.java963 * @param hash Simple Secure pairing hash
969 public boolean setDeviceOutOfBandData(byte[] hash, byte[] randomizer) { argument
973 return sService.setDeviceOutOfBandData(this, hash, randomizer);
/frameworks/minikin/libs/minikin/
H A DLayout.cpp82 android::hash_t hash() const { function in class:minikin::LayoutCacheKey
200 uint32_t hash = android::JenkinsHashMix(0, mId); local
201 hash = android::JenkinsHashMix(hash, mStart);
202 hash = android::JenkinsHashMix(hash, mCount);
203 hash = android::JenkinsHashMix(hash, hash_type(mStyle));
204 hash = android::JenkinsHashMix(hash, hash_typ
[all...]
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp1336 uint8_t hash[SHA256_DIGEST_LENGTH]; local
1337 SHA256_Final(hash, &ctx);
1341 sprintf(hash_buffer + (i * 2), "%02x", hash[i]);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp711 /// .dynsym, .dynstr, .hash and .shstrtab.
724 size_t hash = 0; local
777 // compute .gnu.hash
779 // count the number of dynsym to hash
796 // compute .hash
799 hash = (2 + getHashBucketCount(dynsym, false) + dynsym) *
831 file_format->getHashTab().setSize(hash);
839 // .dynstr, .symtab, .strtab and .hash, we can not reserve non-DT_NEEDED
978 /// emitDynNamePools - emit dynamic name pools - .dyntab, .dynstr, .hash
1026 // emit .gnu.hash
1212 uint32_t hash = djbhash % nbucket; local
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 945 milliseconds

12