Searched defs:set_end (Results 1 - 12 of 12) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DliveRange.hpp40 void set_end(HeapWord* e) { function in class:LiveRange
42 MemRegion::set_end(e);
H A DmutableSpace.hpp76 virtual void set_end(HeapWord* value) { _end = value; } function in class:MutableSpace
H A DgcTimer.hpp62 void set_end(jlong time) { _end = time; } function in class:GCPhase
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPromotionLAB.hpp56 void set_end(HeapWord* value) { _end = value; } function in class:PSPromotionLAB
/openjdk7/hotspot/src/share/vm/memory/
H A DmemRegion.hpp68 void set_end(HeapWord* end) { _word_size = pointer_delta(end, _start); } function in class:VALUE_OBJ_CLASS_SPEC
H A DthreadLocalAllocBuffer.hpp63 void set_end(HeapWord* end) { _end = end; } function in class:ThreadLocalAllocBuffer
H A Dspace.hpp132 virtual void set_end(HeapWord* value) { _end = value; } function in class:Space
596 liveRange->set_end(q); \
604 liveRange->set_end(end); \
618 liveRange->set_end(q); \
1054 void set_end(HeapWord* value) { function in class:EdenSpace
1056 ContiguousSpace::set_end(value);
1093 void set_end(HeapWord* value);
/openjdk7/hotspot/src/share/vm/runtime/
H A DstubCodeGenerator.hpp51 void set_end(address end) { function in class:StubCodeDesc
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp518 void BlockBegin::set_end(BlockEnd* end) { function in class:BlockBegin
615 new_sux->set_end(e);
628 // set_end call above added and substitute the new_sux for this
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.cpp410 set_end(new_end);
430 set_end(_orig_end);
930 void G1OffsetTableContigSpace::set_end(HeapWord* new_end) { function in class:G1OffsetTableContigSpace
931 Space::set_end(new_end);
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.hpp178 void set_end(address pc) { assert(allocates2(pc), err_msg("not in CodeBuffer memory: " PTR_FORMAT " <= " PTR_FORMAT " <= " PTR_FORMAT, _start, pc, _limit)); _end = pc; } function in class:VALUE_OBJ_CLASS_SPEC
197 void emit_int8 (int8_t x) { *((int8_t*) end()) = x; set_end(end() + 1); }
198 void emit_int16(int16_t x) { *((int16_t*) end()) = x; set_end(end() + 2); }
199 void emit_int32(int32_t x) { *((int32_t*) end()) = x; set_end(end() + 4); }
200 void emit_int64(int64_t x) { *((int64_t*) end()) = x; set_end(end() + 8); }
468 void set_insts_end(address end) { _insts.set_end(end); }
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp604 void CompactibleFreeListSpace::set_end(HeapWord* value) { function in class:CompactibleFreeListSpace
606 assert(prevEnd != value, "unnecessary set_end call");

Completed in 69 milliseconds