Searched defs:counts (Results 1 - 8 of 8) sorted by relevance
/openjdk7/hotspot/test/gc/7072527/ |
H A D | TestFullGCCount.java | 45 HashMap<String, List> counts = new HashMap<String, List>(); 50 counts.put(collector.getName(), new ArrayList<Long>(iterations)); 53 // Perform some gc, record collector counts. 56 addCollectionCount(counts, i); 63 for (String collector : counts.keySet()) { 67 List<Long> theseCounts = counts.get(collector); 84 private static void addCollectionCount(HashMap<String, List> counts, int iteration) { argument 87 List thisList = counts.get(collector.getName());
|
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/ |
H A D | Histogram.java | 41 protected final int totalWeight; // sum of all counts 46 protected final int[] counts; // counts, same order as values field in class:Histogram 58 counts = table[1]; 68 /** Build a histogram given a compact matrix of counts and values. */ 95 counts = table[0]; //backwards 160 return counts; 170 return counts[pos]; 392 int[] counts = new int[hist2col.length]; 393 for (int i = 0; i < counts [all...] |
/openjdk7/langtools/test/tools/javac/processing/errors/ |
H A D | TestSuppression.java | 123 System.err.println("ok:" + ok + " diags:" + dl.counts); 129 Integer v = dl.counts.get(dk); 171 Map<Diagnostic.Kind,Integer> counts = new TreeMap<Diagnostic.Kind,Integer>(); field in class:TestSuppression.DiagListener 178 Integer c = counts.get(dk); 179 counts.put(dk, (c == null ? 1 : c + 1));
|
/openjdk7/jdk/src/share/back/ |
H A D | VirtualMachineImpl.c | 346 jlong *counts; local 349 counts = jvmtiAllocate(classCount * (int)sizeof(jlong)); 351 error = classInstanceCounts(classCount, classes, counts); 357 (void)outStream_writeLong(out, counts[ii]); 360 jvmtiDeallocate(counts);
|
H A D | util.c | 2509 /* Instance counts. */ 2519 jlong *counts; member in struct:ClassCountData 2577 /* Absolute value of class tag is an index into the counts[] array */ 2586 data->counts[index]++; 2619 data->counts[index]++; 2623 /* Get instance counts for a set of classes */ 2625 classInstanceCounts(jint classCount, jclass *classes, jlong *counts) argument 2634 if ( classes == NULL || classCount <= 0 || counts == NULL ) { 2640 counts[i] = (jlong)0; 2652 data.counts [all...] |
/openjdk7/hotspot/src/os/windows/launcher/ |
H A D | java_md.c | 678 jlong Counter2Micros(jlong counts) argument 683 return (counts * 1000 * 1000)/counterFrequency.QuadPart;
|
/openjdk7/jdk/src/windows/bin/ |
H A D | java_md.c | 522 jlong Counter2Micros(jlong counts) argument 527 return (counts * 1000 * 1000)/counterFrequency.QuadPart;
|
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/ |
H A D | unpack.cpp | 881 void cpool::init(unpacker* u_, int counts[NUM_COUNTS]) { argument 890 int len = counts[k]; 895 // (Pack200 forbids the sum of CP counts to exceed 2^29-1.) 2484 // Now consult whichever callables have non-zero entry counts. 2674 allFiles -= 1; // this one counts as both class and file
|
Completed in 91 milliseconds