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

/openjdk7/jaxws/src/share/jaxws_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 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);
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);
/openjdk7/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
/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.cpp69 Dict::Dict(CmpKey initcmp, Hash inithash) : _hash(inithash), _cmp(initcmp),
89 : _hash(inithash), _cmp(initcmp), _arena(arena) {
159 if( (_hash( key ) & (_size-1)) != i ) { // Moving to hi bucket?
176 Dict::Dict( const Dict &d ) : _size(d._size), _cnt(d._cnt), _hash(d._hash),_cmp(d._cmp), _arena(d._arena) {
199 *(Hash*)(&_hash) = d._hash;
216 uint hash = _hash( key ); // Get hash key
254 uint i = _hash( key ) & (_size-1); // Get hash key, corrected for size
272 uint i = _hash( ke
[all...]
H A Ddict.hpp51 const Hash _hash; // Hashing function member in class:Dict
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DObject.java115 int _hash(int maximum); method in interface:Object
H A DLocalObject.java107 public int _hash(int maximum) { method in class:LocalObject
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DAsciiUtil.java187 private int _hash; field in class:AsciiUtil.CaseInsensitiveKey
191 _hash = AsciiUtil.toLowerString(key).hashCode();
205 return _hash;
/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.hpp46 unsigned int _hash; // 32-bit hash for item member in class:BasicHashtableEntry
68 unsigned int hash() const { return _hash; }
69 void set_hash(unsigned int hash) { _hash = hash; }
70 unsigned int* hash_addr() { return &_hash; }
/openjdk7/corba/src/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 ) ;
/openjdk7/hotspot/src/share/vm/code/
H A DdebugInfoRec.cpp39 int _hash; // hash of stream bytes (for quicker reuse) member in class:DIR_Chunk
61 _hash = hash;
68 int hash = this->_hash, length = this->_length;
72 if (hash == that->_hash &&
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueMap.hpp34 intx _hash; member in class:ValueMapEntry
41 : _hash(hash)
48 intx hash() { return _hash; }
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DObjectImpl.java167 public int _hash(int maximum) { method in class:ObjectImpl
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.hpp786 unsigned int _hash; // 32-bit hash for item member in class:SymbolHashMapEntry
792 unsigned int hash() const { return _hash; }
793 void set_hash(unsigned int hash) { _hash = hash; }
805 : _hash(hash), _symbol(symbol), _value(value), _next(NULL) {}
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp734 nonstatic_field(BasicHashtableEntry<mtInternal>, _hash, unsigned int) \

Completed in 220 milliseconds