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

/openjdk7/hotspot/src/share/vm/adlc/
H A Ddict2.cpp77 _bin = (bucket*)_arena->Amalloc_4(sizeof(bucket)*_size);
78 memset(_bin,0,sizeof(bucket)*_size);
91 _bin[i]._cnt = 0; // Empty buckets, but leave allocated
92 // Leave _size & _bin alone, under the assumption that dictionary will
105 _bin = (bucket*)_arena->Arealloc( _bin, sizeof(bucket)*oldsize, sizeof(bucket)*_size );
106 memset( &_bin[oldsize], 0, oldsize*sizeof(bucket) );
109 bucket *b = &_bin[i]; // Handy shortcut for _bin[i]
112 bucket *nb = &_bin[
[all...]
H A Ddict2.hpp47 class bucket *_bin; // Hash table is array of buckets member in class:Dict
/openjdk7/hotspot/src/share/vm/libadt/
H A Ddict.cpp84 _bin = (bucket*)_arena->Amalloc_4(sizeof(bucket)*_size);
85 memset(_bin,0,sizeof(bucket)*_size);
105 _bin = (bucket*)_arena->Amalloc_4(sizeof(bucket)*_size);
106 memset(_bin,0,sizeof(bucket)*_size);
115 tty->print("%d ",_bin[i]._cnt);
118 FREE_FAST( _bin[i]._keyvals );
127 _bin[i]._cnt = 0; // Empty buckets, but leave allocated
128 // Leave _size & _bin alone, under the assumption that dictionary will
141 _bin = (bucket*)_arena->Arealloc( _bin, sizeo
[all...]
H A Ddict.hpp48 class bucket *_bin; // Hash table is array of buckets member in class:Dict

Completed in 38 milliseconds