Searched refs:_sz (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DptrQueue.hpp51 // The index at which an object was last enqueued. Starts at "_sz"
56 size_t _sz; member in class:VALUE_OBJ_CLASS_SPEC
80 void reset() { if (_buf != NULL) _index = _sz; }
102 assert(_sz >= _index, "Invariant.");
103 return _buf == NULL ? 0 : _sz - _index;
107 return _buf == NULL || _sz == _index;
116 _index = _sz;
118 assert(_index == _sz, "invariant: queues are empty when activated.");
216 size_t _sz; member in class:VALUE_OBJ_CLASS_SPEC
260 // Return an empty oop array of size _sz (require
[all...]
H A DptrQueue.cpp51 if (_index == _sz) {
77 assert(0 <= _index && _index <= _sz, "Invariant.");
87 assert(0 <= _index && _index <= _sz, "Invariant.");
109 _sz(0),
120 assert(_sz > 0, "Didn't set a buffer size.");
129 char *b = NEW_C_HEAP_ARRAY(char, _sz + BufferNode::aligned_size(), mtGC);
135 assert(_sz > 0, "Didn't set a buffer size.");
203 _sz = qset()->buffer_size();
204 _index = _sz;
211 _sz
[all...]
H A DsatbQueue.cpp63 size_t sz = _sz;
138 size_t sz = _sz;
148 apply_closure_to_buffer(cl, _buf, _index, _sz);
154 apply_closure_to_buffer(cl, _buf, _index, _sz);
155 _index = _sz;
175 print(name, _buf, _index, _sz);
189 for (size_t i = _index; i < _sz; i += oopSize) {
338 ObjPtrQueue::apply_closure_to_buffer(cl, buf, 0, _sz);
353 ObjPtrQueue::apply_closure_to_buffer(cl, buf, 0, _sz);
385 ObjPtrQueue::print(buffer, buf, 0, _sz);
[all...]
H A DdirtyCardQueue.cpp51 res = apply_closure_to_buffer(cl, _buf, _index, _sz,
54 if (res && consume) _index = _sz;
158 _sz, true, worker_i);
207 index, _sz,
245 0, _sz, false);
H A DdirtyCardQueue.hpp70 void reinitialize() { _buf = 0; _sz = 0; _index = 0;}
/openjdk7/hotspot/src/share/vm/utilities/
H A Dworkgroup.cpp529 _sz(sz), _mon(mon), _hd(0), _waiters(0), _index(-1), _claimed(0)
572 tty->print("claim_par_id[%d]: sz = %d, claimed = %d\n", tslf, _sz, _claimed);
605 assert(0 <= i && i < _sz, "Out of range.");
H A Dworkgroup.hpp514 int _sz; member in class:FreeIdSet

Completed in 45 milliseconds