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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.hpp254 jlong _allocated_bytes; // Cumulative number of bytes allocated on member in class:Thread
429 jlong allocated_bytes() { return _allocated_bytes; }
430 void set_allocated_bytes(jlong value) { _allocated_bytes = value; }
431 void incr_allocated_bytes(jlong size) { _allocated_bytes += size; }
433 jlong allocated_bytes = OrderAccess::load_acquire(&_allocated_bytes);
609 static ByteSize allocated_bytes_offset() { return byte_offset_of(Thread, _allocated_bytes ); }

Completed in 41 milliseconds