/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | ptrQueue.cpp | 67 static int byte_index_to_index(int ind) { argument 68 assert((ind % oopSize) == 0, "Invariant."); 69 return ind / oopSize;
|
H A D | dirtyCardQueue.cpp | 66 int ind = byte_index_to_index((int)i); local 67 jbyte* card_ptr = (jbyte*)buf[ind]; 71 if (consume) buf[ind] = NULL;
|
H A D | sparsePRT.cpp | 201 int ind = (int) (region_ind & capacity_mask()); local 202 int cur_ind = _buckets[ind]; 218 int ind = (int) (region_ind & capacity_mask()); local 219 int cur_ind = _buckets[ind]; 234 int ind = (int) (region_ind & capacity_mask()); local 235 int* prev_loc = &_buckets[ind]; 256 int ind = (int) (region_ind & capacity_mask()); local 257 int cur_ind = _buckets[ind]; 281 int ind = (int) (region_ind & capacity_mask()); local 282 res->set_next_index(_buckets[ind]); [all...] |
H A D | ptrQueue.hpp | 124 static int byte_index_to_index(int ind) { argument 125 assert((ind % oopSize) == 0, "Invariant."); 126 return ind / oopSize;
|
H A D | heapRegionRemSet.cpp | 438 size_t ind = from_hrs_ind & _mod_max_fine_entries_mask; local 439 PerRegionTable* prt = find_region_table(ind, from_hr); 443 prt = find_region_table(ind, from_hr); 487 PerRegionTable* first_prt = _fine_grain_regions[ind]; 489 _fine_grain_regions[ind] = prt; 530 OtherRegionsTable::find_region_table(size_t ind, HeapRegion* hr) const { argument 531 assert(0 <= ind && ind < _max_fine_entries, "Preconditions."); 532 PerRegionTable* prt = _fine_grain_regions[ind]; 759 size_t ind local 780 del_single_region_table(size_t ind, HeapRegion* hr) argument [all...] |
H A D | concurrentMark.cpp | 223 int ind = index + i; local 224 assert(ind < _capacity, "By overflow test above."); 225 _base[ind] = ptr_arr[i]; 246 int ind = start + i; local 247 assert(ind < _capacity, "By overflow test above."); 248 _base[ind] = ptr_arr[i];
|
H A D | g1CollectedHeap.cpp | 138 int ind = (int)(*ujb); local 139 _histo[ind]++;
|
/openjdk7/jdk/make/tools/src/build/tools/hasher/ |
H A D | Hasher.java | 231 String ind = ""; // Indent prefix field in class:Hasher 243 pw.print(ind + " "); 259 ind = " "; 268 pw.println(ind + "private static final class " + cln); 273 pw.println(ind + " extends sun.util.PreHashedMap<" + vtype +">"); 274 pw.println(ind + "{"); 277 pw.println(ind + " private static final int ROWS = " 279 pw.println(ind + " private static final int SIZE = " 281 pw.println(ind + " private static final int SHIFT = " 283 pw.println(ind [all...] |
/openjdk7/jdk/src/share/classes/java/net/ |
H A D | NetworkInterface.java | 482 private native static boolean isUp0(String name, int ind) throws SocketException; argument 483 private native static boolean isLoopback0(String name, int ind) throws SocketException; argument 484 private native static boolean supportsMulticast0(String name, int ind) throws SocketException; argument 485 private native static boolean isP2P0(String name, int ind) throws SocketException; argument 486 private native static byte[] getMacAddr0(byte[] inAddr, String name, int ind) throws SocketException; argument 487 private native static int getMTU0(String name, int ind) throws SocketException; argument
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/ |
H A D | parCardTableModRefBS.cpp | 78 intptr_t ind = ch - lowest_non_clean_base_chunk_index; local 79 assert(0 <= ind && ind < (intptr_t)lowest_non_clean_chunk_size, 81 lowest_non_clean[ind] = NULL;
|
/openjdk7/hotspot/src/share/vm/memory/ |
H A D | cardTableModRefBS.cpp | 188 HeapWord* CardTableModRefBS::largest_prev_committed_end(int ind) const { 190 for (int j = 0; j < ind; j++) { 217 int const ind = find_covering_region_by_base(new_region.start()); local 218 MemRegion const old_region = _covered[ind]; 222 MemRegion cur_committed = _committed[ind]; 226 HeapWord* const max_prev_end = largest_prev_committed_end(ind); 236 // Check the other regions (excludes "ind") to ensure that 241 if (ri != ind) { 247 // should start at or beyond the region found (ind) 250 assert(_committed[ri].start() >= _committed[ind] [all...] |
/openjdk7/jdk/src/share/demo/applets/SpreadSheet/ |
H A D | SpreadSheet.java | 794 public void indent(int ind) { argument 795 for (int i = 0; i < ind; i++) {
|
/openjdk7/hotspot/src/share/vm/utilities/ |
H A D | taskqueue.hpp | 186 static uint increment_index(uint ind) { argument 187 return (ind + 1) & MOD_N_MASK; 189 static uint decrement_index(uint ind) { argument 190 return (ind - 1) & MOD_N_MASK;
|
/openjdk7/jdk/src/solaris/native/sun/awt/ |
H A D | awt_GraphicsEnv.c | 337 int ind; local 463 ind = nConfig++; 465 graphicsConfigs [ind] = ZALLOC (_AwtGraphicsConfigData); 466 graphicsConfigs [ind]->awt_depth = pVITrue [i].depth; 467 memcpy (&graphicsConfigs [ind]->awt_visInfo, &pVITrue [i], 476 graphicsConfigs [ind]->isTranslucencySupported = 1; 477 memcpy(&graphicsConfigs [ind]->renderPictFormat, format, 493 ind = nConfig++; 495 graphicsConfigs [ind] = ZALLOC (_AwtGraphicsConfigData); 496 graphicsConfigs [ind] [all...] |
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | macro.cpp | 277 int ind = 1; local 278 if (!this_region->in(ind)->is_IfFalse()) { 279 ind = 2; 281 if (this_region->in(ind)->is_IfFalse()) { 282 Node* bol = this_region->in(ind)->in(0)->in(1);
|