/openjdk7/jdk/src/share/native/sun/management/ |
H A D | HotspotThread.c | 41 (JNIEnv *env, jobject dummy, jobjectArray names, jobjectArray times) 43 return jmm_interface->GetInternalThreadTimes(env, names, times); 40 Java_sun_management_HotspotThread_getInternalThreadTimes0(JNIEnv *env, jobject dummy, jobjectArray names, jobjectArray times) argument
|
/openjdk7/langtools/test/tools/javadoc/enum/docComments/pkg1/ |
H A D | Operation.java | 42 times { enum constant in enum:Operation
|
/openjdk7/jdk/src/share/classes/sun/management/ |
H A D | HotspotThread.java | 59 long[] times = new long[count]; 60 int numThreads = getInternalThreadTimes0(names, times); 63 result.put(names[i], new Long(times[i])); 67 public native int getInternalThreadTimes0(String[] names, long[] times); argument
|
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/ |
H A D | ThreadCpuTime.java | 41 private static long[] times = new long[NUM_THREADS]; field in class:ThreadCpuTime 109 times[i] = mbean.getThreadCpuTime(threads[i].getId()); 116 if (times[i] > newTime) { 119 " previous CPU time = " + times[i] + 122 if ((times[i] + DELTA) < newTime) { 126 " previous CPU time " + times[i] + 131 " Previous Cpu Time = " + times[i] +
|
H A D | ThreadUserTime.java | 41 private static long[] times = new long[NUM_THREADS]; field in class:ThreadUserTime 109 times[i] = mbean.getThreadUserTime(threads[i].getId()); 116 if (times[i] > newTime) { 119 " previous user user time = " + times[i] + 122 if ((times[i] + DELTA) < newTime) { 126 " previous user time " + times[i] + 131 " Previous User Time = " + times[i] +
|
/openjdk7/jdk/test/javax/swing/JTable/6263446/ |
H A D | bug6263446.java | 219 private static void click(int times) { argument 221 for (int i = 0; i < times; i++) {
|
/openjdk7/jdk/test/javax/swing/JTree/6263446/ |
H A D | bug6263446.java | 119 private static void click(int times) { argument 121 for (int i = 0; i < times; i++) {
|
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | PerformanceLogger.java | 40 * mechanism of setting aribtrary times in an array. 41 * All unreserved times in the array can be used by callers 43 * for setting and getting all times and for doing whatever 60 * By default, times are measured using System.currentTimeMillis(). To use 81 private static Vector<TimeData> times; field in class:PerformanceLogger 128 times = new Vector<TimeData>(10); 131 times.add(new TimeData("Time " + i + " not set", 0)); 210 times.set(START_INDEX, new TimeData(message, time)); 221 return times.get(START_INDEX).getTime(); 250 // times i [all...] |
/openjdk7/jdk/src/share/sample/forkjoin/mergesort/ |
H A D | MergeDemo.java | 189 // which should produce somewhat more fair times 192 long[][] times = config.createTimesArray(); 195 runForSize(parallelism, sizes.get(size), times, size); 198 printResults(sizes, parallelism, times); 205 * @param times the median times for the different sizes / parallelism 207 private void printResults(Range sizes, Range parallelism, long[][] times) { argument 209 long[] sums = new long[times[0].length]; 211 for (int i = 0; i < times[0].length; i++) { 217 for (int i = 0; i < times[siz 230 runForSize(Range parallelism, int elements, long[][] times, int size) argument 265 medianValue(long[] times) argument [all...] |
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/constExpr/ |
H A D | DefaultExprFactory.java | 182 public Times times (Expression left, Expression right) method in class:DefaultExprFactory 185 } // times
|
H A D | ExprFactory.java | 73 Times times (Expression left, Expression right); method in interface:ExprFactory
|
/openjdk7/jdk/src/share/classes/javax/management/ |
H A D | Query.java | 103 * A code representing the {@link Query#times} expression. This 518 public static ValueExp times(ValueExp value1,ValueExp value2) { method in class:Query
|
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/ |
H A D | Result.java | 245 Vector times; field in class:Result 253 times = new Vector(); 273 times.addElement(new Long(time)); 305 return times.size(); 309 return ((Long) times.elementAt(index)).longValue(); 330 for (int i = 0; i < times.size(); i++) {
|
/openjdk7/jdk/src/share/classes/java/util/ |
H A D | SimpleTimeZone.java | 1371 * end rule is an exclusive limit point. That is, the range of times that 1526 * Adjust the start and end times to wall time. This works perfectly 1604 * Pack the start and end times into an array of bytes. This is required 1608 int[] times = new int[2]; 1609 times[0] = startTime; 1610 times[1] = endTime; 1611 return times; 1615 * Unpack the start and end times from an array of bytes. This is required 1618 private void unpackTimes(int[] times) { argument 1619 startTime = times[ [all...] |
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/ |
H A D | Plotter.java | 106 private TimeStamps times = new TimeStamps(); field in class:Plotter 200 times.add(time); 307 double excelTime = toExcelTime(times.time(i)); 386 if (times.size > 1) { 387 tMin = Math.min(tMin, times.time(0)); 388 tMax = Math.max(tMax, times.time(times.size-1)); 402 if (seq.size == 1 || times.time(i) >= tMax - viewRangeMS) { 573 if (times.time(p) >= tMax - viewRangeMS) { 604 int x2 = (int)(w * (times [all...] |
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/report/ |
H A D | J2DAnalyzer.java | 82 "use average of all times within a resultset"); 84 "like -Average but ignore best and worst times"); 616 private Vector times = new Vector(); field in class:J2DAnalyzer.ResultHolder 706 times.add(new Long(ms)); 769 for (int i = 0; i < times.size(); i++) { 770 long time = ((Long) times.get(i)).longValue();
|
/openjdk7/hotspot/src/share/vm/ci/ |
H A D | ciMethod.cpp | 1074 bool ciMethod::was_executed_more_than(int times) { argument 1076 return get_methodOop()->was_executed_more_than(times);
|
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/ |
H A D | PNGMetadata.java | 901 private String repeat(String s, int times) { argument 902 if (times == 1) { 905 StringBuffer sb = new StringBuffer((s.length() + 1)*times - 1); 907 for (int i = 1; i < times; i++) {
|
/openjdk7/jdk/src/solaris/native/sun/nio/fs/ |
H A D | UnixNativeDispatcher.c | 537 struct timeval times[2]; local 540 times[0].tv_sec = accessTime / 1000000; 541 times[0].tv_usec = accessTime % 1000000; 543 times[1].tv_sec = modificationTime / 1000000; 544 times[1].tv_usec = modificationTime % 1000000; 546 RESTARTABLE(utimes(path, ×[0]), err); 556 struct timeval times[2]; local 559 times[0].tv_sec = accessTime / 1000000; 560 times[0].tv_usec = accessTime % 1000000; 562 times[ [all...] |
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | assembler_x86.hpp | 163 static ScaleFactor times(int size) { function in class:VALUE_OBJ_CLASS_SPEC
|
/openjdk7/hotspot/src/share/vm/services/ |
H A D | management.cpp | 1566 // Gets an array containing the CPU times consumed by a set of threads 1821 ThreadTimesClosure(objArrayHandle names, typeArrayOop times); 1829 typeArrayOop times) { 1831 assert(times != NULL, "times was NULL"); 1835 _times = times; 1836 _times_len = times->length(); 1883 // Fills names with VM internal thread names and times with the corresponding 1884 // CPU times. If names or times i 1828 ThreadTimesClosure(objArrayHandle names, typeArrayOop times) argument [all...] |
/openjdk7/jdk/src/share/native/sun/awt/libpng/ |
H A D | png.c | 1560 png_muldiv(png_fixed_point_p res, png_fixed_point a, png_int_32 times, argument 1563 /* Return a * times / divisor, rounded. */ 1566 if (a == 0 || times == 0) 1575 r *= times; 1595 if (times < 0) 1596 negative = !negative, T = -times; 1598 T = times; 1610 /* Can't overflow because the a*times bit is only 30 1679 png_muldiv_warn(png_structp png_ptr, png_fixed_point a, png_int_32 times, argument 1684 if (png_muldiv(&result, a, times, diviso [all...] |