Searched defs:max_size (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DcSpaceCounters.cpp29 CSpaceCounters::CSpaceCounters(const char* name, int ordinal, size_t max_size, argument
48 (jlong)max_size, CHECK);
H A DgSpaceCounters.cpp32 GSpaceCounters::GSpaceCounters(const char* name, int ordinal, size_t max_size, argument
52 (jlong)max_size, CHECK);
H A DhSpaceCounters.cpp32 size_t max_size,
51 (jlong)max_size, CHECK);
30 HSpaceCounters(const char* name, int ordinal, size_t max_size, size_t initial_capacity, GenerationCounters* gc) argument
H A DspaceCounters.cpp31 SpaceCounters::SpaceCounters(const char* name, int ordinal, size_t max_size, argument
50 (jlong)max_size, CHECK);
H A DparGCAllocBuffer.hpp68 static const size_t max_size() { function in class:ParGCAllocBuffer
69 return ThreadLocalAllocBuffer::max_size();
186 size_t max_sz = max_size();
199 static const size_t max_size() { function in class:VALUE_OBJ_CLASS_SPEC
200 return ParGCAllocBuffer::max_size();
/openjdk7/hotspot/src/share/vm/services/
H A Dg1MemoryPool.hpp63 size_t max_size,
75 size_t max_size() const { function in class:G1EdenPool
89 size_t max_size() const { function in class:G1SurvivorPool
103 size_t max_size() const { function in class:G1OldGenPool
H A Dg1MemoryPool.cpp35 size_t max_size,
40 max_size,
54 size_t max_sz = max_size();
70 size_t max_sz = max_size();
86 size_t max_sz = max_size();
32 G1MemoryPoolSuper(G1CollectedHeap* g1h, const char* name, size_t init_size, size_t max_size, bool support_usage_threshold) argument
H A DmemoryPool.cpp39 size_t max_size,
44 _max_size = max_size;
147 size_t peak_max_size = get_max_value(usage.max_size(), _peak_usage.max_size());
180 size_t max_size,
182 CollectedMemoryPool(name, type, space->capacity(), max_size,
187 size_t maxSize = (available_for_allocation() ? max_size() : 0);
197 size_t max_size,
199 CollectedMemoryPool(name, type, gen->from()->capacity(), max_size,
204 size_t maxSize = (available_for_allocation() ? max_size()
36 MemoryPool(const char* name, PoolType type, size_t init_size, size_t max_size, bool support_usage_threshold, bool support_gc_threshold) argument
[all...]
H A DpsMemoryPool.hpp49 size_t max_size() const { return _gen->reserved().byte_size(); } function in class:PSGenerationPool
67 size_t max_size() const { function in class:EdenMutableSpacePool
68 // Eden's max_size = max_size of Young Gen - the current committed size of survivor spaces
69 return _gen->max_size() - _gen->from_space()->capacity_in_bytes() - _gen->to_space()->capacity_in_bytes();
91 size_t max_size() const { function in class:SurvivorMutableSpacePool
H A DmemoryUsage.hpp64 size_t max_size() const { return _maxSize; } function in class:VALUE_OBJ_CLASS_SPEC
H A DmemoryPool.hpp92 size_t max_size,
102 virtual size_t max_size() const { return _max_size; } function in class:MemoryPool
152 CollectedMemoryPool(const char* name, PoolType type, size_t init_size, size_t max_size, bool support_usage_threshold) : argument
153 MemoryPool(name, type, init_size, max_size, support_usage_threshold, true) {};
162 ContiguousSpacePool(ContiguousSpace* space, const char* name, PoolType type, size_t max_size, bool support_usage_threshold);
177 size_t max_size,
198 size_t max_size,
/openjdk7/hotspot/src/share/vm/memory/
H A DgenerationSpec.cpp107 size_t init_size, size_t max_size,
136 _max_size = max_size;
106 PermanentGenerationSpec(PermGen::Name name, size_t init_size, size_t max_size, size_t read_only_size, size_t read_write_size, size_t misc_data_size, size_t misc_code_size) argument
H A DgenerationSpec.hpp43 GenerationSpec(Generation::Name name, size_t init_size, size_t max_size) { argument
46 _max_size = max_size;
55 size_t max_size() const { return _max_size; } function in class:GenerationSpec
61 set_max_size(align_size_up(max_size(), alignment));
92 size_t max_size, size_t read_only_size,
113 size_t max_size() const { function in class:PermanentGenerationSpec
H A DthreadLocalAllocBuffer.cpp153 new_size = MIN2(MAX2(new_size, min_size()), max_size());
238 min_size(), Thread::current()->tlab().initial_desired_size(), max_size());
246 init_sz = MIN2(TLABSize / HeapWordSize, max_size());
257 init_sz = MIN2(MAX2(init_sz, min_size()), max_size());
262 const size_t ThreadLocalAllocBuffer::max_size() { function in class:ThreadLocalAllocBuffer
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsPermGen.cpp35 size_t initial_size, size_t min_size, size_t max_size,
37 PSOldGen(rs, alignment, initial_size, min_size, max_size, gen_name, level),
34 PSPermGen(ReservedSpace rs, size_t alignment, size_t initial_size, size_t min_size, size_t max_size, const char* gen_name, int level) argument
H A DpsYoungGen.hpp149 size_t max_size() const { return _reserved.byte_size(); } function in class:PSYoungGen
H A DpsYoungGen.cpp38 size_t max_size) :
41 _max_gen_size(max_size)
293 assert(min_gen_size() <= orig_size && orig_size <= max_size(), "just checking");
298 size_t desired_size = MAX2(MIN2(eden_plus_survivors, max_size()),
300 assert(desired_size <= max_size(), "just checking");
355 virtual_space()->committed_size() == max_size(), "Sanity");
36 PSYoungGen(size_t initial_size, size_t min_size, size_t max_size) argument
H A DpsOldGen.cpp41 size_t initial_size, size_t min_size, size_t max_size,
44 _max_gen_size(max_size)
50 size_t min_size, size_t max_size,
53 _max_gen_size(max_size)
40 PSOldGen(ReservedSpace rs, size_t alignment, size_t initial_size, size_t min_size, size_t max_size, const char* perf_data_name, int level) argument
49 PSOldGen(size_t initial_size, size_t min_size, size_t max_size, const char* perf_data_name, int level) argument
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapTable.hpp143 int32_t size, int32_t max_size, TRAPS) {
144 if (size < 0 || size > max_size) {
142 check_verification_type_array_size( int32_t size, int32_t max_size, TRAPS) argument
H A DstackMapTableFormat.hpp84 static size_t max_size() { return sizeof(u1) + sizeof(u2); } function in class:verification_type_info
347 static size_t max_size() { function in class:same_locals_1_stack_item_frame
348 return sizeof(u1) + verification_type_info::max_size();
567 static size_t max_size() { function in class:append_frame
568 return sizeof(u1) + sizeof(u2) + 3 * verification_type_info::max_size();
690 static size_t max_size(int locals, int stack) { function in class:full_frame
692 (locals + stack) * verification_type_info::max_size();
/openjdk7/hotspot/src/share/vm/runtime/
H A DjavaCalls.hpp131 JavaCallArguments(int max_size) { argument
132 if (max_size > _default_size) {
133 _value = NEW_RESOURCE_ARRAY(intptr_t, max_size + 1);
134 _is_oop = NEW_RESOURCE_ARRAY(bool, max_size + 1);
139 _max_size = max_size;
H A DcompilationPolicy.cpp603 int max_size = MaxInlineSize; local
617 max_size = FreqInlineSize;
619 if (cost > max_size) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Dstack.hpp63 size_t max_size() const { return _max_size; } // Max elements allowed. function in class:StackBase
73 // max_size: maximum number of items allowed, rounded to a multiple of
75 inline StackBase(size_t segment_size, size_t max_cache_size, size_t max_size);
77 // Round max_size to a multiple of the segment size. Treat 0 as unlimited.
78 static inline size_t adjust_max_size(size_t max_size, size_t seg_size);
101 // max_size: maximum number of items allowed, rounded to a multiple of
104 size_t max_cache_size = 4, size_t max_size = 0);
108 inline bool is_full() const { return this->_full_seg_size >= this->max_size(); }
111 // is_full() instead of size() == max_size(). Using a conditional here allows
H A Dstack.inline.hpp31 size_t max_size):
34 _max_size(adjust_max_size(max_size, segment_size))
39 template <MEMFLAGS F> size_t StackBase<F>::adjust_max_size(size_t max_size, size_t seg_size) argument
42 assert(max_size >= seg_size || max_size == 0, "max_size too small");
44 if (max_size == 0 || max_size > limit) {
45 max_size = limit;
47 return (max_size
30 StackBase(size_t segment_size, size_t max_cache_size, size_t max_size) argument
51 Stack(size_t segment_size, size_t max_cache_size, size_t max_size) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp113 void clone( OopFlow *flow, int max_size);
116 static OopFlow *make( Arena *A, int max_size, Compile* C );
201 void OopFlow::clone( OopFlow *flow, int max_size ) {
203 memcpy( _callees, flow->_callees, sizeof(short)*max_size);
204 memcpy( _defs , flow->_defs , sizeof(Node*)*max_size);
208 OopFlow *OopFlow::make( Arena *A, int max_size, Compile* C ) { argument
209 short *callees = NEW_ARENA_ARRAY(A,short,max_size+1);
210 Node **defs = NEW_ARENA_ARRAY(A,Node*,max_size+1);
211 debug_only( memset(defs,0,(max_size+1)*sizeof(Node*)) );

Completed in 129 milliseconds

12