Searched refs:MIN2 (Results 76 - 100 of 112) sorted by relevance

12345

/openjdk7/hotspot/src/share/vm/oops/
H A Dklass.cpp241 juint my_depth = MIN2(sup_depth + 1, (int)primary_super_limit());
H A DobjArrayKlass.cpp499 int print_len = MIN2((intx) oa->length(), MaxElementPrintSize);
/openjdk7/hotspot/src/share/vm/opto/
H A DbytecodeInfo.cpp294 } else if (!callee_method->was_executed_more_than(MIN2(MinInliningThreshold,
H A Dsuperword.hpp269 return MIN2(ABS(iv_stride()), Matcher::max_vector_size(bt));
H A Dloopnode.hpp233 int unrolled_count() { return 1 << MIN2(_unrolled_count_log2, BitsPerInt-3); }
H A DcallGenerator.cpp1056 int max_size = MIN2(500, (int)WarmCallMaxSize);
H A Difnode.cpp893 off_lo = MIN2(off_lo,offset2);
/openjdk7/hotspot/src/share/vm/runtime/
H A DcompilationPolicy.cpp640 if (!m->was_executed_more_than(MIN2(MinInliningThreshold, CompileThreshold >> 1))) return (_msg = "executed < MinInliningThreshold times");
H A DsharedRuntime.cpp1955 arity = MIN2(arity, MAX_ARITY-1);
1956 argsize = MIN2(argsize, MAX_ARITY-1);
1965 const int N = MIN2(5, n);
H A Dframe.cpp1486 intptr_t* min = MIN2(v0, v1);
H A Dos.cpp631 memcpy(ptr, memblock, MIN2(size, get_size(memblock)));
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp1114 #define MIN2(x, y) (((x) < (y))? (x) : (y)) macro
1117 jlong bytesToRead = MIN2(numBytes, usedSize - diff);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp222 julong result = MIN2(size, (julong)3800*M);
226 result = MIN2(size, reasonable_size);
373 _physical_memory = MIN2(_physical_memory, (julong)limits.rlim_cur);
3083 MIN2((cpu_num + BitsPerCLong - 1) / BitsPerCLong, cpu_map_size);
6074 n = MIN2(n, (int)bufferSize);
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp686 return MIN2(size, (julong)1400*M);
1277 for (int i = 0; i < MIN2(num_modules, MAX_NUM_MODULES); i++) {
2838 size_t bytes_to_rq = MIN2(bytes_remaining, chunk_size - ((size_t)next_alloc_addr % chunk_size));
3158 size_t bytes_to_rq = MIN2(bytes_remaining, (size_t)alloc_info.RegionSize);
3280 size = MIN2(size, numa_get_groups_num());
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp1601 minimum_desired_capacity_d = MIN2(minimum_desired_capacity_d,
1603 maximum_desired_capacity_d = MIN2(maximum_desired_capacity_d,
1620 minimum_desired_capacity = MIN2(minimum_desired_capacity, max_heap_size);
3099 return MIN2(MAX2(hr->free(), (size_t) MinTLABSize), max_tlab_size);
4243 return MIN2(_humongous_object_threshold_in_words, gclab_word_size);
5486 uint stride = MIN2(MAX2(_n_workers, 1U), limit);
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp822 int end_idx = MIN2(limit, start_idx + ClaimChunkSize);
H A DclassLoader.cpp176 size_t min_len = MIN2(class_name_len, pkg_len);
/openjdk7/hotspot/src/share/vm/compiler/
H A DmethodLiveness.cpp395 int intersect_limit = MIN2(block_limit, limit);
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp409 res = MAX2(res, MIN2(_smallLinearAllocBlock._word_size,
2681 n_blks = MIN2(n_blks, CMSOldPLABMax);
2700 MIN2((size_t)CMSOldPLABMax,
2870 n = MIN2(nn, n);
H A DconcurrentMarkSweepGeneration.hpp245 least = MIN2(least, _base[i]);
/openjdk7/hotspot/src/share/vm/memory/
H A DdefNewGeneration.cpp379 desired_new_size = MAX2(MIN2(desired_new_size, max_new_size), min_new_size);
H A Dspace.cpp158 bottom = MIN2(bottom, top);
H A DgenCollectedHeap.cpp1430 _time = MIN2(_time, gen->time_of_last_gc(_now));
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/
H A DparNewGeneration.cpp1496 size_t objsFromOverflow = MIN2((size_t)(work_q->max_elems() - work_q->size())/4,
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_IR.cpp1211 int length = MIN2(preds->length(), block->number_of_preds());

Completed in 225 milliseconds

12345