Searched defs:capacity (Results 76 - 84 of 84) sorted by relevance

1234

/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectorPolicy.cpp868 (_g1->capacity() / 100) * InitiatingHeapOccupancyPercent;
1158 _capacity_before_gc = _g1->capacity();
1171 _cur_collection_pause_used_at_start_bytes, _g1->used(), _g1->capacity());
1180 size_t capacity = _g1->capacity(); local
1198 EXT_SIZE_PARAMS(capacity));
1334 size_t committed_bytes = _g1->capacity();
1823 // percentage of the current heap capacity.
1824 size_t capacity_bytes = _g1->capacity();
H A Dg1CollectedHeap.cpp1576 const size_t capacity_after_gc = capacity();
1619 // we'll try to make the capacity larger than it, not smaller).
1623 // we'll try to make the capacity smaller than it, not greater).
1631 ergo_format_reason("capacity lower than "
1632 "min desired capacity after Full GC")
1633 ergo_format_byte("capacity")
1635 ergo_format_byte_perc("min desired capacity"),
1646 ergo_format_reason("capacity higher than "
1647 "max desired capacity after Full GC")
1648 ergo_format_byte("capacity")
2308 size_t G1CollectedHeap::capacity() const { function in class:G1CollectedHeap
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp295 // Pick a reasonable higher bound for local capacity requested
299 // permitted to allocate more handles than the ensured capacity, so this
874 JNI_ENTRY(jint, jni_PushLocalFrame(JNIEnv *env, jint capacity))
877 DTRACE_PROBE2(hotspot_jni, PushLocalFrame__entry, env, capacity);
880 env, capacity);
883 if (capacity < 0 && capacity > MAX_REASONABLE_LOCAL_CAPACITY) {
1033 JNI_LEAF(jint, jni_EnsureLocalCapacity(JNIEnv *env, jint capacity))
1036 DTRACE_PROBE2(hotspot_jni, EnsureLocalCapacity__entry, env, capacity);
1039 env, capacity);
4472 jni_NewDirectByteBuffer(JNIEnv *env, void* address, jlong capacity) argument
[all...]
H A Djni.h258 (JNIEnv *env, jint capacity);
273 (JNIEnv *env, jint capacity);
758 (JNIEnv* env, void* address, jlong capacity);
837 jint PushLocalFrame(jint capacity) { argument
838 return functions->PushLocalFrame(this,capacity);
861 jint EnsureLocalCapacity(jint capacity) { argument
862 return functions->EnsureLocalCapacity(this,capacity);
1847 jobject NewDirectByteBuffer(void* address, jlong capacity) { argument
1848 return functions->NewDirectByteBuffer(this, address, capacity);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java310 Element(String name, int size, int capacity) { argument
313 assert (size <= capacity);
314 this.parts = capacity > 0 ? new Object[capacity] : noPartsFrozen;
2553 * Trim excess capacity to zero, or do nothing if frozen.
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java3444 int capacity = 0; field in class:JComponent.IntVector
3455 if (count == capacity) {
3456 capacity = (capacity + 2) * 2;
3457 int[] newarray = new int[capacity];
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp193 size_t capacity() const { return _capacity; } function in class:CMSMarkStack
287 size_t capacity() { return _capacity; } function in class:ChunkArray
291 assert(_index <= capacity(),
1174 size_t capacity() const;
1177 double occupancy() const { return ((double)used())/((double)capacity()); }
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DBandStructure.java399 public abstract int capacity(); method in class:BandStructure.Band
524 public int capacity() { method in class:BandStructure.ValueBand
528 /** Declare predicted or needed capacity. */
790 public int capacity() { method in class:BandStructure.ByteBand
1265 public int capacity() { return cap; } method in class:BandStructure.MultiBand
2425 assert(b.capacity() >= 0);
2443 assert(b.capacity() < 0);
2447 assert(Math.max(0,b.capacity()) >= b.valuesExpected());
/openjdk7/jdk/src/share/javavm/export/
H A Djni.h258 (JNIEnv *env, jint capacity);
273 (JNIEnv *env, jint capacity);
758 (JNIEnv* env, void* address, jlong capacity);
837 jint PushLocalFrame(jint capacity) { argument
838 return functions->PushLocalFrame(this,capacity);
861 jint EnsureLocalCapacity(jint capacity) { argument
862 return functions->EnsureLocalCapacity(this,capacity);
1847 jobject NewDirectByteBuffer(void* address, jlong capacity) { argument
1848 return functions->NewDirectByteBuffer(this, address, capacity);

Completed in 124 milliseconds

1234