Searched defs:ThreadLocalAllocBuffer (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/
H A DThreadLocalAllocBuffer.java32 /** <P> ThreadLocalAllocBuffer: a descriptor for thread-local storage
38 public class ThreadLocalAllocBuffer extends VMObject { class in inherits:VMObject
53 Type type = db.lookupType("ThreadLocalAllocBuffer");
61 public ThreadLocalAllocBuffer(Address addr) { method in class:ThreadLocalAllocBuffer
/openjdk7/hotspot/src/share/vm/memory/
H A DthreadLocalAllocBuffer.hpp34 // ThreadLocalAllocBuffer: a descriptor for thread-local storage used by
39 class ThreadLocalAllocBuffer: public CHeapObj<mtThread> { class in inherits:CHeapObj
102 ThreadLocalAllocBuffer() : _allocation_fraction(TLABAllocationWeight) { function in class:ThreadLocalAllocBuffer
161 static ByteSize start_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _start); }
162 static ByteSize end_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _end ); }
163 static ByteSize top_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _top ); }
164 static ByteSize pf_top_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _pf_top ); }
165 static ByteSize size_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _desired_size ); }
166 static ByteSize refill_waste_limit_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _refill_waste_limit ); }
168 static ByteSize number_of_refills_offset() { return byte_offset_of(ThreadLocalAllocBuffer, _number_of_refill
[all...]

Completed in 31 milliseconds