Searched refs:_hash (Results 1 - 22 of 22) sorted by relevance

/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/util/
H A DCharArray.java35 protected int _hash; field in class:CharArray
55 _hash = 0;
70 if (_hash == 0) {
74 _hash = 31*_hash + ch[i];
77 return _hash;
H A DKeyIntMap.java71 final int _hash; field in class:KeyIntMap.BaseEntry
75 _hash = hash;
H A DFixedEntryStringIntMap.java63 final int tableIndex = indexFor(_fixedEntry._hash, _table.length);
99 final int tableIndex = indexFor(_fixedEntry._hash, _table.length);
H A DLocalNameQualifiedNamesMap.java41 final int _hash; field in class:LocalNameQualifiedNamesMap.Entry
48 _hash = hash;
141 if (e._hash == hash && eq(key, e._key)) {
154 if (e._hash == hash && eq(key, e._key)) {
172 if (e._hash == hash && eq(key, e._key)) {
216 int i = indexFor(e._hash, newCapacity);
H A DStringIntMap.java125 if (e._hash == hash && eq(key, e._key)) {
161 if (e._hash == hash && eq(key, e._key)) {
204 int i = indexFor(e._hash, newCapacity);
H A DCharArrayIntMap.java148 if (e._hash == hash && e.equalsCharArray(ch, start, length)) {
179 if (e._hash == hash && e.equalsCharArray(ch, start, length)) {
220 int i = indexFor(e._hash, newCapacity);
/openjdk10/hotspot/src/share/vm/adlc/
H A Ddict2.cpp55 Dict::Dict(CmpKey initcmp, Hash inithash) : _hash(inithash), _cmp(initcmp), _arena(NULL) {
59 Dict::Dict(CmpKey initcmp, Hash inithash, Arena *arena) : _hash(inithash), _cmp(initcmp), _arena(arena) {
123 if( (_hash( key ) & (_size-1)) != i ) { // Moving to hi bucket?
140 Dict::Dict( const Dict &d ) : _size(d._size), _cnt(d._cnt), _hash(d._hash),_cmp(d._cmp), _arena(d._arena) {
162 *(Hash*)(&_hash) = d._hash;
179 int hash = _hash( key ); // Get hash key
213 int i = _hash( key ) & (_size-1); // Get hash key, corrected for size
231 int i = _hash( ke
[all...]
H A Ddict2.hpp50 const Hash _hash; // Hashing function member in class:Dict
/openjdk10/hotspot/src/share/vm/gc/g1/
H A Dg1StringDedupTable.hpp42 unsigned int _hash; member in class:G1StringDedupEntry
49 _hash(0),
67 return _hash;
71 _hash = hash;
/openjdk10/hotspot/src/share/vm/libadt/
H A Ddict.cpp57 Dict::Dict(CmpKey initcmp, Hash inithash) : _hash(inithash), _cmp(initcmp),
77 : _hash(inithash), _cmp(initcmp), _arena(arena) {
147 if ((_hash(key) & (_size-1)) != i) { // Moving to hi bucket?
164 Dict::Dict( const Dict &d ) : _size(d._size), _cnt(d._cnt), _hash(d._hash),_cmp(d._cmp), _arena(d._arena) {
187 *(Hash*)(&_hash) = d._hash;
204 uint hash = _hash( key ); // Get hash key
242 uint i = _hash( key ) & (_size-1); // Get hash key, corrected for size
260 uint i = _hash( ke
[all...]
H A Ddict.hpp52 const Hash _hash; // Hashing function member in class:Dict
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DObject.java115 int _hash(int maximum); method in interface:Object
H A DLocalObject.java109 public int _hash(int maximum) { method in class:LocalObject
/openjdk10/hotspot/src/share/vm/classfile/
H A DcompactHashtable.hpp75 unsigned int _hash; member in class:CompactHashtableWriter::VALUE_OBJ_CLASS_SPEC
80 Entry(unsigned int hash, u4 val) : _hash(hash), _value(val) {}
86 return _hash;
90 return (_value == other._value && _hash == other._hash);
/openjdk10/hotspot/src/share/vm/utilities/
H A DresourceHash.hpp61 unsigned _hash; member in class:ResourceHashtable::Node
67 _hash(hash), _key(key), _value(value), _next(NULL) {}
79 if (node->_hash == hash && EQUALS(key, node->_key)) {
H A Dhashtable.hpp47 unsigned int _hash; // 32-bit hash for item member in class:BasicHashtableEntry
69 unsigned int hash() const { return _hash; }
70 void set_hash(unsigned int hash) { _hash = hash; }
71 unsigned int* hash_addr() { return &_hash; }
/openjdk10/hotspot/src/share/vm/code/
H A DdebugInfoRec.cpp39 int _hash; // hash of stream bytes (for quicker reuse) member in class:DIR_Chunk
66 _hash = hash;
73 int hash = this->_hash, length = this->_length;
77 if (hash == that->_hash &&
87 if (b->_hash > a->_hash) {
90 if (b->_hash < a->_hash) {
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/spi/presentation/rmi/
H A DStubWrapper.java109 public int _hash(int maximum) method in class:StubWrapper
111 return object._hash( maximum ) ;
/openjdk10/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.hpp34 intx _hash; member in class:ValueMapEntry
41 : _hash(hash)
48 intx hash() { return _hash; }
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/portable/
H A DObjectImpl.java167 public int _hash(int maximum) { method in class:ObjectImpl
/openjdk10/hotspot/src/share/vm/oops/
H A DconstantPool.hpp934 unsigned int _hash; // 32-bit hash for item member in class:SymbolHashMapEntry
940 unsigned int hash() const { return _hash; }
941 void set_hash(unsigned int hash) { _hash = hash; }
953 : _hash(hash), _symbol(symbol), _value(value), _next(NULL) {}
/openjdk10/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp637 nonstatic_field(BasicHashtableEntry<mtInternal>, _hash, unsigned int) \

Completed in 216 milliseconds