Home
last modified time | relevance | path

Searched defs:hash (Results 1 – 25 of 43) sorted by relevance

12

/libcore/luni/src/main/java/java/util/concurrent/
DConcurrentHashMap.java155 private static int hash(int h) { in hash() method in ConcurrentHashMap
171 final Segment<K,V> segmentFor(int hash) { in segmentFor()
191 final int hash; field in ConcurrentHashMap.HashEntry
195 HashEntry(K key, int hash, HashEntry<K,V> next, V value) { in HashEntry()
310 HashEntry<K,V> getFirst(int hash) { in getFirst()
333 V get(Object key, int hash) { in get()
349 boolean containsKey(Object key, int hash) { in containsKey()
378 boolean replace(K key, int hash, V oldValue, V newValue) { in replace()
396 V replace(K key, int hash, V newValue) { in replace()
415 V put(K key, int hash, V value, boolean onlyIfAbsent) { in put()
[all …]
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
DCache.java170 long hash = 0; in getHash() local
213 public Object get(long hash, byte[] encoding) { in get()
241 public void put(long hash, byte[] encoding, Object object) { in put()
DX509CertFactoryImpl.java606 long hash = CERT_CACHE.getHash(encoding); in getCertificate() local
640 long hash = CERT_CACHE.getHash(buff); in getCertificate() local
678 long hash = CRL_CACHE.getHash(encoding); in getCRL() local
711 long hash = CRL_CACHE.getHash(buff); in getCRL() local
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
DServerKeyExchange.java48 final byte[] hash; field in ServerKeyExchange
60 byte[] hash) { in ServerKeyExchange()
DCertificateVerify.java39 public CertificateVerify(byte[] hash) { in CertificateVerify()
DTrustedCertificateStore.java377 String hash = hash(subject); in findCert() local
416 private String hash(X500Principal name) { in hash() method in TrustedCertificateStore
417 int hash = NativeCrypto.X509_NAME_hash_old(name); in hash() local
421 private File file(File dir, String hash, int index) { in file()
508 String hash = alias.substring(PREFIX_USER.length(), dotIndex); in removeUnnecessaryTombstones() local
DOpenSSLKey.java81 int hash = 1; in hashCode() local
DOpenSSLDSAPrivateKey.java166 int hash = 1; in hashCode() local
DOpenSSLRSAPrivateKey.java215 int hash = 1; in hashCode() local
/libcore/luni/src/main/java/java/util/
DHashMap.java298 int hash = key.hashCode(); in get() local
327 int hash = key.hashCode(); in containsKey() local
390 int hash = secondaryHash(key.hashCode()); in put() local
453 int hash = secondaryHash(key.hashCode()); in constructorPut() local
475 void addNewEntry(K key, V value, int hash, int index) { in addNewEntry()
494 K key, V value, int hash, HashMapEntry<K, V> first) { in constructorNewEntry()
621 int hash = secondaryHash(key.hashCode()); in remove() local
726 final int hash; field in HashMap.HashMapEntry
729 HashMapEntry(K key, V value, int hash, HashMapEntry<K, V> next) { in HashMapEntry()
841 int hash = secondaryHash(key.hashCode()); in containsMapping() local
[all …]
DLinkedHashMap.java154 LinkedEntry(K key, V value, int hash, HashMapEntry<K, V> next, in LinkedEntry()
184 @Override void addNewEntry(K key, V value, int hash, int index) { in addNewEntry()
220 K key, V value, int hash, HashMapEntry<K, V> next) { in constructorNewEntry()
251 int hash = key.hashCode(); in get() local
DHashtable.java263 int hash = key.hashCode(); in get() local
291 int hash = key.hashCode(); in containsKey() local
367 int hash = secondaryHash(key.hashCode()); in put() local
401 int hash = secondaryHash(key.hashCode()); in constructorPut() local
554 int hash = secondaryHash(key.hashCode()); in remove() local
663 final int hash; field in Hashtable.HashtableEntry
666 HashtableEntry(K key, V value, int hash, HashtableEntry<K, V> next) { in HashtableEntry()
798 int hash = secondaryHash(key.hashCode()); in containsMapping() local
814 int hash = secondaryHash(key.hashCode()); in removeMapping() local
DUUID.java55 private transient int hash; field in UUID
155 private static UUID makeUuid(byte[] hash, int version) { in makeUuid()
/libcore/luni/src/main/java/java/util/jar/
DJarVerifier.java81 private byte[] hash; field in JarVerifier.VerifierEntry
85 VerifierEntry(String name, MessageDigest digest, byte[] hash, in VerifierEntry()
200 String hash = attributes.getValue(algorithm + "-Digest"); in initEntry() local
388 String hash = attributes.getValue(algorithm + entry); in verify() local
/libcore/luni/src/main/java/java/security/
DCodeSigner.java35 private transient int hash; field in CodeSigner
DTimestamp.java37 private transient int hash; field in Timestamp
DIdentity.java330 int hash = 0; in hashCode() local
/libcore/luni/src/main/java/org/apache/harmony/luni/util/
DTwoKeyHashMap.java156 int hash = key1.hashCode() + key2.hashCode(); in put() local
290 int hash; field in TwoKeyHashMap.Entry
296 public Entry(int hash, E key1, K key2, V value, Entry<E, K, V> next) { in Entry()
470 int hash = key1.hashCode() + key2.hashCode(); in findEntry() local
498 int hash = key1.hashCode() + key2.hashCode(); in removeEntry() local
/libcore/luni/src/main/java/java/security/spec/
DEllipticCurve.java42 private volatile int hash; field in EllipticCurve
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
DObjectIdentifier.java46 private int hash = -1; field in ObjectIdentifier
/libcore/luni/src/main/java/java/security/cert/
DCertificate.java103 int hash = 0; in hashCode() local
DCertPath.java101 int hash = getType().hashCode(); in hashCode() local
/libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
DAnnotationFactory.java246 int hash = 0; in hashCode() local
DAnnotationMember.java260 int hash = name.hashCode() * 127; in hashCode() local
/libcore/luni/src/main/java/java/io/
DSerializationHandleMap.java126 int index, next, hash; in remove() local

12