Searched refs:Hash (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.hpp42 typedef int (*Hash)(const void *key); typedef
48 class bucket *_bin; // Hash table is array of buckets
51 const Hash _hash; // Hashing function
59 Dict( CmpKey cmp, Hash hash );
60 Dict( CmpKey cmp, Hash hash, Arena *arena, int size=16 );
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)
166 j--; // Hash compacted element also
199 *(Hash*)(&_hash) = d._hash;
231 if( ++_cnt > _size ) { // Hash table is full
328 return (int)((sum+xsum[k]) >> 1); // Hash key, un-modulo'd table size
/openjdk7/hotspot/src/share/vm/adlc/
H A Ddict2.hpp40 typedef int (*Hash)(const void *key); typedef
47 class bucket *_bin; // Hash table is array of buckets
50 const Hash _hash; // Hashing function
58 Dict( CmpKey cmp, Hash hash );
59 Dict( CmpKey cmp, Hash hash, Arena *arena );
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) {
130 j--; // Hash compacted element also
162 *(Hash*)(&_hash) = d._hash;
190 if( ++_cnt > _size ) { // Hash table is full
295 return (int)((sum+xsum[k]) >> 1); // Hash key, un-modulo'd table size
H A Dforms.hpp97 // FormDict( CmpKey cmp, Hash hash );
98 FormDict( CmpKey cmp, Hash hash, Arena *arena );
573 ExprDict( CmpKey cmp, Hash hash, Arena *arena );
H A Dforms.cpp305 FormDict::FormDict( CmpKey cmp, Hash hash, Arena *arena )
H A Ddfa.cpp379 // Hash inputs to match rules so that final DFA contains only one entry for
600 // Hash each entry using inputs as key and pointer as data.
830 ExprDict::ExprDict( CmpKey cmp, Hash hash, Arena *arena )
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DToken.java164 Hash = 128, field in class:Token
/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 );
1773 sum += (intptr_t)_fields[i]; // Hash on pointers directly

Completed in 89 milliseconds