Searched defs:hashcode (Results 1 - 6 of 6) sorted by relevance

/openjdk7/langtools/test/tools/apt/Basics/
H A DAggregate.java36 public int hashcode() {return 42;} method in class:Aggregate
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DValueRepositoryId.java51 private String hashcode; // The computed hashcode field in class:ValueRepositoryId
63 hashcode = null;
66 /**Add a value to the hashcode being computed.
105 /** Get the hashcode computed for the value type. This method MUST not be
108 @return the 64 bit hashcode for the value type represented as a
112 if (hashcode == null)
115 hashcode = hexOf (digest[0]) + hexOf (digest[1]) +
120 return hashcode;
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipPath.java64 private int hashcode = 0; // cached hashcode (created lazily) field in class:ZipPath
545 int h = hashcode;
547 hashcode = h = Arrays.hashCode(path);
H A DZipFileSystem.java1742 int hashcode; // node is hashable/hashed by its name field in class:ZipFileSystem.IndexNode
1756 this.hashcode = Arrays.hashCode(name);
1777 return hashcode;
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DX509CRLImpl.java1218 volatile int hashcode = 0; field in class:X509CRLImpl.X509IssuerSerial
1286 if (hashcode == 0) {
1290 hashcode = result;
1292 return hashcode;
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_table.c62 * The full 32bit hashcode and key length is saved for comparisons, the
105 HashCode hcode; /* The full 32bit hashcode for the key. */
361 hashcode(void *key_ptr, int key_len) function
826 hcode = hashcode(key_ptr, key_len);
853 hcode = hashcode(key_ptr, key_len);
879 hcode = hashcode(key_ptr, key_len);

Completed in 81 milliseconds