| /forgerock/opendj2/ext/ant/lib/ |
| H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
| /forgerock/opendj-b2.6/ext/ant/lib/ |
| H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
| /forgerock/opendj2.6.2/ext/ant/lib/ |
| H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
| /forgerock/opendj2-hg/ext/ant/lib/ |
| H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
| /forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/ |
| H A D | ant-contrib-1.0b3.jar | META-INF/ META-INF/MANIFEST.MF net/ net/sf/ net/sf/antcontrib/ net/sf/antcontrib/antclipse/ ... |
| /openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/ |
| H A D | Mark.java | 256 // // age operations 259 public int age() { return (int) Bits.maskBitsLong(value() >> ageShift, ageMask); } method in class:Mark 261 // assert((v & ~age_mask) == 0, "shouldn't overflow age field"); 264 // markOop incr_age() const { return age() == max_age ? markOop(this) : set_age(age() + 1); } 293 tty.print("age " + age() + ")");
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
| H A D | g1CollectedHeap.cpp | 377 gclog_or_tty->print_cr(" "HR_FORMAT", P: "PTR_FORMAT "N: "PTR_FORMAT", age: %4d", 4496 // non-young regions (where the age is -1) 4653 int age = m->has_displaced_mark_helper() ? m->displaced_mark_helper()->age() local 4654 : m->age(); 4655 GCAllocPurpose alloc_purpose = g1p->evacuation_destination(from_region, age, 4689 // age on the mark word, when the object does not have a
|
| H A D | g1CollectorPolicy.cpp | 727 int age = curr->age_in_surv_rate_group(); local 729 if (age < 0) { 730 gclog_or_tty->print_cr("## %s: encountered negative age", name); 734 if (age <= prev_age) { 736 "(%d, %d)", name, age, prev_age); 739 prev_age = age; 820 assert( verify_young_ages(), "region age verification" ); 1269 int age = hr->age_in_surv_rate_group(); local 1270 double yg_surv_rate = predict_yg_surv_rate(age, hr->surv_rate_group()); 1811 st->print_cr(" "HR_FORMAT", P: "PTR_FORMAT "N: "PTR_FORMAT", age [all...] |
| H A D | g1CollectorPolicy.hpp | 452 // Returns an estimate of the survival rate of the region at yg-age 454 double predict_yg_surv_rate(int age, SurvRateGroup* surv_rate_group) { argument 455 TruncatedSeq* seq = surv_rate_group->get_seq(age); 457 gclog_or_tty->print("BARF! age is %d", age); 465 double predict_yg_surv_rate(int age) { argument 466 return predict_yg_surv_rate(age, _short_lived_surv_rate_group); 469 double accum_yg_surv_rate_pred(int age) { argument 470 return _short_lived_surv_rate_group->accum_surv_rate_pred(age); 881 evacuation_destination(HeapRegion* src_region, int age, size_ argument [all...] |
| H A D | survRateGroup.hpp | 63 double accum_surv_rate_pred(int age) { argument 64 assert(age >= 0, "must be"); 65 if ((size_t)age < _stats_arrays_length) 66 return _accum_surv_rate_pred[age]; 68 double diff = (double) (age - _stats_arrays_length + 1); 75 TruncatedSeq* get_seq(size_t age) { argument 76 if (age >= _setup_seq_num) { 78 age = _setup_seq_num-1; 80 TruncatedSeq* seq = _surv_rate_pred[age];
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/ |
| H A D | psPromotionManager.inline.hpp | 87 // Find the objects age, MT safe. 88 int age = (test_mark->has_displaced_mark_helper() /* o->has_displaced_mark() */) ? local 89 test_mark->displaced_mark_helper()->age() : test_mark->age(); 92 if (age < PSScavenge::tenuring_threshold()) { 169 // Increment age if obj still in new generation. Now that
|
| /openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
| H A D | ageTable.cpp | 48 for(int age = 0; age < table_size; age ++) { 50 jio_snprintf(age_name, sizeof(age_name), "%2.2d", age); 52 _perf_sizes[age] = PerfDataManager::create_variable(SUN_GC, cname, 84 int age = 1; local 85 assert(sizes[0] == 0, "no objects with age zero should be recorded"); 86 while (age < table_size) { 87 total += sizes[age]; 88 // check if including objects of age 'ag [all...] |
| H A D | ageTable.hpp | 49 // constructor. "global" indicates that this is the global age table 58 int age = p->age(); local 59 assert(age > 0 && age < table_size, "invalid age of object"); 60 sizes[age] += oop_size; 63 // Merge another age table with the current one. Used 68 // calculate new tenuring threshold based on age information
|
| /openjdk7/hotspot/src/share/vm/oops/ |
| H A D | markOop.hpp | 39 // hash:25 ------------>| age:4 biased_lock:1 lock:2 (normal object) 40 // JavaThread*:23 epoch:2 age:4 biased_lock:1 lock:2 (biased object) 46 // unused:25 hash:31 -->| unused:1 age:4 biased_lock:1 lock:2 (normal object) 47 // JavaThread*:54 epoch:2 unused:1 age:4 biased_lock:1 lock:2 (biased object) 51 // unused:25 hash:31 -->| cms_free:1 age:4 biased_lock:1 lock:2 (COOPs && normal object) 52 // JavaThread*:54 epoch:2 cms_free:1 age:4 biased_lock:1 lock:2 (COOPs && biased object) 72 // of the header. Because we steal a bit from the age we can 76 // Note also that the biased state contains the age bits normally 78 // times were seen when these bits were absent and an arbitrary age 84 // to make room for the age bit 321 encode(JavaThread* thread, int age, int bias_epoch) argument 335 int age() const { return mask_bits(value() >> age_shift, age_mask); } function in class:markOopDesc [all...] |
| H A D | oop.inline.hpp | 719 inline int oopDesc::age() const { function in class:oopDesc 720 assert(!is_forwarded(), "Attempt to read age from forwarded mark"); 722 return displaced_mark()->age(); 724 return mark()->age(); 729 assert(!is_forwarded(), "Attempt to increment age of forwarded mark");
|
| /openjdk7/hotspot/src/share/vm/runtime/ |
| H A D | biasedLocking.cpp | 157 int age = mark->age(); local 158 markOop biased_prototype = markOopDesc::biased_locking_prototype()->set_age(age); 159 markOop unbiased_prototype = markOopDesc::prototype()->set_age(age); 415 markOop new_mark = markOopDesc::encode(requesting_thread, o->mark()->age(), 543 markOop unbiased_prototype = markOopDesc::prototype()->set_age(mark->age()); 573 markOop rebiased_prototype = markOopDesc::encode((JavaThread*) THREAD, mark->age(), prototype_header->bias_epoch()); 580 markOop unbiased_prototype = markOopDesc::prototype()->set_age(mark->age());
|
| /openjdk7/hotspot/src/share/vm/utilities/ |
| H A D | taskqueue.hpp | 149 Age(const Age& age) { _data = age._data; } argument 153 void set(Age age) volatile { _data = age._data; } 354 // that will be used by other threads. The tag age is incremented 711 // This is a second read of "age"; the "size()" above is the first. 713 // "_bottom" and "age" we've read, then there can be no interference with
|
| /openjdk7/jdk/test/demo/jvmti/ |
| H A D | HeapUser.java | 33 int age; field in class:Animal
|