Searched defs:hashCode (Results 1 - 25 of 794) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DOptions.java144 * @see java.lang.Object#hashCode()
146 public int hashCode() method in class:Options
/external/srec/portable/src/
H A Dphashtable.c44 unsigned int hashCode; member in struct:PHashTableEntry_t
161 unsigned int hashCode,
180 if (entry->hashCode == hashCode && table->args.compFunction(key, entry->key) == 0)
211 unsigned int hashCode; local
217 hashCode = table->args.hashFunction(key);
218 idx = hashCode % table->args.capacity;
219 if ((entry = getEntry(table, key, hashCode, idx)) != NULL)
257 unsigned int hashCode; local
264 hashCode
159 getEntry(PHashTable *table, const void *key, unsigned int hashCode, unsigned int idx) argument
344 unsigned int hashCode, idx; local
426 unsigned int hashCode, idx; local
[all...]
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
157 if ((debugMessages[i].m_nHashCode == hashCode) &&
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
/external/sonivox/arm-wt-22k/host_src/
H A Deas_report.c144 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
157 if ((debugMessages[i].m_nHashCode == hashCode) &&
176 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
/external/sonivox/arm-wt-22k/jetcreator_lib_src/darwin-x86/
H A DEASLib.c172 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
206 if ((debugMessages[i].m_nHashCode == hashCode) &&
220 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
H A DEASLibVst.c154 void EAS_ReportEx (int severity, unsigned long hashCode, int serialNum, ...) argument
188 if ((debugMessages[i].m_nHashCode == hashCode) &&
202 printf("Unrecognized error: Severity=%d; HashCode=%lu; SerialNum=%d\n", severity, hashCode, serialNum);
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
H A Dhttpcore-4.1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
H A Djstun.jarMETA-INF/ META-INF/MANIFEST.MF de/ de/javawi/ de/javawi/jstun/ de/javawi/jstun/attribute/ ...
H A Dxpp3-1.1.4c.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ META-INF/services/org. ...
/external/smack/asmack-master/static-src/custom/com/kenai/jbosh/
H A DQName.java248 * <code>Object.hashCode</code> method.
252 public final int hashCode() { method in class:QName
253 return namespaceURI.hashCode() ^ localPart.hashCode();
/external/smack/src/com/kenai/jbosh/
H A DAbstractAttr.java22 * type's behavior for {@code equals()}, {@code hashCode()},
81 * @return hashCode of the encapsulated object
84 public int hashCode() { method in class:AbstractAttr
85 return value.hashCode();
H A DBodyQName.java135 public int hashCode() { method in class:BodyQName
136 return qname.hashCode();
H A DQName.java248 * <code>Object.hashCode</code> method.
252 public final int hashCode() { method in class:QName
253 return namespaceURI.hashCode() ^ localPart.hashCode();
/external/smack/src/org/apache/harmony/javax/security/auth/
H A DPrivateCredentialPermission.java235 public int hashCode() { method in class:PrivateCredentialPermission
238 hash = hash + set[i].hashCode();
240 return getCredentialClass().hashCode() + hash;
391 public int hashCode() { method in class:PrivateCredentialPermission.CredOwner
392 return principalClass.hashCode() + principalName.hashCode();
H A DSubject.java399 public int hashCode() { method in class:Subject
400 return principals.hashCode() + privateCredentials.hashCode()
401 + publicCredentials.hashCode();
/external/smack/src/org/jivesoftware/smack/
H A DRosterEntry.java185 public int hashCode() { method in class:RosterEntry
186 return this.user.hashCode();
H A DServerTrustManager.java295 public int hashCode() { method in class:ServerTrustManager.KeyStoreOptions
298 result = prime * result + ((password == null) ? 0 : password.hashCode());
299 result = prime * result + ((path == null) ? 0 : path.hashCode());
300 result = prime * result + ((type == null) ? 0 : type.hashCode());
/external/smack/src/org/jivesoftware/smack/packet/
H A DMessage.java497 public int hashCode() { method in class:Message
499 result = (type != null ? type.hashCode() : 0);
500 result = 31 * result + subjects.hashCode();
501 result = 31 * result + (thread != null ? thread.hashCode() : 0);
502 result = 31 * result + (language != null ? language.hashCode() : 0);
503 result = 31 * result + bodies.hashCode();
545 public int hashCode() { method in class:Message.Subject
548 result = prime * result + this.language.hashCode();
549 result = prime * result + this.subject.hashCode();
607 public int hashCode() { method in class:Message.Body
[all...]
H A DPacket.java498 public int hashCode() { method in class:Packet
500 result = (xmlns != null ? xmlns.hashCode() : 0);
501 result = 31 * result + (packetID != null ? packetID.hashCode() : 0);
502 result = 31 * result + (to != null ? to.hashCode() : 0);
503 result = 31 * result + (from != null ? from.hashCode() : 0);
504 result = 31 * result + packetExtensions.hashCode();
505 result = 31 * result + properties.hashCode();
506 result = 31 * result + (error != null ? error.hashCode() : 0);
/external/smack/src/org/jivesoftware/smack/util/
H A DCache.java486 public int hashCode() { method in class:Cache.CacheObject
487 return object.hashCode();
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractHashedMap.java191 int hashCode = hash((key == null) ? NULL : key);
192 HashEntry<K, V> entry = data[hashIndex(hashCode, data.length)]; // no local for hash index
194 if (entry.hashCode == hashCode && isEqualKey(key, entry.key)) {
228 int hashCode = hash((key == null) ? NULL : key);
229 HashEntry entry = data[hashIndex(hashCode, data.length)]; // no local for hash index
231 if (entry.hashCode == hashCode && isEqualKey(key, entry.getKey())) {
279 int hashCode = hash((key == null) ? NULL : key);
280 int index = hashIndex(hashCode, dat
406 hashIndex(int hashCode, int dataSize) argument
459 reuseEntry(HashEntry<K, V> entry, int hashIndex, int hashCode, K key, V value) argument
480 addMapping(int hashIndex, int hashCode, K key, V value) argument
501 createEntry(HashEntry<K, V> next, int hashCode, K key, V value) argument
1022 protected int hashCode; field in class:AbstractHashedMap.HashEntry
1032 HashEntry(HashEntry<K, V> next, int hashCode, K key, V value) argument
1069 public int hashCode() { method in class:AbstractHashedMap.HashEntry
1301 public int hashCode() { method in class:AbstractHashedMap
[all...]
H A DAbstractMapEntry.java79 * Gets a hashCode compatible with the equals method.
81 * Implemented per API documentation of {@link java.util.Map.Entry#hashCode()}
85 public int hashCode() { method in class:AbstractMapEntry
86 return (getKey() == null ? 0 : getKey().hashCode()) ^ (getValue() == null ? 0 : getValue().hashCode());
H A DAbstractReferenceMap.java372 // The hashCode of the reference is the hashCode of the
375 int hash = ref.hashCode();
419 return (key == null ? 0 : key.hashCode()) ^ (value == null ? 0 : value.hashCode());
445 * @param hashCode the hash code to use
450 public HashEntry<K, V> createEntry(HashEntry<K, V> next, int hashCode, K key, V value) { argument
451 return new ReferenceEntry<K, V>(this, (ReferenceEntry<K, V>) next, hashCode, key, value);
578 * @param hashCode the hash code of the key
582 public ReferenceEntry(AbstractReferenceMap<K, V> parent, ReferenceEntry<K, V> next, int hashCode, argument
669 public int hashCode() { method in class:AbstractReferenceMap.ReferenceEntry
931 public int hashCode() { method in class:AbstractReferenceMap.SoftRef
950 public int hashCode() { method in class:AbstractReferenceMap.WeakRef
[all...]

Completed in 359 milliseconds

1234567891011>>