Searched refs:CmpKey (Results 1 - 8 of 8) sorted by relevance

/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.hpp41 typedef int32 (*CmpKey)(const void *key1, const void *key2); typedef
52 const CmpKey _cmp; // Key comparison function
59 Dict( CmpKey cmp, Hash hash );
60 Dict( CmpKey cmp, Hash hash, Arena *arena, int size=16 );
82 // must match using CmpKey) and they must have the same values (pointer
H A Ddict.cpp69 Dict::Dict(CmpKey initcmp, Hash inithash) : _hash(inithash), _cmp(initcmp),
88 Dict::Dict(CmpKey initcmp, Hash inithash, Arena *arena, int size)
200 *(CmpKey*)(&_cmp) = d._cmp;
282 // keys must match using CmpKey) and they must have the same values (pointer
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddict2.hpp39 typedef int (*CmpKey)(const void *key1, const void *key2); typedef
51 const CmpKey _cmp; // Key comparison function
58 Dict( CmpKey cmp, Hash hash );
59 Dict( CmpKey cmp, Hash hash, Arena *arena );
82 // must match using CmpKey) and they must have the same values (pointer
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) {
163 *(CmpKey*)(&_cmp) = d._cmp;
241 // keys must match using CmpKey) and they must have the same values (pointer
H A Dforms.hpp91 // must match using CmpKey) and they must have the same values (pointer
97 // FormDict( CmpKey cmp, Hash hash );
98 FormDict( CmpKey cmp, Hash hash, Arena *arena );
567 // must match using CmpKey) and they must have the same values (pointer
573 ExprDict( CmpKey cmp, Hash hash, Arena *arena );
H A Dforms.cpp305 FormDict::FormDict( CmpKey cmp, Hash hash, Arena *arena )
341 // must match using CmpKey) and they must have the same values (pointer
H A Ddfa.cpp830 ExprDict::ExprDict( CmpKey cmp, Hash hash, Arena *arena )
908 // must match using CmpKey) and they must have the same values (pointer
/openjdk7/hotspot/src/share/vm/opto/
H A Dtype.cpp219 new (shared_type_arena) Dict( (CmpKey)Type::cmp, (Hash)Type::uhash,
455 Dict *tdic = new (type_arena) Dict( (CmpKey)Type::cmp,(Hash)Type::uhash, type_arena, 128 );

Completed in 79 milliseconds