Searched refs:_buckets (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/src/share/vm/utilities/
H A Dhashtable.inline.hpp41 _buckets = NEW_C_HEAP_ARRAY2(HashtableBucket<F>, table_size, F, CURRENT_PC);
43 _buckets[index].clear();
53 _buckets = buckets;
75 return _buckets[i].get_entry();
83 // via a store to _buckets[index].
92 // via a store to _buckets[index].
98 _buckets[index].set_entry(entry);
104 _buckets[index].set_entry(entry);
H A Dhashtable.cpp158 if (NULL != _buckets) {
162 !FileMapInfo::current_info()->is_in_shared_space(_buckets)) {
163 FREE_C_HEAP_ARRAY(HashtableBucket, _buckets, F);
165 _buckets = NULL;
199 for (BasicHashtableEntry<F>** p = _buckets[i].entry_addr();
268 _buckets = (HashtableBucket<F>*)memcpy(*top, _buckets, len);
H A Dhashtable.hpp165 HashtableBucket<F>* _buckets; member in class:BasicHashtable
194 BasicHashtableEntry<F>** bucket_addr(int i) { return _buckets[i].entry_addr(); }
/openjdk7/hotspot/src/share/vm/memory/
H A DheapInspection.cpp118 _buckets = (KlassInfoBucket *) os::malloc(sizeof(KlassInfoBucket) * _num_buckets, mtInternal);
119 if (_buckets != NULL) {
122 _buckets[index].initialize();
128 if (_buckets != NULL) {
130 _buckets[index].empty();
132 FREE_C_HEAP_ARRAY(KlassInfoBucket, _buckets, mtInternal);
144 assert(_buckets != NULL, "Allocation failure should have been caught");
145 KlassInfoEntry* e = _buckets[idx].lookup(k);
170 assert(_size == 0 || _buckets != NULL, "Allocation failure should have been caught");
172 _buckets[inde
[all...]
H A DheapInspection.hpp96 KlassInfoBucket* _buckets; member in class:KlassInfoTable
105 bool allocation_failed() { return _buckets == NULL; }
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsparsePRT.cpp152 _buckets(NEW_C_HEAP_ARRAY(int, capacity, mtGC)),
163 if (_buckets != NULL) {
164 FREE_C_HEAP_ARRAY(int, _buckets, mtGC);
165 _buckets = NULL;
173 guarantee(_buckets != NULL, "INV");
180 memset(_buckets, NullEntry, _capacity * sizeof(int));
202 int cur_ind = _buckets[ind];
219 int cur_ind = _buckets[ind];
235 int* prev_loc = &_buckets[ind];
257 int cur_ind = _buckets[in
[all...]
H A DsparsePRT.hpp118 int* _buckets; member in class:RSHashTable
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.hpp832 SymbolHashMapBucket* _buckets; member in class:SymbolHashMap
836 _buckets = NEW_C_HEAP_ARRAY(SymbolHashMapBucket, table_size, mtSymbol);
838 _buckets[index].clear();
860 return _buckets[i].entry();
879 delete _buckets;
H A DconstantPoolOop.cpp1780 _buckets[index].set_entry(entry);
/openjdk7/hotspot/src/share/vm/runtime/
H A DsharedRuntime.cpp2191 static int _buckets; // number of buckets checked member in class:AdapterHandlerTable
2230 NOT_PRODUCT(_buckets++);
2265 _lookups, _buckets, _equals, _hits, _compact);
2274 int AdapterHandlerTable::_buckets; member in class:AdapterHandlerTable
H A DvmStructs.cpp742 nonstatic_field(BasicHashtable<mtInternal>, _buckets, HashtableBucket<mtInternal>*) \

Completed in 64 milliseconds