Searched refs:_committed (Results 1 - 6 of 6) sorted by relevance

/openjdk7/hotspot/src/share/vm/trace/
H A DtraceEvent.hpp49 bool _committed; member in class:TraceEvent
62 _committed(false),
130 assert(!_committed && !_cancelled, "event was already committed/cancelled");
135 assert(!_committed, "event has already been committed");
136 DEBUG_ONLY(_committed = true);
141 assert(_ignore_check || _committed || _cancelled, "event was not committed/cancelled");
/openjdk7/hotspot/src/share/vm/services/
H A DmemoryUsage.hpp51 size_t _committed; member in class:VALUE_OBJ_CLASS_SPEC
57 _initSize(i), _used(u), _committed(c), _maxSize(m) {};
59 _initSize(0), _used(0), _committed(0), _maxSize(0) {};
63 size_t committed() const { return _committed; }
80 jlong committed_as_jlong() const { return convert_to_jlong(_committed); }
/openjdk7/hotspot/src/share/vm/memory/
H A DcardTableModRefBS.cpp81 _committed = new MemRegion[max_covered_regions];
82 if (_covered == NULL || _committed == NULL)
87 _committed[i].set_word_size(0);
165 _committed[j] = _committed[j-1];
173 _committed[res].set_start((HeapWord*)ct_start_aligned);
174 _committed[res].set_word_size(0);
191 HeapWord* this_end = _committed[j].end();
202 result = result.minus(_committed[r]);
222 MemRegion cur_committed = _committed[in
[all...]
H A DcardTableModRefBS.hpp116 MemRegion* _committed; member in class:CardTableModRefBS
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DcardTableExtension.cpp568 " _committed[%d].start(): " INTPTR_FORMAT
569 " _committed[%d].last(): " INTPTR_FORMAT,
570 ind, _committed[ind].start(),
571 ind, _committed[ind].last());
580 addr_for((jbyte*) _committed[ind].start()),
581 addr_for((jbyte*) _committed[ind].last()));
590 MemRegion cur_committed = _committed[changed_region];
593 // Extend the start of this _committed region to
594 // to cover the start of any previous _committed region.
678 assert(_committed[changed_regio
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp525 nonstatic_field(CardTableModRefBS, _committed, MemRegion*) \

Completed in 56 milliseconds