Searched refs:_cmp (Results 1 - 4 of 4) sorted by relevance

/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) {
140 Dict::Dict( const Dict &d ) : _size(d._size), _cnt(d._cnt), _hash(d._hash),_cmp(d._cmp), _arena(d._arena) {
163 *(CmpKey*)(&_cmp) = d._cmp;
183 if( !_cmp(key,b->_keyvals[j+j]) ) {
216 if( !_cmp(key,b->_keyvals[j+j]) ) {
234 if( !_cmp(key,b->_keyvals[j+j]) )
246 if( _cmp !
[all...]
H A Ddict2.hpp51 const CmpKey _cmp; // Key comparison 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) {
176 Dict::Dict( const Dict &d ) : _size(d._size), _cnt(d._cnt), _hash(d._hash),_cmp(d._cmp), _arena(d._arena) {
200 *(CmpKey*)(&_cmp) = d._cmp;
220 if( !_cmp(key,b->_keyvals[j+j]) ) {
257 if( !_cmp(key,b->_keyvals[j+j]) ) {
275 if( !_cmp(key,b->_keyvals[j+j]) )
287 if( _cmp !
[all...]
H A Ddict.hpp52 const CmpKey _cmp; // Key comparison function member in class:Dict

Completed in 32 milliseconds